Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/files_texteditor.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--l10n/cs_CZ.js17
-rw-r--r--l10n/cs_CZ.json15
-rw-r--r--l10n/cs_CZ.php10
-rw-r--r--l10n/da.js17
-rw-r--r--l10n/da.json15
-rw-r--r--l10n/da.php12
-rw-r--r--l10n/de.js17
-rw-r--r--l10n/de.json15
-rw-r--r--l10n/de.php12
-rw-r--r--l10n/de_DE.js17
-rw-r--r--l10n/de_DE.json15
-rw-r--r--l10n/de_DE.php12
-rw-r--r--l10n/en_GB.js17
-rw-r--r--l10n/en_GB.json15
-rw-r--r--l10n/en_GB.php10
-rw-r--r--l10n/es.js17
-rw-r--r--l10n/es.json15
-rw-r--r--l10n/es.php10
-rw-r--r--l10n/fi_FI.js17
-rw-r--r--l10n/fi_FI.json15
-rw-r--r--l10n/fi_FI.php10
-rw-r--r--l10n/fr.js15
-rw-r--r--l10n/fr.json13
-rw-r--r--l10n/fr.php10
-rw-r--r--l10n/gl.js15
-rw-r--r--l10n/gl.json13
-rw-r--r--l10n/gl.php8
-rw-r--r--l10n/it.js17
-rw-r--r--l10n/it.json15
-rw-r--r--l10n/it.php10
-rw-r--r--l10n/nl.js17
-rw-r--r--l10n/nl.json15
-rw-r--r--l10n/nl.php10
-rw-r--r--l10n/pt_BR.js17
-rw-r--r--l10n/pt_BR.json15
-rw-r--r--l10n/pt_BR.php10
-rw-r--r--l10n/pt_PT.js17
-rw-r--r--l10n/pt_PT.json15
-rw-r--r--l10n/pt_PT.php16
39 files changed, 502 insertions, 46 deletions
diff --git a/l10n/cs_CZ.js b/l10n/cs_CZ.js
new file mode 100644
index 0000000..68b5168
--- /dev/null
+++ b/l10n/cs_CZ.js
@@ -0,0 +1,17 @@
+OC.L10N.register(
+ "files_texteditor",
+ {
+ "Cannot save file as it has been modified since opening" : "Soubor nelze uložit, protože byl od otevření upraven",
+ "Insufficient permissions" : "Nedostatečná oprávnění",
+ "File path not supplied" : "Nebyla dodána cesta k souboru",
+ "File mtime not supplied" : "Nebyl dodán mtime souboru",
+ "Save" : "Uložit",
+ "Search" : "Hledat",
+ "Next" : "Následující",
+ "Clear" : "Vyčistit",
+ "Saving..." : "Ukládám...",
+ "An error occurred!" : "Nastala chyba!",
+ "There are unsaved changes in the text editor" : "V editoru jsou neuložené změny",
+ "There were unsaved changes, click here to go back" : "Existují neuložené změny, klikněte zde pro návrat"
+},
+"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;");
diff --git a/l10n/cs_CZ.json b/l10n/cs_CZ.json
new file mode 100644
index 0000000..666d9ff
--- /dev/null
+++ b/l10n/cs_CZ.json
@@ -0,0 +1,15 @@
+{ "translations": {
+ "Cannot save file as it has been modified since opening" : "Soubor nelze uložit, protože byl od otevření upraven",
+ "Insufficient permissions" : "Nedostatečná oprávnění",
+ "File path not supplied" : "Nebyla dodána cesta k souboru",
+ "File mtime not supplied" : "Nebyl dodán mtime souboru",
+ "Save" : "Uložit",
+ "Search" : "Hledat",
+ "Next" : "Následující",
+ "Clear" : "Vyčistit",
+ "Saving..." : "Ukládám...",
+ "An error occurred!" : "Nastala chyba!",
+ "There are unsaved changes in the text editor" : "V editoru jsou neuložené změny",
+ "There were unsaved changes, click here to go back" : "Existují neuložené změny, klikněte zde pro návrat"
+},"pluralForm" :"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"
+} \ No newline at end of file
diff --git a/l10n/cs_CZ.php b/l10n/cs_CZ.php
index a4cef24..888ebf9 100644
--- a/l10n/cs_CZ.php
+++ b/l10n/cs_CZ.php
@@ -1,12 +1,16 @@
-<?php $TRANSLATIONS = array(
+<?php
+$TRANSLATIONS = array(
+"Cannot save file as it has been modified since opening" => "Soubor nelze uložit, protože byl od otevření upraven",
+"Insufficient permissions" => "Nedostatečná oprávnění",
+"File path not supplied" => "Nebyla dodána cesta k souboru",
+"File mtime not supplied" => "Nebyl dodán mtime souboru",
"Save" => "Uložit",
"Search" => "Hledat",
-"Close" => "Zavřít",
"Next" => "Následující",
"Clear" => "Vyčistit",
"Saving..." => "Ukládám...",
-"Failed to save file" => "Uložení souboru selhalo",
"An error occurred!" => "Nastala chyba!",
"There are unsaved changes in the text editor" => "V editoru jsou neuložené změny",
"There were unsaved changes, click here to go back" => "Existují neuložené změny, klikněte zde pro návrat"
);
+$PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;";
diff --git a/l10n/da.js b/l10n/da.js
new file mode 100644
index 0000000..259e10e
--- /dev/null
+++ b/l10n/da.js
@@ -0,0 +1,17 @@
+OC.L10N.register(
+ "files_texteditor",
+ {
+ "Cannot save file as it has been modified since opening" : "Kan ikke gemme filen, da den er blevet ændret efter den blev åbnet",
+ "Insufficient permissions" : "Utilstrækkeligt med rettigheder",
+ "File path not supplied" : "Filstien er ikke angivet",
+ "File mtime not supplied" : "Filen mtime er ikke anvist",
+ "Save" : "Gem",
+ "Search" : "Søg",
+ "Next" : "Næste",
+ "Clear" : "Ryd",
+ "Saving..." : "Gemmer...",
+ "An error occurred!" : "Der opstod en fejl!",
+ "There are unsaved changes in the text editor" : "Der er ændringer som ikke er gemt i tekstbehandleren",
+ "There were unsaved changes, click here to go back" : "Ændringer blev ikke gemt - klik her for at gå tilbage"
+},
+"nplurals=2; plural=(n != 1);");
diff --git a/l10n/da.json b/l10n/da.json
new file mode 100644
index 0000000..3b17408
--- /dev/null
+++ b/l10n/da.json
@@ -0,0 +1,15 @@
+{ "translations": {
+ "Cannot save file as it has been modified since opening" : "Kan ikke gemme filen, da den er blevet ændret efter den blev åbnet",
+ "Insufficient permissions" : "Utilstrækkeligt med rettigheder",
+ "File path not supplied" : "Filstien er ikke angivet",
+ "File mtime not supplied" : "Filen mtime er ikke anvist",
+ "Save" : "Gem",
+ "Search" : "Søg",
+ "Next" : "Næste",
+ "Clear" : "Ryd",
+ "Saving..." : "Gemmer...",
+ "An error occurred!" : "Der opstod en fejl!",
+ "There are unsaved changes in the text editor" : "Der er ændringer som ikke er gemt i tekstbehandleren",
+ "There were unsaved changes, click here to go back" : "Ændringer blev ikke gemt - klik her for at gå tilbage"
+},"pluralForm" :"nplurals=2; plural=(n != 1);"
+} \ No newline at end of file
diff --git a/l10n/da.php b/l10n/da.php
index f701331..c716605 100644
--- a/l10n/da.php
+++ b/l10n/da.php
@@ -1,12 +1,16 @@
-<?php $TRANSLATIONS = array(
+<?php
+$TRANSLATIONS = array(
+"Cannot save file as it has been modified since opening" => "Kan ikke gemme filen, da den er blevet ændret efter den blev åbnet",
+"Insufficient permissions" => "Utilstrækkeligt med rettigheder",
+"File path not supplied" => "Filstien er ikke angivet",
+"File mtime not supplied" => "Filen mtime er ikke anvist",
"Save" => "Gem",
"Search" => "Søg",
-"Close" => "Luk",
"Next" => "Næste",
"Clear" => "Ryd",
"Saving..." => "Gemmer...",
-"Failed to save file" => "Kunne ikke gemme filen",
"An error occurred!" => "Der opstod en fejl!",
-"There are unsaved changes in the text editor" => "Der er ugemte ændringer i tekstbehandleren",
+"There are unsaved changes in the text editor" => "Der er ændringer som ikke er gemt i tekstbehandleren",
"There were unsaved changes, click here to go back" => "Ændringer blev ikke gemt - klik her for at gå tilbage"
);
+$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";
diff --git a/l10n/de.js b/l10n/de.js
new file mode 100644
index 0000000..8539260
--- /dev/null
+++ b/l10n/de.js
@@ -0,0 +1,17 @@
+OC.L10N.register(
+ "files_texteditor",
+ {
+ "Cannot save file as it has been modified since opening" : "Die Datei konnte nicht gespeichert werden, weil sie seit dem Öffnen verändert worden ist",
+ "Insufficient permissions" : "Nicht ausreichende Berechtigungen",
+ "File path not supplied" : "Dateipfad nicht angegeben",
+ "File mtime not supplied" : "Dateiänderungsdatum nicht angegeben",
+ "Save" : "Speichern",
+ "Search" : "Suche",
+ "Next" : "Weiter",
+ "Clear" : "Leeren",
+ "Saving..." : "Speichern…",
+ "An error occurred!" : "Ein Fehler ist aufgetreten!",
+ "There are unsaved changes in the text editor" : "Einige Änderungen im Texteditor wurden noch nicht gespeichert",
+ "There were unsaved changes, click here to go back" : "Einige Änderungen wurde noch nicht gespeichert. Klicke hier, um zurückzugehen."
+},
+"nplurals=2; plural=(n != 1);");
diff --git a/l10n/de.json b/l10n/de.json
new file mode 100644
index 0000000..7490007
--- /dev/null
+++ b/l10n/de.json
@@ -0,0 +1,15 @@
+{ "translations": {
+ "Cannot save file as it has been modified since opening" : "Die Datei konnte nicht gespeichert werden, weil sie seit dem Öffnen verändert worden ist",
+ "Insufficient permissions" : "Nicht ausreichende Berechtigungen",
+ "File path not supplied" : "Dateipfad nicht angegeben",
+ "File mtime not supplied" : "Dateiänderungsdatum nicht angegeben",
+ "Save" : "Speichern",
+ "Search" : "Suche",
+ "Next" : "Weiter",
+ "Clear" : "Leeren",
+ "Saving..." : "Speichern…",
+ "An error occurred!" : "Ein Fehler ist aufgetreten!",
+ "There are unsaved changes in the text editor" : "Einige Änderungen im Texteditor wurden noch nicht gespeichert",
+ "There were unsaved changes, click here to go back" : "Einige Änderungen wurde noch nicht gespeichert. Klicke hier, um zurückzugehen."
+},"pluralForm" :"nplurals=2; plural=(n != 1);"
+} \ No newline at end of file
diff --git a/l10n/de.php b/l10n/de.php
index 59235ec..f265d7a 100644
--- a/l10n/de.php
+++ b/l10n/de.php
@@ -1,12 +1,16 @@
-<?php $TRANSLATIONS = array(
+<?php
+$TRANSLATIONS = array(
+"Cannot save file as it has been modified since opening" => "Die Datei konnte nicht gespeichert werden, weil sie seit dem Öffnen verändert worden ist",
+"Insufficient permissions" => "Nicht ausreichende Berechtigungen",
+"File path not supplied" => "Dateipfad nicht angegeben",
+"File mtime not supplied" => "Dateiänderungsdatum nicht angegeben",
"Save" => "Speichern",
"Search" => "Suche",
-"Close" => "Schließen",
"Next" => "Weiter",
"Clear" => "Leeren",
-"Saving..." => "Speichern...",
-"Failed to save file" => "Speichern der Datei fehlgeschlagen",
+"Saving..." => "Speichern…",
"An error occurred!" => "Ein Fehler ist aufgetreten!",
"There are unsaved changes in the text editor" => "Einige Änderungen im Texteditor wurden noch nicht gespeichert",
"There were unsaved changes, click here to go back" => "Einige Änderungen wurde noch nicht gespeichert. Klicke hier, um zurückzugehen."
);
+$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";
diff --git a/l10n/de_DE.js b/l10n/de_DE.js
new file mode 100644
index 0000000..6290126
--- /dev/null
+++ b/l10n/de_DE.js
@@ -0,0 +1,17 @@
+OC.L10N.register(
+ "files_texteditor",
+ {
+ "Cannot save file as it has been modified since opening" : "Die Datei konnte nicht gespeichert werden, weil sie seit dem Öffnen verändert worden ist",
+ "Insufficient permissions" : "Nicht ausreichende Berechtigungen",
+ "File path not supplied" : "Dateipfad nicht angegeben",
+ "File mtime not supplied" : "Dateiänderungsdatum nicht angegeben",
+ "Save" : "Speichern",
+ "Search" : "Suche",
+ "Next" : "Weiter",
+ "Clear" : "Leeren",
+ "Saving..." : "Speichern…",
+ "An error occurred!" : "Ein Fehler ist aufgetreten!",
+ "There are unsaved changes in the text editor" : "Einige Änderungen im Texteditor wurden noch nicht gespeichert",
+ "There were unsaved changes, click here to go back" : "Einige Änderungen wurde noch nicht gespeichert. Klicken Sie hier, um zurückzugehen."
+},
+"nplurals=2; plural=(n != 1);");
diff --git a/l10n/de_DE.json b/l10n/de_DE.json
new file mode 100644
index 0000000..d8f3376
--- /dev/null
+++ b/l10n/de_DE.json
@@ -0,0 +1,15 @@
+{ "translations": {
+ "Cannot save file as it has been modified since opening" : "Die Datei konnte nicht gespeichert werden, weil sie seit dem Öffnen verändert worden ist",
+ "Insufficient permissions" : "Nicht ausreichende Berechtigungen",
+ "File path not supplied" : "Dateipfad nicht angegeben",
+ "File mtime not supplied" : "Dateiänderungsdatum nicht angegeben",
+ "Save" : "Speichern",
+ "Search" : "Suche",
+ "Next" : "Weiter",
+ "Clear" : "Leeren",
+ "Saving..." : "Speichern…",
+ "An error occurred!" : "Ein Fehler ist aufgetreten!",
+ "There are unsaved changes in the text editor" : "Einige Änderungen im Texteditor wurden noch nicht gespeichert",
+ "There were unsaved changes, click here to go back" : "Einige Änderungen wurde noch nicht gespeichert. Klicken Sie hier, um zurückzugehen."
+},"pluralForm" :"nplurals=2; plural=(n != 1);"
+} \ No newline at end of file
diff --git a/l10n/de_DE.php b/l10n/de_DE.php
index 127a0ad..726d960 100644
--- a/l10n/de_DE.php
+++ b/l10n/de_DE.php
@@ -1,12 +1,16 @@
-<?php $TRANSLATIONS = array(
+<?php
+$TRANSLATIONS = array(
+"Cannot save file as it has been modified since opening" => "Die Datei konnte nicht gespeichert werden, weil sie seit dem Öffnen verändert worden ist",
+"Insufficient permissions" => "Nicht ausreichende Berechtigungen",
+"File path not supplied" => "Dateipfad nicht angegeben",
+"File mtime not supplied" => "Dateiänderungsdatum nicht angegeben",
"Save" => "Speichern",
"Search" => "Suche",
-"Close" => "Schließen",
"Next" => "Weiter",
"Clear" => "Leeren",
-"Saving..." => "Speichern...",
-"Failed to save file" => "Speichern der Datei fehlgeschlagen",
+"Saving..." => "Speichern…",
"An error occurred!" => "Ein Fehler ist aufgetreten!",
"There are unsaved changes in the text editor" => "Einige Änderungen im Texteditor wurden noch nicht gespeichert",
"There were unsaved changes, click here to go back" => "Einige Änderungen wurde noch nicht gespeichert. Klicken Sie hier, um zurückzugehen."
);
+$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";
diff --git a/l10n/en_GB.js b/l10n/en_GB.js
new file mode 100644
index 0000000..5e57e97
--- /dev/null
+++ b/l10n/en_GB.js
@@ -0,0 +1,17 @@
+OC.L10N.register(
+ "files_texteditor",
+ {
+ "Cannot save file as it has been modified since opening" : "Cannot save file as it has been modified since opening",
+ "Insufficient permissions" : "Insufficient permissions",
+ "File path not supplied" : "File path not supplied",
+ "File mtime not supplied" : "File mtime not supplied",
+ "Save" : "Save",
+ "Search" : "Search",
+ "Next" : "Next",
+ "Clear" : "Clear",
+ "Saving..." : "Saving...",
+ "An error occurred!" : "An error occurred!",
+ "There are unsaved changes in the text editor" : "There are unsaved changes in the text editor",
+ "There were unsaved changes, click here to go back" : "There were unsaved changes, click here to go back"
+},
+"nplurals=2; plural=(n != 1);");
diff --git a/l10n/en_GB.json b/l10n/en_GB.json
new file mode 100644
index 0000000..94c58ba
--- /dev/null
+++ b/l10n/en_GB.json
@@ -0,0 +1,15 @@
+{ "translations": {
+ "Cannot save file as it has been modified since opening" : "Cannot save file as it has been modified since opening",
+ "Insufficient permissions" : "Insufficient permissions",
+ "File path not supplied" : "File path not supplied",
+ "File mtime not supplied" : "File mtime not supplied",
+ "Save" : "Save",
+ "Search" : "Search",
+ "Next" : "Next",
+ "Clear" : "Clear",
+ "Saving..." : "Saving...",
+ "An error occurred!" : "An error occurred!",
+ "There are unsaved changes in the text editor" : "There are unsaved changes in the text editor",
+ "There were unsaved changes, click here to go back" : "There were unsaved changes, click here to go back"
+},"pluralForm" :"nplurals=2; plural=(n != 1);"
+} \ No newline at end of file
diff --git a/l10n/en_GB.php b/l10n/en_GB.php
index c6dae89..8d68466 100644
--- a/l10n/en_GB.php
+++ b/l10n/en_GB.php
@@ -1,12 +1,16 @@
-<?php $TRANSLATIONS = array(
+<?php
+$TRANSLATIONS = array(
+"Cannot save file as it has been modified since opening" => "Cannot save file as it has been modified since opening",
+"Insufficient permissions" => "Insufficient permissions",
+"File path not supplied" => "File path not supplied",
+"File mtime not supplied" => "File mtime not supplied",
"Save" => "Save",
"Search" => "Search",
-"Close" => "Close",
"Next" => "Next",
"Clear" => "Clear",
"Saving..." => "Saving...",
-"Failed to save file" => "Failed to save file",
"An error occurred!" => "An error occurred!",
"There are unsaved changes in the text editor" => "There are unsaved changes in the text editor",
"There were unsaved changes, click here to go back" => "There were unsaved changes, click here to go back"
);
+$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";
diff --git a/l10n/es.js b/l10n/es.js
new file mode 100644
index 0000000..4e259f4
--- /dev/null
+++ b/l10n/es.js
@@ -0,0 +1,17 @@
+OC.L10N.register(
+ "files_texteditor",
+ {
+ "Cannot save file as it has been modified since opening" : "No es posible guardar el archivo pues ha sido modificado",
+ "Insufficient permissions" : "Permisos insuficientes",
+ "File path not supplied" : "No se ha proporcionado la ruta del archivo",
+ "File mtime not supplied" : "No se ha proporcionado la hora de modificación del archivo (mtime)",
+ "Save" : "Guardar",
+ "Search" : "Buscar",
+ "Next" : "Siguiente",
+ "Clear" : "Borrar",
+ "Saving..." : "Guardando...",
+ "An error occurred!" : "¡Ocurrió un error!",
+ "There are unsaved changes in the text editor" : "Hay cambios sin guardar en el editor de textos",
+ "There were unsaved changes, click here to go back" : "Hay cambios sin guardar, haga clic aquí para volver"
+},
+"nplurals=2; plural=(n != 1);");
diff --git a/l10n/es.json b/l10n/es.json
new file mode 100644
index 0000000..088da6b
--- /dev/null
+++ b/l10n/es.json
@@ -0,0 +1,15 @@
+{ "translations": {
+ "Cannot save file as it has been modified since opening" : "No es posible guardar el archivo pues ha sido modificado",
+ "Insufficient permissions" : "Permisos insuficientes",
+ "File path not supplied" : "No se ha proporcionado la ruta del archivo",
+ "File mtime not supplied" : "No se ha proporcionado la hora de modificación del archivo (mtime)",
+ "Save" : "Guardar",
+ "Search" : "Buscar",
+ "Next" : "Siguiente",
+ "Clear" : "Borrar",
+ "Saving..." : "Guardando...",
+ "An error occurred!" : "¡Ocurrió un error!",
+ "There are unsaved changes in the text editor" : "Hay cambios sin guardar en el editor de textos",
+ "There were unsaved changes, click here to go back" : "Hay cambios sin guardar, haga clic aquí para volver"
+},"pluralForm" :"nplurals=2; plural=(n != 1);"
+} \ No newline at end of file
diff --git a/l10n/es.php b/l10n/es.php
index f8cac58..f182d4a 100644
--- a/l10n/es.php
+++ b/l10n/es.php
@@ -1,12 +1,16 @@
-<?php $TRANSLATIONS = array(
+<?php
+$TRANSLATIONS = array(
+"Cannot save file as it has been modified since opening" => "No es posible guardar el archivo pues ha sido modificado",
+"Insufficient permissions" => "Permisos insuficientes",
+"File path not supplied" => "No se ha proporcionado la ruta del archivo",
+"File mtime not supplied" => "No se ha proporcionado la hora de modificación del archivo (mtime)",
"Save" => "Guardar",
"Search" => "Buscar",
-"Close" => "Cerrar",
"Next" => "Siguiente",
"Clear" => "Borrar",
"Saving..." => "Guardando...",
-"Failed to save file" => "Falló al guardar archivo",
"An error occurred!" => "¡Ocurrió un error!",
"There are unsaved changes in the text editor" => "Hay cambios sin guardar en el editor de textos",
"There were unsaved changes, click here to go back" => "Hay cambios sin guardar, haga clic aquí para volver"
);
+$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";
diff --git a/l10n/fi_FI.js b/l10n/fi_FI.js
new file mode 100644
index 0000000..0ead1f3
--- /dev/null
+++ b/l10n/fi_FI.js
@@ -0,0 +1,17 @@
+OC.L10N.register(
+ "files_texteditor",
+ {
+ "Cannot save file as it has been modified since opening" : "Tiedostoa ei voi tallentaa, koska sitä on muokattu avaamisen jälkeen",
+ "Insufficient permissions" : "Oikeudet eivät riitä",
+ "File path not supplied" : "TIedoston polkua ei annettu",
+ "File mtime not supplied" : "Tiedoston mtime-arvoa ei ole annettu",
+ "Save" : "Tallenna",
+ "Search" : "Etsi",
+ "Next" : "Seuraava",
+ "Clear" : "Tyhjennä",
+ "Saving..." : "Tallennetaan...",
+ "An error occurred!" : "Tapahtui virhe!",
+ "There are unsaved changes in the text editor" : "Tekstimuokkaimessa on tallentamattomia muutoksia",
+ "There were unsaved changes, click here to go back" : "Asiakirjassa on muutoksia tallentamatta, napsauta tästä palataksesi"
+},
+"nplurals=2; plural=(n != 1);");
diff --git a/l10n/fi_FI.json b/l10n/fi_FI.json
new file mode 100644
index 0000000..127d090
--- /dev/null
+++ b/l10n/fi_FI.json
@@ -0,0 +1,15 @@
+{ "translations": {
+ "Cannot save file as it has been modified since opening" : "Tiedostoa ei voi tallentaa, koska sitä on muokattu avaamisen jälkeen",
+ "Insufficient permissions" : "Oikeudet eivät riitä",
+ "File path not supplied" : "TIedoston polkua ei annettu",
+ "File mtime not supplied" : "Tiedoston mtime-arvoa ei ole annettu",
+ "Save" : "Tallenna",
+ "Search" : "Etsi",
+ "Next" : "Seuraava",
+ "Clear" : "Tyhjennä",
+ "Saving..." : "Tallennetaan...",
+ "An error occurred!" : "Tapahtui virhe!",
+ "There are unsaved changes in the text editor" : "Tekstimuokkaimessa on tallentamattomia muutoksia",
+ "There were unsaved changes, click here to go back" : "Asiakirjassa on muutoksia tallentamatta, napsauta tästä palataksesi"
+},"pluralForm" :"nplurals=2; plural=(n != 1);"
+} \ No newline at end of file
diff --git a/l10n/fi_FI.php b/l10n/fi_FI.php
index 7d5f885..9e8641a 100644
--- a/l10n/fi_FI.php
+++ b/l10n/fi_FI.php
@@ -1,12 +1,16 @@
-<?php $TRANSLATIONS = array(
+<?php
+$TRANSLATIONS = array(
+"Cannot save file as it has been modified since opening" => "Tiedostoa ei voi tallentaa, koska sitä on muokattu avaamisen jälkeen",
+"Insufficient permissions" => "Oikeudet eivät riitä",
+"File path not supplied" => "TIedoston polkua ei annettu",
+"File mtime not supplied" => "Tiedoston mtime-arvoa ei ole annettu",
"Save" => "Tallenna",
"Search" => "Etsi",
-"Close" => "Sulje",
"Next" => "Seuraava",
"Clear" => "Tyhjennä",
"Saving..." => "Tallennetaan...",
-"Failed to save file" => "Tiedoston tallennus epäonnistui",
"An error occurred!" => "Tapahtui virhe!",
"There are unsaved changes in the text editor" => "Tekstimuokkaimessa on tallentamattomia muutoksia",
"There were unsaved changes, click here to go back" => "Asiakirjassa on muutoksia tallentamatta, napsauta tästä palataksesi"
);
+$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";
diff --git a/l10n/fr.js b/l10n/fr.js
new file mode 100644
index 0000000..ce7660f
--- /dev/null
+++ b/l10n/fr.js
@@ -0,0 +1,15 @@
+OC.L10N.register(
+ "files_texteditor",
+ {
+ "Insufficient permissions" : "Permissions insuffisantes",
+ "File path not supplied" : "Chemin du fichier non fourni",
+ "Save" : "Enregistrer",
+ "Search" : "Rechercher",
+ "Next" : "Suivant",
+ "Clear" : "Effacer",
+ "Saving..." : "Enregistrement...",
+ "An error occurred!" : "Une erreur est survenue !",
+ "There are unsaved changes in the text editor" : "Certaines modifications dans l'éditeur de texte n'ont pas été sauvegardées",
+ "There were unsaved changes, click here to go back" : "Certaines modifications n'ont pas été sauvegardées. Cliquez ici pour revenir en arrière"
+},
+"nplurals=2; plural=(n > 1);");
diff --git a/l10n/fr.json b/l10n/fr.json
new file mode 100644
index 0000000..6e5f244
--- /dev/null
+++ b/l10n/fr.json
@@ -0,0 +1,13 @@
+{ "translations": {
+ "Insufficient permissions" : "Permissions insuffisantes",
+ "File path not supplied" : "Chemin du fichier non fourni",
+ "Save" : "Enregistrer",
+ "Search" : "Rechercher",
+ "Next" : "Suivant",
+ "Clear" : "Effacer",
+ "Saving..." : "Enregistrement...",
+ "An error occurred!" : "Une erreur est survenue !",
+ "There are unsaved changes in the text editor" : "Certaines modifications dans l'éditeur de texte n'ont pas été sauvegardées",
+ "There were unsaved changes, click here to go back" : "Certaines modifications n'ont pas été sauvegardées. Cliquez ici pour revenir en arrière"
+},"pluralForm" :"nplurals=2; plural=(n > 1);"
+} \ No newline at end of file
diff --git a/l10n/fr.php b/l10n/fr.php
index f283e5b..064a4d3 100644
--- a/l10n/fr.php
+++ b/l10n/fr.php
@@ -1,12 +1,14 @@
-<?php $TRANSLATIONS = array(
+<?php
+$TRANSLATIONS = array(
+"Insufficient permissions" => "Permissions insuffisantes",
+"File path not supplied" => "Chemin du fichier non fourni",
"Save" => "Enregistrer",
"Search" => "Rechercher",
-"Close" => "Fermer",
"Next" => "Suivant",
"Clear" => "Effacer",
"Saving..." => "Enregistrement...",
-"Failed to save file" => "Impossible d'enregistrer le fichier",
"An error occurred!" => "Une erreur est survenue !",
"There are unsaved changes in the text editor" => "Certaines modifications dans l'éditeur de texte n'ont pas été sauvegardées",
-"There were unsaved changes, click here to go back" => "Certaines modifications n'ont pas été sauvegardées, cliquez ici pour revenir"
+"There were unsaved changes, click here to go back" => "Certaines modifications n'ont pas été sauvegardées. Cliquez ici pour revenir en arrière"
);
+$PLURAL_FORMS = "nplurals=2; plural=(n > 1);";
diff --git a/l10n/gl.js b/l10n/gl.js
new file mode 100644
index 0000000..634d4a6
--- /dev/null
+++ b/l10n/gl.js
@@ -0,0 +1,15 @@
+OC.L10N.register(
+ "files_texteditor",
+ {
+ "Insufficient permissions" : "Permisos insuficientes",
+ "File path not supplied" : "Non proveeu unha ruta de ficheiro",
+ "Save" : "Gardar",
+ "Search" : "Buscar",
+ "Next" : "Seguinte",
+ "Clear" : "Limpar",
+ "Saving..." : "Gardando...",
+ "An error occurred!" : "Produciuse un erro!",
+ "There are unsaved changes in the text editor" : "Hai cambios sen gardar no editor de textos",
+ "There were unsaved changes, click here to go back" : "Hai cambios sen gardar, prema aquí para ir cara atrás"
+},
+"nplurals=2; plural=(n != 1);");
diff --git a/l10n/gl.json b/l10n/gl.json
new file mode 100644
index 0000000..c4f51dc
--- /dev/null
+++ b/l10n/gl.json
@@ -0,0 +1,13 @@
+{ "translations": {
+ "Insufficient permissions" : "Permisos insuficientes",
+ "File path not supplied" : "Non proveeu unha ruta de ficheiro",
+ "Save" : "Gardar",
+ "Search" : "Buscar",
+ "Next" : "Seguinte",
+ "Clear" : "Limpar",
+ "Saving..." : "Gardando...",
+ "An error occurred!" : "Produciuse un erro!",
+ "There are unsaved changes in the text editor" : "Hai cambios sen gardar no editor de textos",
+ "There were unsaved changes, click here to go back" : "Hai cambios sen gardar, prema aquí para ir cara atrás"
+},"pluralForm" :"nplurals=2; plural=(n != 1);"
+} \ No newline at end of file
diff --git a/l10n/gl.php b/l10n/gl.php
index 7c68ae3..57d2af8 100644
--- a/l10n/gl.php
+++ b/l10n/gl.php
@@ -1,12 +1,14 @@
-<?php $TRANSLATIONS = array(
+<?php
+$TRANSLATIONS = array(
+"Insufficient permissions" => "Permisos insuficientes",
+"File path not supplied" => "Non proveeu unha ruta de ficheiro",
"Save" => "Gardar",
"Search" => "Buscar",
-"Close" => "Pechar",
"Next" => "Seguinte",
"Clear" => "Limpar",
"Saving..." => "Gardando...",
-"Failed to save file" => "Non foi posíbel gardar o ficheiro",
"An error occurred!" => "Produciuse un erro!",
"There are unsaved changes in the text editor" => "Hai cambios sen gardar no editor de textos",
"There were unsaved changes, click here to go back" => "Hai cambios sen gardar, prema aquí para ir cara atrás"
);
+$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";
diff --git a/l10n/it.js b/l10n/it.js
new file mode 100644
index 0000000..4be0f7e
--- /dev/null
+++ b/l10n/it.js
@@ -0,0 +1,17 @@
+OC.L10N.register(
+ "files_texteditor",
+ {
+ "Cannot save file as it has been modified since opening" : "Impossibile salvare il file poiché è stato modificato dopo la sua apertura",
+ "Insufficient permissions" : "Permessi insufficienti",
+ "File path not supplied" : "Percorso del file non fornito",
+ "File mtime not supplied" : "mtime del file non fornito",
+ "Save" : "Salva",
+ "Search" : "Cerca",
+ "Next" : "Successivo",
+ "Clear" : "Cancella",
+ "Saving..." : "Salvataggio in corso...",
+ "An error occurred!" : "Si è verificato un errore!",
+ "There are unsaved changes in the text editor" : "Ci sono delle modifiche non salvate nell'editor di testo",
+ "There were unsaved changes, click here to go back" : "C'erano delle modifiche non salvate, fai clic qui per tornare indietro"
+},
+"nplurals=2; plural=(n != 1);");
diff --git a/l10n/it.json b/l10n/it.json
new file mode 100644
index 0000000..88483e5
--- /dev/null
+++ b/l10n/it.json
@@ -0,0 +1,15 @@
+{ "translations": {
+ "Cannot save file as it has been modified since opening" : "Impossibile salvare il file poiché è stato modificato dopo la sua apertura",
+ "Insufficient permissions" : "Permessi insufficienti",
+ "File path not supplied" : "Percorso del file non fornito",
+ "File mtime not supplied" : "mtime del file non fornito",
+ "Save" : "Salva",
+ "Search" : "Cerca",
+ "Next" : "Successivo",
+ "Clear" : "Cancella",
+ "Saving..." : "Salvataggio in corso...",
+ "An error occurred!" : "Si è verificato un errore!",
+ "There are unsaved changes in the text editor" : "Ci sono delle modifiche non salvate nell'editor di testo",
+ "There were unsaved changes, click here to go back" : "C'erano delle modifiche non salvate, fai clic qui per tornare indietro"
+},"pluralForm" :"nplurals=2; plural=(n != 1);"
+} \ No newline at end of file
diff --git a/l10n/it.php b/l10n/it.php
index e2932a0..a75973c 100644
--- a/l10n/it.php
+++ b/l10n/it.php
@@ -1,12 +1,16 @@
-<?php $TRANSLATIONS = array(
+<?php
+$TRANSLATIONS = array(
+"Cannot save file as it has been modified since opening" => "Impossibile salvare il file poiché è stato modificato dopo la sua apertura",
+"Insufficient permissions" => "Permessi insufficienti",
+"File path not supplied" => "Percorso del file non fornito",
+"File mtime not supplied" => "mtime del file non fornito",
"Save" => "Salva",
"Search" => "Cerca",
-"Close" => "Chiudi",
"Next" => "Successivo",
"Clear" => "Cancella",
"Saving..." => "Salvataggio in corso...",
-"Failed to save file" => "Salvataggio del file non riuscito",
"An error occurred!" => "Si è verificato un errore!",
"There are unsaved changes in the text editor" => "Ci sono delle modifiche non salvate nell'editor di testo",
"There were unsaved changes, click here to go back" => "C'erano delle modifiche non salvate, fai clic qui per tornare indietro"
);
+$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";
diff --git a/l10n/nl.js b/l10n/nl.js
new file mode 100644
index 0000000..91ad422
--- /dev/null
+++ b/l10n/nl.js
@@ -0,0 +1,17 @@
+OC.L10N.register(
+ "files_texteditor",
+ {
+ "Cannot save file as it has been modified since opening" : "Kan het bestand niet opslaan omdat het is gewijzigd na het openen",
+ "Insufficient permissions" : "Onvoldoende rechten",
+ "File path not supplied" : "Bestandspad niet opgegeven",
+ "File mtime not supplied" : "Tijdstempel bestand niet opgegeven",
+ "Save" : "Opslaan",
+ "Search" : "Zoeken",
+ "Next" : "Volgende",
+ "Clear" : "Opschonen",
+ "Saving..." : "Opslaan",
+ "An error occurred!" : "Er is iets fout gegaan!",
+ "There are unsaved changes in the text editor" : "Er zijn nog niet-opgeslagen wijzigingen in de tekstverwerker",
+ "There were unsaved changes, click here to go back" : "Er zijn niet opgeslagen veranderingen, klik hier of ga terug"
+},
+"nplurals=2; plural=(n != 1);");
diff --git a/l10n/nl.json b/l10n/nl.json
new file mode 100644
index 0000000..1173af8
--- /dev/null
+++ b/l10n/nl.json
@@ -0,0 +1,15 @@
+{ "translations": {
+ "Cannot save file as it has been modified since opening" : "Kan het bestand niet opslaan omdat het is gewijzigd na het openen",
+ "Insufficient permissions" : "Onvoldoende rechten",
+ "File path not supplied" : "Bestandspad niet opgegeven",
+ "File mtime not supplied" : "Tijdstempel bestand niet opgegeven",
+ "Save" : "Opslaan",
+ "Search" : "Zoeken",
+ "Next" : "Volgende",
+ "Clear" : "Opschonen",
+ "Saving..." : "Opslaan",
+ "An error occurred!" : "Er is iets fout gegaan!",
+ "There are unsaved changes in the text editor" : "Er zijn nog niet-opgeslagen wijzigingen in de tekstverwerker",
+ "There were unsaved changes, click here to go back" : "Er zijn niet opgeslagen veranderingen, klik hier of ga terug"
+},"pluralForm" :"nplurals=2; plural=(n != 1);"
+} \ No newline at end of file
diff --git a/l10n/nl.php b/l10n/nl.php
index 0f68d1a..3bb0302 100644
--- a/l10n/nl.php
+++ b/l10n/nl.php
@@ -1,12 +1,16 @@
-<?php $TRANSLATIONS = array(
+<?php
+$TRANSLATIONS = array(
+"Cannot save file as it has been modified since opening" => "Kan het bestand niet opslaan omdat het is gewijzigd na het openen",
+"Insufficient permissions" => "Onvoldoende rechten",
+"File path not supplied" => "Bestandspad niet opgegeven",
+"File mtime not supplied" => "Tijdstempel bestand niet opgegeven",
"Save" => "Opslaan",
"Search" => "Zoeken",
-"Close" => "Sluiten",
"Next" => "Volgende",
"Clear" => "Opschonen",
"Saving..." => "Opslaan",
-"Failed to save file" => "Bewaren mislukt",
"An error occurred!" => "Er is iets fout gegaan!",
"There are unsaved changes in the text editor" => "Er zijn nog niet-opgeslagen wijzigingen in de tekstverwerker",
"There were unsaved changes, click here to go back" => "Er zijn niet opgeslagen veranderingen, klik hier of ga terug"
);
+$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";
diff --git a/l10n/pt_BR.js b/l10n/pt_BR.js
new file mode 100644
index 0000000..fd1e78c
--- /dev/null
+++ b/l10n/pt_BR.js
@@ -0,0 +1,17 @@
+OC.L10N.register(
+ "files_texteditor",
+ {
+ "Cannot save file as it has been modified since opening" : "Não é possível salvar arquivo como ele foi modificado desde a abertura",
+ "Insufficient permissions" : "Permissões insuficientes",
+ "File path not supplied" : "Caminho do arquivo não fornecido",
+ "File mtime not supplied" : "Data de mudança mtime do arquivo não especificada",
+ "Save" : "Salvar",
+ "Search" : "Perquisar",
+ "Next" : "Próximo",
+ "Clear" : "Limpar",
+ "Saving..." : "Salvando...",
+ "An error occurred!" : "Ocorreu um erro!",
+ "There are unsaved changes in the text editor" : "Há alterações não salvas no editor de texto",
+ "There were unsaved changes, click here to go back" : "Existem alterações não salvas, clique aqui para voltar"
+},
+"nplurals=2; plural=(n > 1);");
diff --git a/l10n/pt_BR.json b/l10n/pt_BR.json
new file mode 100644
index 0000000..1435153
--- /dev/null
+++ b/l10n/pt_BR.json
@@ -0,0 +1,15 @@
+{ "translations": {
+ "Cannot save file as it has been modified since opening" : "Não é possível salvar arquivo como ele foi modificado desde a abertura",
+ "Insufficient permissions" : "Permissões insuficientes",
+ "File path not supplied" : "Caminho do arquivo não fornecido",
+ "File mtime not supplied" : "Data de mudança mtime do arquivo não especificada",
+ "Save" : "Salvar",
+ "Search" : "Perquisar",
+ "Next" : "Próximo",
+ "Clear" : "Limpar",
+ "Saving..." : "Salvando...",
+ "An error occurred!" : "Ocorreu um erro!",
+ "There are unsaved changes in the text editor" : "Há alterações não salvas no editor de texto",
+ "There were unsaved changes, click here to go back" : "Existem alterações não salvas, clique aqui para voltar"
+},"pluralForm" :"nplurals=2; plural=(n > 1);"
+} \ No newline at end of file
diff --git a/l10n/pt_BR.php b/l10n/pt_BR.php
index 767ea77..a1b13a5 100644
--- a/l10n/pt_BR.php
+++ b/l10n/pt_BR.php
@@ -1,12 +1,16 @@
-<?php $TRANSLATIONS = array(
+<?php
+$TRANSLATIONS = array(
+"Cannot save file as it has been modified since opening" => "Não é possível salvar arquivo como ele foi modificado desde a abertura",
+"Insufficient permissions" => "Permissões insuficientes",
+"File path not supplied" => "Caminho do arquivo não fornecido",
+"File mtime not supplied" => "Data de mudança mtime do arquivo não especificada",
"Save" => "Salvar",
"Search" => "Perquisar",
-"Close" => "Fechar",
"Next" => "Próximo",
"Clear" => "Limpar",
"Saving..." => "Salvando...",
-"Failed to save file" => "Falha ao salvar arquivo",
"An error occurred!" => "Ocorreu um erro!",
"There are unsaved changes in the text editor" => "Há alterações não salvas no editor de texto",
"There were unsaved changes, click here to go back" => "Existem alterações não salvas, clique aqui para voltar"
);
+$PLURAL_FORMS = "nplurals=2; plural=(n > 1);";
diff --git a/l10n/pt_PT.js b/l10n/pt_PT.js
new file mode 100644
index 0000000..a3bceba
--- /dev/null
+++ b/l10n/pt_PT.js
@@ -0,0 +1,17 @@
+OC.L10N.register(
+ "files_texteditor",
+ {
+ "Cannot save file as it has been modified since opening" : "Não é possível salvar o ficheiro como ele foi modificado desde a abertura",
+ "Insufficient permissions" : "Permissões insuficientes",
+ "File path not supplied" : "Nenhum caminho do ficheiro foi fornecido",
+ "File mtime not supplied" : "Ficheiro mtime não foi fornecido",
+ "Save" : "Guardar",
+ "Search" : "Procurar",
+ "Next" : "Próximo",
+ "Clear" : "Limpar.",
+ "Saving..." : "A guardar...",
+ "An error occurred!" : "Ocorreu um erro!",
+ "There are unsaved changes in the text editor" : "Existem alterações no editor de texto que ainda não foram guardadas",
+ "There were unsaved changes, click here to go back" : "Existiram alterações que não foram guardadas, Clique aqui para voltar atrás"
+},
+"nplurals=2; plural=(n != 1);");
diff --git a/l10n/pt_PT.json b/l10n/pt_PT.json
new file mode 100644
index 0000000..8fd261c
--- /dev/null
+++ b/l10n/pt_PT.json
@@ -0,0 +1,15 @@
+{ "translations": {
+ "Cannot save file as it has been modified since opening" : "Não é possível salvar o ficheiro como ele foi modificado desde a abertura",
+ "Insufficient permissions" : "Permissões insuficientes",
+ "File path not supplied" : "Nenhum caminho do ficheiro foi fornecido",
+ "File mtime not supplied" : "Ficheiro mtime não foi fornecido",
+ "Save" : "Guardar",
+ "Search" : "Procurar",
+ "Next" : "Próximo",
+ "Clear" : "Limpar.",
+ "Saving..." : "A guardar...",
+ "An error occurred!" : "Ocorreu um erro!",
+ "There are unsaved changes in the text editor" : "Existem alterações no editor de texto que ainda não foram guardadas",
+ "There were unsaved changes, click here to go back" : "Existiram alterações que não foram guardadas, Clique aqui para voltar atrás"
+},"pluralForm" :"nplurals=2; plural=(n != 1);"
+} \ No newline at end of file
diff --git a/l10n/pt_PT.php b/l10n/pt_PT.php
index e0dffc8..5072f71 100644
--- a/l10n/pt_PT.php
+++ b/l10n/pt_PT.php
@@ -1,12 +1,16 @@
-<?php $TRANSLATIONS = array(
+<?php
+$TRANSLATIONS = array(
+"Cannot save file as it has been modified since opening" => "Não é possível salvar o ficheiro como ele foi modificado desde a abertura",
+"Insufficient permissions" => "Permissões insuficientes",
+"File path not supplied" => "Nenhum caminho do ficheiro foi fornecido",
+"File mtime not supplied" => "Ficheiro mtime não foi fornecido",
"Save" => "Guardar",
"Search" => "Procurar",
-"Close" => "Fechar",
-"Next" => "Próxima",
+"Next" => "Próximo",
"Clear" => "Limpar.",
"Saving..." => "A guardar...",
-"Failed to save file" => "Erro a salvar o ficheiro!",
"An error occurred!" => "Ocorreu um erro!",
-"There are unsaved changes in the text editor" => "Há alterações no editor de texto que ainda não foram guardadas",
-"There were unsaved changes, click here to go back" => "Houve alterações que não foram guardadas, click aqui para voltar atrás"
+"There are unsaved changes in the text editor" => "Existem alterações no editor de texto que ainda não foram guardadas",
+"There were unsaved changes, click here to go back" => "Existiram alterações que não foram guardadas, Clique aqui para voltar atrás"
);
+$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";