Skip to content

Commit

Permalink
updated translations
Browse files Browse the repository at this point in the history
  • Loading branch information
pvictor committed May 25, 2024
1 parent 5781952 commit 2f080d4
Show file tree
Hide file tree
Showing 17 changed files with 1,319 additions and 970 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: esquisse
Type: Package
Title: Explore and Visualize Your Data Interactively
Version: 2.0.0
Version: 2.0.0.9000
Authors@R: c(person("Fanny", "Meyer", role = c("aut")),
person("Victor", "Perrier", email = "victor.perrier@dreamrs.fr", role = c("aut", "cre")),
person("Ian", "Carroll", comment = "Faceting support", role = "ctb"),
Expand Down
13 changes: 6 additions & 7 deletions R/module-controls-axes.R
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ controls_axes_ui <- function(id) {
tags$div(
id = ns("controls-scale-trans-x"),
style = "display: none;",
tags$b("X", "axis options:"),
numericRangeInput(
inputId = ns("xlim"),
label = i18n("X-Axis limits (empty for none):"),
Expand Down Expand Up @@ -206,7 +205,7 @@ get_axis_text <- function(face, size, angle, hjust = 0, vjust = 0, lineheight =
input_axis_text <- function(axis = c("x", "y"), ns = identity) {
axis <- match.arg(axis)
tagList(
tags$b(toupper(axis), "axis text options:"),
tags$b(toupper(axis), i18n("axis text options:")),
tags$div(
style = css(
display = "grid",
Expand All @@ -215,7 +214,7 @@ input_axis_text <- function(axis = c("x", "y"), ns = identity) {
),
shinyWidgets::virtualSelectInput(
inputId = ns(paste0(axis, "_axis_text_face")),
label = "Font face:",
label = i18n("Font face:"),
choices = setNames(
c("plain", "italic", "bold", "bold.italic"),
c("Plain", "Italic", "Bold", "Bold/Italic")
Expand All @@ -224,14 +223,14 @@ input_axis_text <- function(axis = c("x", "y"), ns = identity) {
),
numericInput(
inputId = ns(paste0(axis, "_axis_text_size")),
label = "Size:",
label = i18n("Size:"),
value = 10,
min = 0,
width = "100%"
),
numericInput(
inputId = ns(paste0(axis, "_axis_text_angle")),
label = "Angle:",
label = i18n("Angle:"),
value = 0,
min = 0,
max = 360,
Expand All @@ -246,7 +245,7 @@ input_axis_text <- function(axis = c("x", "y"), ns = identity) {
),
numericInput(
inputId = ns(paste0(axis, "_axis_text_hjust")),
label = "Horizontal justification:",
label = i18n("Horizontal justification:"),
value = 0,
min = 0,
step = 0.1,
Expand All @@ -255,7 +254,7 @@ input_axis_text <- function(axis = c("x", "y"), ns = identity) {
),
numericInput(
inputId = ns(paste0(axis, "_axis_text_vjust")),
label = "Vertical justification:",
label = i18n("Vertical justification:"),
value = 0,
min = 0,
step = 0.1,
Expand Down
2 changes: 1 addition & 1 deletion R/module-controls-options.R
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ controls_options_ui <- function(id) {
),
prettySwitch(
inputId = ns("plotly"),
label = "Use {plotly} to render plot",
label = i18n("Use {plotly} to render plot"),
fill = TRUE,
status = "primary"
),
Expand Down
26 changes: 13 additions & 13 deletions R/module-controls-theme.R
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ input_legend_text <- function(type = c("text", "title"), ns = identity) {
),
shinyWidgets::virtualSelectInput(
inputId = ns(paste0("legend_", type, "_face")),
label = "Font face:",
label = i18n("Font face:"),
choices = setNames(
c("plain", "italic", "bold", "bold.italic"),
c("Plain", "Italic", "Bold", "Bold/Italic")
Expand All @@ -97,14 +97,14 @@ input_legend_text <- function(type = c("text", "title"), ns = identity) {
),
numericInput(
inputId = ns(paste0("legend_", type, "_size")),
label = "Size:",
label = i18n("Size:"),
value = 10,
min = 0,
width = "100%"
),
numericInput(
inputId = ns(paste0("legend_", type, "_angle")),
label = "Angle:",
label = i18n("Angle:"),
value = 0,
min = 0,
max = 360,
Expand All @@ -122,11 +122,11 @@ input_legend_options <- function(ns) {
inputId = ns("legend_position"),
label = i18n("Position:"),
choiceNames = list(
ph("arrow-left", title = "left"),
ph("arrow-up", title = "top"),
ph("arrow-down", title = "bottom"),
ph("arrow-right", title = "right"),
ph("x", title = "none")
ph("arrow-left", title = i18n("left")),
ph("arrow-up", title = i18n("top")),
ph("arrow-down", title = i18n("bottom")),
ph("arrow-right", title = i18n("right")),
ph("x", title = i18n("none"))
),
choiceValues = c("left", "top", "bottom", "right", "none"),
selected = "right",
Expand All @@ -137,11 +137,11 @@ input_legend_options <- function(ns) {
inputId = ns("legend_justification"),
label = i18n("Justification:"),
choiceNames = list(
ph("arrow-left", title = "left"),
ph("arrow-up", title = "top"),
ph("arrow-down", title = "bottom"),
ph("arrow-right", title = "right"),
ph("arrows-in-cardinal", title = "center")
ph("arrow-left", title = i18n("left")),
ph("arrow-up", title = i18n("top")),
ph("arrow-down", title = i18n("bottom")),
ph("arrow-right", title = i18n("right")),
ph("arrows-in-cardinal", title = i18n("center"))
),
choiceValues = c("left", "top", "bottom", "right", "center"),
selected = "center",
Expand Down
2 changes: 1 addition & 1 deletion R/module-utils.R
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ show_data_server <- function(id, data_r = reactive(NULL)) {
data <- data_r()
if (!is.data.frame(data)) {
showNotification(
ui = "No data to display",
ui = i18n("No data to display"),
duration = 700,
id = paste("esquisse", sample.int(1e6, 1), sep = "-"),
type = "warning"
Expand Down
204 changes: 115 additions & 89 deletions inst/i18n/al.csv
Original file line number Diff line number Diff line change
@@ -1,89 +1,115 @@
label,translation
Update Preview,Përditëso pamjen
Height:,Lartësia:
Width:,Gjerësia:
Filename:,Emri i skedarit:
Filename,Emri i skedarit
Close,Mbylle
More options,Më shumë opsione
Export chart,Eksporto grafikun
Export to PowerPoint failed...,Eksportimi në PowerPoint dështoi
Export format:,Formati i eksportit:
Import data to create a graph,Importo të dhëna për të krijuar një grafik
Display settings,Cilësitë e paraqitjes
Close Window,Mbylle dritaren
Import data,Importo të dhëna
Show data,Trego të dhënat
Labels & Title,Etiketat dhe titulli
Plot options,Opsionet e grafikut
Appearance,Pamja
Data,Të dhënat
Code,Kodi
Title:,Titulli:
Title,Titulli
Subtitle:,Nëntitulli:
Subtitle,Nëntitulli
Caption:,Legjenda:
Caption,Legjenda
X label:,Emërtimi i boshtit X:
X label,Emërtimi i boshtit X
Y label:,Emërtimi i boshtit Y:
Y label,Emërtimi i boshtit Y
Fill label:,Teksti për variablin mbushje:
Fill label,Teksti për variablin mbushje
Color label:,Teksti për variablin ngjyrë:
Color label,Teksti për variablin ngjyrë:
Size label:,Teksti për variablin madhësi:
Size label,Teksti për variablin madhësi:
Shape label:,Teksti për variablin formë:
Shape label,Teksti për variablin formën:
Font face:,Shkrimi:
Font size:,Madhësia e shkrimit:
Align:,Radhitja:
Left,Majtas:
Center,Në qëndër:
Right,Djathtas
Color:,Ngjyra:
Ribbon color:,Ngjyra e shiritit:
Point symbol:,Simboli i pikës:
Theme:,Modeli i paraqitjes:
Legend position:,Pozicioni i legjendës:
Add a smooth line:,Shtoni një vijë të sheshimit
Yes,Po
No,Jo
Smooth line span:,Spektri i linjës së sheshimit
Size for points/lines:,Madhësia e pikave/vijave:
Facet scales:,Shkalla e kategorive:
Facet ncol:,Numri i shtyllave të kategorive:
Facet nrow:,Numri i rreshtave të kategorive:
Numbers of bins:,Numri i shtyllave:
Scale:,Shkalla:
X-Axis limits (empty for none):,Kufijtë e boshtit X (bosh për asnjë):
X-Axis transform:,Transformimi i boshtit X:
Y-Axis limits (empty for none):,Kufijtë e boshtit Y (bosh për asnjë):
Y-Axis transform:,Transformimi i boshtit Y:
Bandwidth adjustment:,Rregullimi i densitetit:
Position:,Pozicioni:
Flip coordinate:, Shkëmbe koordinatat:
Copy to clipboard,Kopjo në kujtesën e fragmenteve:
Code:,Kodi:
Insert code in script, Përfshi kodin në skript
Esquisse settings,Cilësimet e Esquisse
Select aesthetics to be used to build a graph:,Zgjidh estetikën për të krijuar grafikun
Aesthetic mappings describe how variables in the data are mapped to visual properties (aesthetics) of geoms.,Cilësimet estetike përshkruajnë se si variablat në të dhënat janë hartuar me qëllim vizualizimin e vetive të objekteve gjeometrike
fill color for shapes,ngjyra e mbushjes së formave
color points and lines,ngjyra e pikave dhe vijave
size of the points,madhësia e pikave
shape of the points,forma e pikave
frequency weights,peshat e frekuencave
identifies series of points with a grouping variable,identifikon serinë e pikave me një ndryshore grupimi
used in ribbons charts with ymax to display an interval between two lines,përdoret në grafikët fjongo me ymax për të shfaqur një interval midis dy vijave
used in ribbons charts with ymin to display an interval between two lines,përdoret në grafikët fjongo me ymin për të shfaqur një interval midis dy vijave
create small multiples,Krijoni më shumë grafikë
create small multiples by rows,Krijoni më shumë grafikë sipas rreshtave
create small multiples by columns,"Krijoni më shumë grafikë sipas shtyllave"
Dataset,Të dhënat
"Jittered points:","Jittered points:"
"Use a color palette:","Përdorni një gamë ngjyrash:"
"Reverse the order of colors?","Ngjyra të kundërta?"
"Use specific colors:","Përdorni ngjyra specifike:"
"label","translation","comment"
"Align:","Radhitja:",
"Bandwidth adjustment:","Rregullimi i densitetit:",
"Caption","Legjenda",
"Caption:","Legjenda:",
"Center","Në qëndër:",
"Close","Mbylle",
"Close Window","Mbylle dritaren",
"Code","Kodi",
"Code:","Kodi:",
"Color label","Teksti për variablin ngjyrë:",
"Color label:","Teksti për variablin ngjyrë:",
"Color:","Ngjyra:",
"Copy to clipboard","Kopjo në kujtesën e fragmenteve:",
"Data","Të dhënat",
"Dataset","Të dhënat",
"Display settings","Cilësitë e paraqitjes",
"Esquisse settings","Cilësimet e Esquisse",
"Export chart","Eksporto grafikun",
"Export format:","Formati i eksportit:",
"Export to PowerPoint failed...","Eksportimi në PowerPoint dështoi",
"Facet ncol:","Numri i shtyllave të kategorive:",
"Facet nrow:","Numri i rreshtave të kategorive:",
"Facet scales:","Shkalla e kategorive:",
"Filename","Emri i skedarit",
"Filename:","Emri i skedarit:",
"Fill label","Teksti për variablin mbushje",
"Fill label:","Teksti për variablin mbushje:",
"Font face:","Shkrimi:",
"Font size:","Madhësia e shkrimit:",
"Height:","Lartësia:",
"Import data","Importo të dhëna",
"Import data to create a graph","Importo të dhëna për të krijuar një grafik",
"Insert code in script","Përfshi kodin në skript",
"Labels & Title","Etiketat dhe titulli",
"Left","Majtas:",
"More options","Më shumë opsione",
"Numbers of bins:","Numri i shtyllave:",
"Position:","Pozicioni:",
"Reverse the order of colors?","Ngjyra të kundërta?",
"Ribbon color:","Ngjyra e shiritit:",
"Right","Djathtas",
"Scale:","Shkalla:",
"Select aesthetics to be used to build a graph:","Zgjidh estetikën për të krijuar grafikun",
"Shape label","Teksti për variablin formën:",
"Shape label:","Teksti për variablin formë:",
"Show data","Trego të dhënat",
"Size label","Teksti për variablin madhësi:",
"Size label:","Teksti për variablin madhësi:",
"Subtitle","Nëntitulli",
"Subtitle:","Nëntitulli:",
"Theme:","Modeli i paraqitjes:",
"Title","Titulli",
"Title:","Titulli:",
"Update Preview","Përditëso pamjen",
"Use a color palette:","Përdorni një gamë ngjyrash:",
"Use specific colors:","Përdorni ngjyra specifike:",
"Width:","Gjerësia:",
"X label","Emërtimi i boshtit X",
"X label:","Emërtimi i boshtit X:",
"X-Axis transform:","Transformimi i boshtit X:",
"Y label","Emërtimi i boshtit Y",
"Y label:","Emërtimi i boshtit Y:",
"Y-Axis transform:","Transformimi i boshtit Y:",
"color points and lines","ngjyra e pikave dhe vijave",
"create small multiples","Krijoni më shumë grafikë",
"create small multiples by columns","Krijoni më shumë grafikë sipas shtyllave",
"create small multiples by rows","Krijoni më shumë grafikë sipas rreshtave",
"fill color for shapes","ngjyra e mbushjes së formave",
"frequency weights","peshat e frekuencave",
"identifies series of points with a grouping variable","identifikon serinë e pikave me një ndryshore grupimi",
"shape of the points","forma e pikave",
"size of the points","madhësia e pikave",
"used in ribbons charts with ymax to display an interval between two lines","përdoret në grafikët fjongo me ymax për të shfaqur një interval midis dy vijave",
"used in ribbons charts with ymin to display an interval between two lines","përdoret në grafikët fjongo me ymin për të shfaqur një interval midis dy vijave",
"Aesthetic mappings describe how variables in the data are mapped to visual properties aesthetics of geoms.","Hartimet estetike përshkruajnë se si variablat në të dhëna janë të lidhura me estetikën e vetive vizuale të gjeomëve.","Automatically translated"
"Always","Gjithmonë","Automatically translated"
"Angle:","Këndi:","Automatically translated"
"Axes","Sëpata","Automatically translated"
"Controls the amount of smoothing:","Kontrollon sasinë e zbutjes:","Automatically translated"
"Create column","Krijo kolonë","Automatically translated"
"Cut numeric variable into factor","Pritini ndryshoren numerike në faktor","Automatically translated"
"Display confidence interval around smooth","Shfaqni intervalin e besimit rreth qetë","Automatically translated"
"Export","Eksporto","Automatically translated"
"Geometries","Gjeometritë","Automatically translated"
"Horizontal justification:","Arsyetimi horizontal:","Automatically translated"
"Justification:","Justifikim:","Automatically translated"
"Level of confidence interval to use:","Intervali i nivelit të besimit për t'u përdorur:","Automatically translated"
"Line width:","Gjerësia e linjës:","Automatically translated"
"Never","kurrë","Automatically translated"
"No data to display","Nuk ka të dhëna për të shfaqur","Automatically translated"
"Once per warning","Një herë për paralajmërim","Automatically translated"
"Options","Opsione","Automatically translated"
"Show notifications when the plot generate a warning:","Shfaq njoftimet kur komploti gjeneron një paralajmërim:","Automatically translated"
"Size for points:","Madhësia për pikë:","Automatically translated"
"Size:","Madhësia:","Automatically translated"
"Smoothing method:","Metoda e zbutjes:","Automatically translated"
"Stat summary function:","Funksioni i përmbledhjes së statistikave:","Automatically translated"
"Theme","Tema","Automatically translated"
"Update & select variables","Përditësoni dhe zgjidhni variablat","Automatically translated"
"Update factor","Faktori i përditësimit","Automatically translated"
"Update variables","Përditëso variablat","Automatically translated"
"Use {plotly} to render plot","Përdorni {plotly} për të dhënë grafikun","Automatically translated"
"Vertical justification:","Arsyetimi vertikal:","Automatically translated"
"X-Axis limits empty for none:","Kufijtë e boshtit X janë bosh për asnjë:","Automatically translated"
"Y-Axis limits empty for none:","Kufijtë e boshtit Y janë bosh për asnjë:","Automatically translated"
"alpha transparency","transparenca alfa","Automatically translated"
"axis text options:","opsionet e tekstit të boshtit:","Automatically translated"
"bottom","fund","Automatically translated"
"center","qendër","Automatically translated"
"left","majtas","Automatically translated"
"none","asnje","Automatically translated"
"right","drejtë","Automatically translated"
"text to use as label on plot","tekst për t'u përdorur si etiketë në komplot","Automatically translated"
"top","krye","Automatically translated"
Loading

0 comments on commit 2f080d4

Please sign in to comment.