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--js/editor.js2
-rw-r--r--js/public-share.js3
-rw-r--r--l10n/cs.js16
-rw-r--r--l10n/cs.json16
-rw-r--r--l10n/da.js2
-rw-r--r--l10n/da.json2
-rw-r--r--l10n/de.js4
-rw-r--r--l10n/de.json4
-rw-r--r--l10n/de_DE.js4
-rw-r--r--l10n/de_DE.json4
-rw-r--r--l10n/en_GB.js3
-rw-r--r--l10n/en_GB.json3
-rw-r--r--l10n/eo.js13
-rw-r--r--l10n/eo.json13
-rw-r--r--l10n/es.js4
-rw-r--r--l10n/es.json4
-rw-r--r--l10n/es_CL.js3
-rw-r--r--l10n/es_CL.json3
-rw-r--r--l10n/es_CO.js3
-rw-r--r--l10n/es_CO.json3
-rw-r--r--l10n/es_CR.js3
-rw-r--r--l10n/es_CR.json3
-rw-r--r--l10n/es_DO.js3
-rw-r--r--l10n/es_DO.json3
-rw-r--r--l10n/es_EC.js3
-rw-r--r--l10n/es_EC.json3
-rw-r--r--l10n/es_GT.js3
-rw-r--r--l10n/es_GT.json3
-rw-r--r--l10n/es_MX.js6
-rw-r--r--l10n/es_MX.json6
-rw-r--r--l10n/es_SV.js3
-rw-r--r--l10n/es_SV.json3
-rw-r--r--l10n/fa.js2
-rw-r--r--l10n/fa.json2
-rw-r--r--l10n/fi.js3
-rw-r--r--l10n/fi.json3
-rw-r--r--l10n/fr.js4
-rw-r--r--l10n/fr.json4
-rw-r--r--l10n/he.js5
-rw-r--r--l10n/he.json5
-rw-r--r--l10n/is.js1
-rw-r--r--l10n/is.json1
-rw-r--r--l10n/it.js4
-rw-r--r--l10n/it.json4
-rw-r--r--l10n/ja.js4
-rw-r--r--l10n/ja.json4
-rw-r--r--l10n/ka_GE.js2
-rw-r--r--l10n/ka_GE.json2
-rw-r--r--l10n/lt_LT.js2
-rw-r--r--l10n/lt_LT.json2
-rw-r--r--l10n/nb.js2
-rw-r--r--l10n/nb.json2
-rw-r--r--l10n/pl.js2
-rw-r--r--l10n/pl.json2
-rw-r--r--l10n/pt_BR.js6
-rw-r--r--l10n/pt_BR.json6
-rw-r--r--l10n/ru.js4
-rw-r--r--l10n/ru.json4
-rw-r--r--l10n/sk.js5
-rw-r--r--l10n/sk.json5
-rw-r--r--l10n/sr.js4
-rw-r--r--l10n/sr.json4
-rw-r--r--l10n/tr.js4
-rw-r--r--l10n/tr.json4
-rw-r--r--l10n/uk.js2
-rw-r--r--l10n/uk.json2
-rw-r--r--lib/Controller/FileHandlingController.php3
-rw-r--r--tests/bootstrap.php2
68 files changed, 206 insertions, 62 deletions
diff --git a/js/editor.js b/js/editor.js
index 31387e5..badf1c2 100644
--- a/js/editor.js
+++ b/js/editor.js
@@ -283,7 +283,7 @@ var Files_Texteditor = {
+'<div id="editor_container" class="icon-loading">'
+'<div id="editor_wrap"><div id="editor"></div>'
+'<div id="preview_wrap"><div id="preview"></div></div></div></div>');
- $('#app-content').append(container);
+ $('#content').append(container);
// Get the file data
diff --git a/js/public-share.js b/js/public-share.js
index 28edf39..133ba62 100644
--- a/js/public-share.js
+++ b/js/public-share.js
@@ -56,7 +56,6 @@ $(document).ready(function(){
gfm: false,
breaks: false,
pedantic: false,
- sanitize: true,
smartLists: true,
smartypants: false
}),
@@ -98,7 +97,7 @@ $(document).ready(function(){
.append(textDiv);
var divHeight = textDiv.height();
- if (content.length > 50000) {
+ if (content.length > 524289) {
var ellipsis = $('<div/>').addClass('ellipsis');
ellipsis.html('(&#133;)');
ellipsis.appendTo('#imgframe');
diff --git a/l10n/cs.js b/l10n/cs.js
index 75642ba..5cadf8d 100644
--- a/l10n/cs.js
+++ b/l10n/cs.js
@@ -1,14 +1,14 @@
OC.L10N.register(
"files_texteditor",
{
- "saving..." : "ukládání...",
+ "saving..." : "ukládání…",
"saved!" : "uloženo!",
- "failed!" : "selhalo!",
+ "failed!" : "nezdařilo se!",
"Saved" : "Uloženo",
"There was a problem saving your changes. Click to resume editing." : "Došlo k chybě při ukládání změn. Klikněte pro pokračování v úpravách.",
"An error occurred!" : "Nastala chyba!",
"Edit" : "Upravit",
- "Mixed" : "Smíšený",
+ "Mixed" : "Smíšené",
"Preview" : "Náhled",
"New text file" : "Nový textový soubor",
"New text file.txt" : "Nový textový soubor.txt",
@@ -16,13 +16,17 @@ OC.L10N.register(
"This file is too big to be opened. Please download the file instead." : "Soubor je pro otevření příliš veliký. Namísto otevření ho stáhněte.",
"Cannot read the file." : "Soubor nelze přečíst.",
"Invalid file path supplied." : "Zadána neplatná cesta k souboru.",
- "The file is locked." : "Soubor je uzamčen.",
+ "The file is locked." : "Soubor je uzamčený.",
"An internal server error occurred." : "Došlo k interní chybě serveru.",
- "You can not write to a folder" : "Do tohoto adresáře nemůžete nahrávat ",
+ "You can not write to a folder" : "Do této složky nemůžete nahrávat ",
"Cannot save file as it has been modified since opening" : "Soubor nelze uložit, protože byl od otevření upraven",
+ "Could not write to file." : "Do souboru se nedaří zapsat.",
"Insufficient permissions" : "Nedostatečná oprávnění",
"File path not supplied" : "Nebyla dodána cesta k souboru",
"File mtime not supplied" : "Nebyl dodán čas změny souboru",
+ "Share not found" : "Sdílení nenalezeno",
+ "You are not authorized to open this share" : "Nejste oprávněni otevírat toto sdílení",
+ "Invalid range request" : "Požadavek na neplatný rozsah",
"Text editor" : "Textový editor"
},
-"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;");
+"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;");
diff --git a/l10n/cs.json b/l10n/cs.json
index 49efb77..2101348 100644
--- a/l10n/cs.json
+++ b/l10n/cs.json
@@ -1,12 +1,12 @@
{ "translations": {
- "saving..." : "ukládání...",
+ "saving..." : "ukládání…",
"saved!" : "uloženo!",
- "failed!" : "selhalo!",
+ "failed!" : "nezdařilo se!",
"Saved" : "Uloženo",
"There was a problem saving your changes. Click to resume editing." : "Došlo k chybě při ukládání změn. Klikněte pro pokračování v úpravách.",
"An error occurred!" : "Nastala chyba!",
"Edit" : "Upravit",
- "Mixed" : "Smíšený",
+ "Mixed" : "Smíšené",
"Preview" : "Náhled",
"New text file" : "Nový textový soubor",
"New text file.txt" : "Nový textový soubor.txt",
@@ -14,13 +14,17 @@
"This file is too big to be opened. Please download the file instead." : "Soubor je pro otevření příliš veliký. Namísto otevření ho stáhněte.",
"Cannot read the file." : "Soubor nelze přečíst.",
"Invalid file path supplied." : "Zadána neplatná cesta k souboru.",
- "The file is locked." : "Soubor je uzamčen.",
+ "The file is locked." : "Soubor je uzamčený.",
"An internal server error occurred." : "Došlo k interní chybě serveru.",
- "You can not write to a folder" : "Do tohoto adresáře nemůžete nahrávat ",
+ "You can not write to a folder" : "Do této složky nemůžete nahrávat ",
"Cannot save file as it has been modified since opening" : "Soubor nelze uložit, protože byl od otevření upraven",
+ "Could not write to file." : "Do souboru se nedaří zapsat.",
"Insufficient permissions" : "Nedostatečná oprávnění",
"File path not supplied" : "Nebyla dodána cesta k souboru",
"File mtime not supplied" : "Nebyl dodán čas změny souboru",
+ "Share not found" : "Sdílení nenalezeno",
+ "You are not authorized to open this share" : "Nejste oprávněni otevírat toto sdílení",
+ "Invalid range request" : "Požadavek na neplatný rozsah",
"Text editor" : "Textový editor"
-},"pluralForm" :"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"
+},"pluralForm" :"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;"
} \ No newline at end of file
diff --git a/l10n/da.js b/l10n/da.js
index f3402ae..5933b1a 100644
--- a/l10n/da.js
+++ b/l10n/da.js
@@ -23,6 +23,8 @@ OC.L10N.register(
"Insufficient permissions" : "Utilstrækkeligt med rettigheder",
"File path not supplied" : "Filstien er ikke angivet",
"File mtime not supplied" : "Filen mtime er ikke anvist",
+ "Share not found" : "Delt fil ikke fundet",
+ "You are not authorized to open this share" : "Du har ikke adgang til at åbne denne delte fil",
"Text editor" : "Tekst editor"
},
"nplurals=2; plural=(n != 1);");
diff --git a/l10n/da.json b/l10n/da.json
index 2e64de0..ad49cf5 100644
--- a/l10n/da.json
+++ b/l10n/da.json
@@ -21,6 +21,8 @@
"Insufficient permissions" : "Utilstrækkeligt med rettigheder",
"File path not supplied" : "Filstien er ikke angivet",
"File mtime not supplied" : "Filen mtime er ikke anvist",
+ "Share not found" : "Delt fil ikke fundet",
+ "You are not authorized to open this share" : "Du har ikke adgang til at åbne denne delte fil",
"Text editor" : "Tekst editor"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
} \ No newline at end of file
diff --git a/l10n/de.js b/l10n/de.js
index c27d686..543123d 100644
--- a/l10n/de.js
+++ b/l10n/de.js
@@ -20,12 +20,14 @@ OC.L10N.register(
"An internal server error occurred." : "Es ist ein interner Fehler aufgetreten.",
"You can not write to a folder" : "Du kannst nicht in einen Ordner schreiben",
"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",
+ "Could not write to file." : "Konnte Datei nicht schreiben.",
"Insufficient permissions" : "Nicht ausreichende Berechtigungen",
"File path not supplied" : "Dateipfad nicht angegeben",
"File mtime not supplied" : "Dateiänderungsdatum nicht angegeben",
"Share not found" : "Freigabe nicht gefunden",
"You are not authorized to open this share" : "Du darfst diese Freigabe nicht öffnen",
"Invalid range request" : "Ungültige Bereichsanfrage",
- "Text editor" : "Text-Editor"
+ "Text editor" : "Text-Editor",
+ "This application enables Nextcloud users to open, save and edit text files in the web browser. If enabled, an entry in the New button at the top of the web browser the Text file entry appears. When clicked, a new text file opens in the browser and the file can be saved into the current Nextcloud directory. Further, when a text file is clicked in the web browser, it will be opened and editable. If the privileges allow, a user can also edit shared files and save these changes back into the web browser.\nMore information is available in the text editor documentation." : "Diese App ermöglicht es den Nextcloud-Nutzern, Textdateien im Browser zu öffnen, zu bearbeiten und zu speichern. Wenn aktiviert, wird oben im Dateimenü ein Erstellen-Button eingeblendet. Beim Klicken auf Erstellen wird eine neue Textdatei im Browser geöffnet, die bearbeitet und im aktuellen Nextcloud-Ordner gespeichert werden kann. Beim Klick auf eine Textdatei wird diese im Browser geöffnet. Sofern der Nutzer eine entsprechende Berechtigung hat, kann er die Datei auch bearbeiten und speichern.\nWeitere Informationen sind in der Text-Editor Dokumentation zu finden."
},
"nplurals=2; plural=(n != 1);");
diff --git a/l10n/de.json b/l10n/de.json
index d0634a8..e47972d 100644
--- a/l10n/de.json
+++ b/l10n/de.json
@@ -18,12 +18,14 @@
"An internal server error occurred." : "Es ist ein interner Fehler aufgetreten.",
"You can not write to a folder" : "Du kannst nicht in einen Ordner schreiben",
"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",
+ "Could not write to file." : "Konnte Datei nicht schreiben.",
"Insufficient permissions" : "Nicht ausreichende Berechtigungen",
"File path not supplied" : "Dateipfad nicht angegeben",
"File mtime not supplied" : "Dateiänderungsdatum nicht angegeben",
"Share not found" : "Freigabe nicht gefunden",
"You are not authorized to open this share" : "Du darfst diese Freigabe nicht öffnen",
"Invalid range request" : "Ungültige Bereichsanfrage",
- "Text editor" : "Text-Editor"
+ "Text editor" : "Text-Editor",
+ "This application enables Nextcloud users to open, save and edit text files in the web browser. If enabled, an entry in the New button at the top of the web browser the Text file entry appears. When clicked, a new text file opens in the browser and the file can be saved into the current Nextcloud directory. Further, when a text file is clicked in the web browser, it will be opened and editable. If the privileges allow, a user can also edit shared files and save these changes back into the web browser.\nMore information is available in the text editor documentation." : "Diese App ermöglicht es den Nextcloud-Nutzern, Textdateien im Browser zu öffnen, zu bearbeiten und zu speichern. Wenn aktiviert, wird oben im Dateimenü ein Erstellen-Button eingeblendet. Beim Klicken auf Erstellen wird eine neue Textdatei im Browser geöffnet, die bearbeitet und im aktuellen Nextcloud-Ordner gespeichert werden kann. Beim Klick auf eine Textdatei wird diese im Browser geöffnet. Sofern der Nutzer eine entsprechende Berechtigung hat, kann er die Datei auch bearbeiten und speichern.\nWeitere Informationen sind in der Text-Editor Dokumentation zu finden."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
} \ No newline at end of file
diff --git a/l10n/de_DE.js b/l10n/de_DE.js
index 4882d80..b5f8cff 100644
--- a/l10n/de_DE.js
+++ b/l10n/de_DE.js
@@ -20,12 +20,14 @@ OC.L10N.register(
"An internal server error occurred." : "Es ist ein interner Fehler aufgetreten.",
"You can not write to a folder" : "Sie können nicht in einen Ordner schreiben",
"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",
+ "Could not write to file." : "Konnte Datei nicht schreiben.",
"Insufficient permissions" : "Nicht ausreichende Berechtigungen",
"File path not supplied" : "Dateipfad nicht angegeben",
"File mtime not supplied" : "Dateiänderungsdatum nicht angegeben",
"Share not found" : "Freigabe nicht gefunden",
"You are not authorized to open this share" : "Sie sind nicht berechtigt, diese Freigabe zu öffnen",
"Invalid range request" : "Ungültige Bereichsanfrage",
- "Text editor" : "Text-Editor"
+ "Text editor" : "Text-Editor",
+ "This application enables Nextcloud users to open, save and edit text files in the web browser. If enabled, an entry in the New button at the top of the web browser the Text file entry appears. When clicked, a new text file opens in the browser and the file can be saved into the current Nextcloud directory. Further, when a text file is clicked in the web browser, it will be opened and editable. If the privileges allow, a user can also edit shared files and save these changes back into the web browser.\nMore information is available in the text editor documentation." : "Diese App ermöglicht es den Nextcloud-Nutzern, Textdateien im Browser zu öffnen, zu bearbeiten und zu speichern. Wenn aktiviert, wird oben im Dateimenü ein Erstellen-Button eingeblendet. Beim Klicken auf Erstellen wird eine neue Textdatei im Browser geöffnet, die bearbeitet und im aktuellen Nextcloud-Ordner gespeichert werden kann. Beim Klick auf eine Textdatei wird diese im Browser geöffnet. Sofern der Nutzer eine entsprechende Berechtigung hat, kann er die Datei auch bearbeiten und speichern.\nWeitere Informationen sind in der Text-Editor Dokumentation zu finden."
},
"nplurals=2; plural=(n != 1);");
diff --git a/l10n/de_DE.json b/l10n/de_DE.json
index 265389d..9d84497 100644
--- a/l10n/de_DE.json
+++ b/l10n/de_DE.json
@@ -18,12 +18,14 @@
"An internal server error occurred." : "Es ist ein interner Fehler aufgetreten.",
"You can not write to a folder" : "Sie können nicht in einen Ordner schreiben",
"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",
+ "Could not write to file." : "Konnte Datei nicht schreiben.",
"Insufficient permissions" : "Nicht ausreichende Berechtigungen",
"File path not supplied" : "Dateipfad nicht angegeben",
"File mtime not supplied" : "Dateiänderungsdatum nicht angegeben",
"Share not found" : "Freigabe nicht gefunden",
"You are not authorized to open this share" : "Sie sind nicht berechtigt, diese Freigabe zu öffnen",
"Invalid range request" : "Ungültige Bereichsanfrage",
- "Text editor" : "Text-Editor"
+ "Text editor" : "Text-Editor",
+ "This application enables Nextcloud users to open, save and edit text files in the web browser. If enabled, an entry in the New button at the top of the web browser the Text file entry appears. When clicked, a new text file opens in the browser and the file can be saved into the current Nextcloud directory. Further, when a text file is clicked in the web browser, it will be opened and editable. If the privileges allow, a user can also edit shared files and save these changes back into the web browser.\nMore information is available in the text editor documentation." : "Diese App ermöglicht es den Nextcloud-Nutzern, Textdateien im Browser zu öffnen, zu bearbeiten und zu speichern. Wenn aktiviert, wird oben im Dateimenü ein Erstellen-Button eingeblendet. Beim Klicken auf Erstellen wird eine neue Textdatei im Browser geöffnet, die bearbeitet und im aktuellen Nextcloud-Ordner gespeichert werden kann. Beim Klick auf eine Textdatei wird diese im Browser geöffnet. Sofern der Nutzer eine entsprechende Berechtigung hat, kann er die Datei auch bearbeiten und speichern.\nWeitere Informationen sind in der Text-Editor Dokumentation zu finden."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
} \ No newline at end of file
diff --git a/l10n/en_GB.js b/l10n/en_GB.js
index 04d6351..ec75e93 100644
--- a/l10n/en_GB.js
+++ b/l10n/en_GB.js
@@ -26,6 +26,7 @@ OC.L10N.register(
"Share not found" : "Share not found",
"You are not authorized to open this share" : "You are not authorised to open this share",
"Invalid range request" : "Invalid range request",
- "Text editor" : "Text editor"
+ "Text editor" : "Text editor",
+ "This application enables Nextcloud users to open, save and edit text files in the web browser. If enabled, an entry in the New button at the top of the web browser the Text file entry appears. When clicked, a new text file opens in the browser and the file can be saved into the current Nextcloud directory. Further, when a text file is clicked in the web browser, it will be opened and editable. If the privileges allow, a user can also edit shared files and save these changes back into the web browser.\nMore information is available in the text editor documentation." : "This application enables Nextcloud users to open, save and edit text files in the web browser. If enabled, an entry in the New button at the top of the web browser the Text file entry appears. When clicked, a new text file opens in the browser and the file can be saved into the current Nextcloud directory. Further, when a text file is clicked in the web browser, it will be opened and editable. If the privileges allow, a user can also edit shared files and save these changes back into the web browser.\nMore information is available in the text editor documentation."
},
"nplurals=2; plural=(n != 1);");
diff --git a/l10n/en_GB.json b/l10n/en_GB.json
index 97b3ffe..81c974f 100644
--- a/l10n/en_GB.json
+++ b/l10n/en_GB.json
@@ -24,6 +24,7 @@
"Share not found" : "Share not found",
"You are not authorized to open this share" : "You are not authorised to open this share",
"Invalid range request" : "Invalid range request",
- "Text editor" : "Text editor"
+ "Text editor" : "Text editor",
+ "This application enables Nextcloud users to open, save and edit text files in the web browser. If enabled, an entry in the New button at the top of the web browser the Text file entry appears. When clicked, a new text file opens in the browser and the file can be saved into the current Nextcloud directory. Further, when a text file is clicked in the web browser, it will be opened and editable. If the privileges allow, a user can also edit shared files and save these changes back into the web browser.\nMore information is available in the text editor documentation." : "This application enables Nextcloud users to open, save and edit text files in the web browser. If enabled, an entry in the New button at the top of the web browser the Text file entry appears. When clicked, a new text file opens in the browser and the file can be saved into the current Nextcloud directory. Further, when a text file is clicked in the web browser, it will be opened and editable. If the privileges allow, a user can also edit shared files and save these changes back into the web browser.\nMore information is available in the text editor documentation."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
} \ No newline at end of file
diff --git a/l10n/eo.js b/l10n/eo.js
index 0dd9e48..f891903 100644
--- a/l10n/eo.js
+++ b/l10n/eo.js
@@ -6,11 +6,22 @@ OC.L10N.register(
"failed!" : "malsukcesis!",
"Saved" : "Konservita",
"An error occurred!" : "Eraro okazis!",
+ "Edit" : "Redakti",
+ "Mixed" : "Hibrida",
+ "Preview" : "Antaŭvidi",
+ "New text file" : "Nova tekstodosiero",
"New text file.txt" : "Nova tekstodosiero.txt",
+ "You can not open a folder" : "Ne povas malfermi dosierujo",
"This file is too big to be opened. Please download the file instead." : "La dosiero tro grandas por malfermi. Bonvolu elŝuti la dosieron anstataŭe.",
"Cannot read the file." : "Ne legeblas la dosiero.",
+ "The file is locked." : "La dosiero estas ŝlosa.",
"An internal server error occurred." : "Ena servileraro okazis.",
+ "You can not write to a folder" : "Ne povas skribi al dosierujo",
"Cannot save file as it has been modified since opening" : "Ne konserveblas la dosiero ĉar ĝi modifiĝis post malfermo",
- "Insufficient permissions" : "Nesufiĉaj permesoj"
+ "Could not write to file." : "Ne povis skribi al dosiero.",
+ "Insufficient permissions" : "Nesufiĉaj permesoj",
+ "Share not found" : "Kunhavigo ne troviĝis",
+ "You are not authorized to open this share" : "Vi ne permesatas malfermi ĉi tion kunhavigon",
+ "Text editor" : "Teksta redaktilo"
},
"nplurals=2; plural=(n != 1);");
diff --git a/l10n/eo.json b/l10n/eo.json
index e9af523..8b3c823 100644
--- a/l10n/eo.json
+++ b/l10n/eo.json
@@ -4,11 +4,22 @@
"failed!" : "malsukcesis!",
"Saved" : "Konservita",
"An error occurred!" : "Eraro okazis!",
+ "Edit" : "Redakti",
+ "Mixed" : "Hibrida",
+ "Preview" : "Antaŭvidi",
+ "New text file" : "Nova tekstodosiero",
"New text file.txt" : "Nova tekstodosiero.txt",
+ "You can not open a folder" : "Ne povas malfermi dosierujo",
"This file is too big to be opened. Please download the file instead." : "La dosiero tro grandas por malfermi. Bonvolu elŝuti la dosieron anstataŭe.",
"Cannot read the file." : "Ne legeblas la dosiero.",
+ "The file is locked." : "La dosiero estas ŝlosa.",
"An internal server error occurred." : "Ena servileraro okazis.",
+ "You can not write to a folder" : "Ne povas skribi al dosierujo",
"Cannot save file as it has been modified since opening" : "Ne konserveblas la dosiero ĉar ĝi modifiĝis post malfermo",
- "Insufficient permissions" : "Nesufiĉaj permesoj"
+ "Could not write to file." : "Ne povis skribi al dosiero.",
+ "Insufficient permissions" : "Nesufiĉaj permesoj",
+ "Share not found" : "Kunhavigo ne troviĝis",
+ "You are not authorized to open this share" : "Vi ne permesatas malfermi ĉi tion kunhavigon",
+ "Text editor" : "Teksta redaktilo"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
} \ No newline at end of file
diff --git a/l10n/es.js b/l10n/es.js
index a5800b7..69a9564 100644
--- a/l10n/es.js
+++ b/l10n/es.js
@@ -20,12 +20,14 @@ OC.L10N.register(
"An internal server error occurred." : "Error interno del servidor",
"You can not write to a folder" : "No puedes escribir en una carpeta",
"Cannot save file as it has been modified since opening" : "No es posible guardar el archivo; pues ha sido modificado",
+ "Could not write to file." : "No se ha podido escribir en el archivo.",
"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)",
"Share not found" : "Recurso compartido no encontrado",
"You are not authorized to open this share" : "No estás autorizado a abrir este recurso compartido",
"Invalid range request" : "Petición de alcance inválido",
- "Text editor" : "Editor de texto"
+ "Text editor" : "Editor de texto",
+ "This application enables Nextcloud users to open, save and edit text files in the web browser. If enabled, an entry in the New button at the top of the web browser the Text file entry appears. When clicked, a new text file opens in the browser and the file can be saved into the current Nextcloud directory. Further, when a text file is clicked in the web browser, it will be opened and editable. If the privileges allow, a user can also edit shared files and save these changes back into the web browser.\nMore information is available in the text editor documentation." : "Esta aplicación permite a los usuarios de Nextcloud abrir, guardar y editar archivos de texto en el navegador. Si está activa, aparece una entrada Archivo de texto en el botón Nuevo en la parte superior del navegador. Al pulsarla, aparece un nuevo archivo de texto en el navegador y el archivo se guarda en el directorio actual de Nextcloud. Además, cuando se pulsa un archivo de texto en el navegador, se abrirá y se podrá editar. Si los privilegios lo permiten, un usuario también puede editar archivos compartidos y guardar estos cambios en el navegador.\nMás información disponible en la documentación del editor de texto."
},
"nplurals=2; plural=(n != 1);");
diff --git a/l10n/es.json b/l10n/es.json
index 1d655a7..fb2e93b 100644
--- a/l10n/es.json
+++ b/l10n/es.json
@@ -18,12 +18,14 @@
"An internal server error occurred." : "Error interno del servidor",
"You can not write to a folder" : "No puedes escribir en una carpeta",
"Cannot save file as it has been modified since opening" : "No es posible guardar el archivo; pues ha sido modificado",
+ "Could not write to file." : "No se ha podido escribir en el archivo.",
"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)",
"Share not found" : "Recurso compartido no encontrado",
"You are not authorized to open this share" : "No estás autorizado a abrir este recurso compartido",
"Invalid range request" : "Petición de alcance inválido",
- "Text editor" : "Editor de texto"
+ "Text editor" : "Editor de texto",
+ "This application enables Nextcloud users to open, save and edit text files in the web browser. If enabled, an entry in the New button at the top of the web browser the Text file entry appears. When clicked, a new text file opens in the browser and the file can be saved into the current Nextcloud directory. Further, when a text file is clicked in the web browser, it will be opened and editable. If the privileges allow, a user can also edit shared files and save these changes back into the web browser.\nMore information is available in the text editor documentation." : "Esta aplicación permite a los usuarios de Nextcloud abrir, guardar y editar archivos de texto en el navegador. Si está activa, aparece una entrada Archivo de texto en el botón Nuevo en la parte superior del navegador. Al pulsarla, aparece un nuevo archivo de texto en el navegador y el archivo se guarda en el directorio actual de Nextcloud. Además, cuando se pulsa un archivo de texto en el navegador, se abrirá y se podrá editar. Si los privilegios lo permiten, un usuario también puede editar archivos compartidos y guardar estos cambios en el navegador.\nMás información disponible en la documentación del editor de texto."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
} \ No newline at end of file
diff --git a/l10n/es_CL.js b/l10n/es_CL.js
index 4933759..f299823 100644
--- a/l10n/es_CL.js
+++ b/l10n/es_CL.js
@@ -23,6 +23,9 @@ OC.L10N.register(
"Insufficient permissions" : "Permisos insuficientes",
"File path not supplied" : "La ruta del archivo no fue proporcionada",
"File mtime not supplied" : "El archivo mtime no fue proporcionado",
+ "Share not found" : "No se encontró el elemento compartido",
+ "You are not authorized to open this share" : "No estas autorizado para abrir este elemento compartido",
+ "Invalid range request" : "Rango de solicitud invalido",
"Text editor" : "Editor de texto"
},
"nplurals=2; plural=(n != 1);");
diff --git a/l10n/es_CL.json b/l10n/es_CL.json
index 0119da0..1986b3a 100644
--- a/l10n/es_CL.json
+++ b/l10n/es_CL.json
@@ -21,6 +21,9 @@
"Insufficient permissions" : "Permisos insuficientes",
"File path not supplied" : "La ruta del archivo no fue proporcionada",
"File mtime not supplied" : "El archivo mtime no fue proporcionado",
+ "Share not found" : "No se encontró el elemento compartido",
+ "You are not authorized to open this share" : "No estas autorizado para abrir este elemento compartido",
+ "Invalid range request" : "Rango de solicitud invalido",
"Text editor" : "Editor de texto"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
} \ No newline at end of file
diff --git a/l10n/es_CO.js b/l10n/es_CO.js
index 4933759..f299823 100644
--- a/l10n/es_CO.js
+++ b/l10n/es_CO.js
@@ -23,6 +23,9 @@ OC.L10N.register(
"Insufficient permissions" : "Permisos insuficientes",
"File path not supplied" : "La ruta del archivo no fue proporcionada",
"File mtime not supplied" : "El archivo mtime no fue proporcionado",
+ "Share not found" : "No se encontró el elemento compartido",
+ "You are not authorized to open this share" : "No estas autorizado para abrir este elemento compartido",
+ "Invalid range request" : "Rango de solicitud invalido",
"Text editor" : "Editor de texto"
},
"nplurals=2; plural=(n != 1);");
diff --git a/l10n/es_CO.json b/l10n/es_CO.json
index 0119da0..1986b3a 100644
--- a/l10n/es_CO.json
+++ b/l10n/es_CO.json
@@ -21,6 +21,9 @@
"Insufficient permissions" : "Permisos insuficientes",
"File path not supplied" : "La ruta del archivo no fue proporcionada",
"File mtime not supplied" : "El archivo mtime no fue proporcionado",
+ "Share not found" : "No se encontró el elemento compartido",
+ "You are not authorized to open this share" : "No estas autorizado para abrir este elemento compartido",
+ "Invalid range request" : "Rango de solicitud invalido",
"Text editor" : "Editor de texto"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
} \ No newline at end of file
diff --git a/l10n/es_CR.js b/l10n/es_CR.js
index 4933759..f299823 100644
--- a/l10n/es_CR.js
+++ b/l10n/es_CR.js
@@ -23,6 +23,9 @@ OC.L10N.register(
"Insufficient permissions" : "Permisos insuficientes",
"File path not supplied" : "La ruta del archivo no fue proporcionada",
"File mtime not supplied" : "El archivo mtime no fue proporcionado",
+ "Share not found" : "No se encontró el elemento compartido",
+ "You are not authorized to open this share" : "No estas autorizado para abrir este elemento compartido",
+ "Invalid range request" : "Rango de solicitud invalido",
"Text editor" : "Editor de texto"
},
"nplurals=2; plural=(n != 1);");
diff --git a/l10n/es_CR.json b/l10n/es_CR.json
index 0119da0..1986b3a 100644
--- a/l10n/es_CR.json
+++ b/l10n/es_CR.json
@@ -21,6 +21,9 @@
"Insufficient permissions" : "Permisos insuficientes",
"File path not supplied" : "La ruta del archivo no fue proporcionada",
"File mtime not supplied" : "El archivo mtime no fue proporcionado",
+ "Share not found" : "No se encontró el elemento compartido",
+ "You are not authorized to open this share" : "No estas autorizado para abrir este elemento compartido",
+ "Invalid range request" : "Rango de solicitud invalido",
"Text editor" : "Editor de texto"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
} \ No newline at end of file
diff --git a/l10n/es_DO.js b/l10n/es_DO.js
index 4933759..f299823 100644
--- a/l10n/es_DO.js
+++ b/l10n/es_DO.js
@@ -23,6 +23,9 @@ OC.L10N.register(
"Insufficient permissions" : "Permisos insuficientes",
"File path not supplied" : "La ruta del archivo no fue proporcionada",
"File mtime not supplied" : "El archivo mtime no fue proporcionado",
+ "Share not found" : "No se encontró el elemento compartido",
+ "You are not authorized to open this share" : "No estas autorizado para abrir este elemento compartido",
+ "Invalid range request" : "Rango de solicitud invalido",
"Text editor" : "Editor de texto"
},
"nplurals=2; plural=(n != 1);");
diff --git a/l10n/es_DO.json b/l10n/es_DO.json
index 0119da0..1986b3a 100644
--- a/l10n/es_DO.json
+++ b/l10n/es_DO.json
@@ -21,6 +21,9 @@
"Insufficient permissions" : "Permisos insuficientes",
"File path not supplied" : "La ruta del archivo no fue proporcionada",
"File mtime not supplied" : "El archivo mtime no fue proporcionado",
+ "Share not found" : "No se encontró el elemento compartido",
+ "You are not authorized to open this share" : "No estas autorizado para abrir este elemento compartido",
+ "Invalid range request" : "Rango de solicitud invalido",
"Text editor" : "Editor de texto"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
} \ No newline at end of file
diff --git a/l10n/es_EC.js b/l10n/es_EC.js
index 4933759..f299823 100644
--- a/l10n/es_EC.js
+++ b/l10n/es_EC.js
@@ -23,6 +23,9 @@ OC.L10N.register(
"Insufficient permissions" : "Permisos insuficientes",
"File path not supplied" : "La ruta del archivo no fue proporcionada",
"File mtime not supplied" : "El archivo mtime no fue proporcionado",
+ "Share not found" : "No se encontró el elemento compartido",
+ "You are not authorized to open this share" : "No estas autorizado para abrir este elemento compartido",
+ "Invalid range request" : "Rango de solicitud invalido",
"Text editor" : "Editor de texto"
},
"nplurals=2; plural=(n != 1);");
diff --git a/l10n/es_EC.json b/l10n/es_EC.json
index 0119da0..1986b3a 100644
--- a/l10n/es_EC.json
+++ b/l10n/es_EC.json
@@ -21,6 +21,9 @@
"Insufficient permissions" : "Permisos insuficientes",
"File path not supplied" : "La ruta del archivo no fue proporcionada",
"File mtime not supplied" : "El archivo mtime no fue proporcionado",
+ "Share not found" : "No se encontró el elemento compartido",
+ "You are not authorized to open this share" : "No estas autorizado para abrir este elemento compartido",
+ "Invalid range request" : "Rango de solicitud invalido",
"Text editor" : "Editor de texto"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
} \ No newline at end of file
diff --git a/l10n/es_GT.js b/l10n/es_GT.js
index 4933759..f299823 100644
--- a/l10n/es_GT.js
+++ b/l10n/es_GT.js
@@ -23,6 +23,9 @@ OC.L10N.register(
"Insufficient permissions" : "Permisos insuficientes",
"File path not supplied" : "La ruta del archivo no fue proporcionada",
"File mtime not supplied" : "El archivo mtime no fue proporcionado",
+ "Share not found" : "No se encontró el elemento compartido",
+ "You are not authorized to open this share" : "No estas autorizado para abrir este elemento compartido",
+ "Invalid range request" : "Rango de solicitud invalido",
"Text editor" : "Editor de texto"
},
"nplurals=2; plural=(n != 1);");
diff --git a/l10n/es_GT.json b/l10n/es_GT.json
index 0119da0..1986b3a 100644
--- a/l10n/es_GT.json
+++ b/l10n/es_GT.json
@@ -21,6 +21,9 @@
"Insufficient permissions" : "Permisos insuficientes",
"File path not supplied" : "La ruta del archivo no fue proporcionada",
"File mtime not supplied" : "El archivo mtime no fue proporcionado",
+ "Share not found" : "No se encontró el elemento compartido",
+ "You are not authorized to open this share" : "No estas autorizado para abrir este elemento compartido",
+ "Invalid range request" : "Rango de solicitud invalido",
"Text editor" : "Editor de texto"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
} \ No newline at end of file
diff --git a/l10n/es_MX.js b/l10n/es_MX.js
index 4933759..2dcb97d 100644
--- a/l10n/es_MX.js
+++ b/l10n/es_MX.js
@@ -23,6 +23,10 @@ OC.L10N.register(
"Insufficient permissions" : "Permisos insuficientes",
"File path not supplied" : "La ruta del archivo no fue proporcionada",
"File mtime not supplied" : "El archivo mtime no fue proporcionado",
- "Text editor" : "Editor de texto"
+ "Share not found" : "No se encontró el elemento compartido",
+ "You are not authorized to open this share" : "No estas autorizado para abrir este elemento compartido",
+ "Invalid range request" : "Rango de solicitud invalido",
+ "Text editor" : "Editor de texto",
+ "This application enables Nextcloud users to open, save and edit text files in the web browser. If enabled, an entry in the New button at the top of the web browser the Text file entry appears. When clicked, a new text file opens in the browser and the file can be saved into the current Nextcloud directory. Further, when a text file is clicked in the web browser, it will be opened and editable. If the privileges allow, a user can also edit shared files and save these changes back into the web browser.\nMore information is available in the text editor documentation." : "Esta aplicación le permite a los usuarios de Nextcloud abrir, guardar y editar archivos de texto en el navegador web. Si se habilita, aparece el elemento de Texto en el botón Nuevo en la parte superior del navegador web. Al presionarlo, un nuevo archivo de texto se abre en el nabegador y el archivo puede ser guardado en el directorio actual de Nextcloud. Adicionalmente, cuando se hace click en un archivo desde el navegador, se abrirá y podrá ser editado. Si los privilegios lo permiten, un usuario tambien puede editar archivos compartidos y guardar estos cambiso de vuelta en el navegador. \nHay más información disponible en la documentación del editor de texto."
},
"nplurals=2; plural=(n != 1);");
diff --git a/l10n/es_MX.json b/l10n/es_MX.json
index 0119da0..3f8ad31 100644
--- a/l10n/es_MX.json
+++ b/l10n/es_MX.json
@@ -21,6 +21,10 @@
"Insufficient permissions" : "Permisos insuficientes",
"File path not supplied" : "La ruta del archivo no fue proporcionada",
"File mtime not supplied" : "El archivo mtime no fue proporcionado",
- "Text editor" : "Editor de texto"
+ "Share not found" : "No se encontró el elemento compartido",
+ "You are not authorized to open this share" : "No estas autorizado para abrir este elemento compartido",
+ "Invalid range request" : "Rango de solicitud invalido",
+ "Text editor" : "Editor de texto",
+ "This application enables Nextcloud users to open, save and edit text files in the web browser. If enabled, an entry in the New button at the top of the web browser the Text file entry appears. When clicked, a new text file opens in the browser and the file can be saved into the current Nextcloud directory. Further, when a text file is clicked in the web browser, it will be opened and editable. If the privileges allow, a user can also edit shared files and save these changes back into the web browser.\nMore information is available in the text editor documentation." : "Esta aplicación le permite a los usuarios de Nextcloud abrir, guardar y editar archivos de texto en el navegador web. Si se habilita, aparece el elemento de Texto en el botón Nuevo en la parte superior del navegador web. Al presionarlo, un nuevo archivo de texto se abre en el nabegador y el archivo puede ser guardado en el directorio actual de Nextcloud. Adicionalmente, cuando se hace click en un archivo desde el navegador, se abrirá y podrá ser editado. Si los privilegios lo permiten, un usuario tambien puede editar archivos compartidos y guardar estos cambiso de vuelta en el navegador. \nHay más información disponible en la documentación del editor de texto."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
} \ No newline at end of file
diff --git a/l10n/es_SV.js b/l10n/es_SV.js
index 4933759..f299823 100644
--- a/l10n/es_SV.js
+++ b/l10n/es_SV.js
@@ -23,6 +23,9 @@ OC.L10N.register(
"Insufficient permissions" : "Permisos insuficientes",
"File path not supplied" : "La ruta del archivo no fue proporcionada",
"File mtime not supplied" : "El archivo mtime no fue proporcionado",
+ "Share not found" : "No se encontró el elemento compartido",
+ "You are not authorized to open this share" : "No estas autorizado para abrir este elemento compartido",
+ "Invalid range request" : "Rango de solicitud invalido",
"Text editor" : "Editor de texto"
},
"nplurals=2; plural=(n != 1);");
diff --git a/l10n/es_SV.json b/l10n/es_SV.json
index 0119da0..1986b3a 100644
--- a/l10n/es_SV.json
+++ b/l10n/es_SV.json
@@ -21,6 +21,9 @@
"Insufficient permissions" : "Permisos insuficientes",
"File path not supplied" : "La ruta del archivo no fue proporcionada",
"File mtime not supplied" : "El archivo mtime no fue proporcionado",
+ "Share not found" : "No se encontró el elemento compartido",
+ "You are not authorized to open this share" : "No estas autorizado para abrir este elemento compartido",
+ "Invalid range request" : "Rango de solicitud invalido",
"Text editor" : "Editor de texto"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
} \ No newline at end of file
diff --git a/l10n/fa.js b/l10n/fa.js
index 98bd4ad..3bff64d 100644
--- a/l10n/fa.js
+++ b/l10n/fa.js
@@ -15,4 +15,4 @@ OC.L10N.register(
"File path not supplied" : "مسیر فایل داده نشده است",
"File mtime not supplied" : "mtime فایل داده نشده است"
},
-"nplurals=1; plural=0;");
+"nplurals=2; plural=(n > 1);");
diff --git a/l10n/fa.json b/l10n/fa.json
index 5468c06..b980243 100644
--- a/l10n/fa.json
+++ b/l10n/fa.json
@@ -12,5 +12,5 @@
"Insufficient permissions" : "دسترسی کافی نیست",
"File path not supplied" : "مسیر فایل داده نشده است",
"File mtime not supplied" : "mtime فایل داده نشده است"
-},"pluralForm" :"nplurals=1; plural=0;"
+},"pluralForm" :"nplurals=2; plural=(n > 1);"
} \ No newline at end of file
diff --git a/l10n/fi.js b/l10n/fi.js
index 1b7c660..696c244 100644
--- a/l10n/fi.js
+++ b/l10n/fi.js
@@ -20,9 +20,12 @@ OC.L10N.register(
"An internal server error occurred." : "Tapahtui palvelimen sisäinen virhe.",
"You can not write to a folder" : "Et voi kirjoittaa kansioon",
"Cannot save file as it has been modified since opening" : "Tiedostoa ei voi tallentaa, koska sitä on muokattu avaamisen jälkeen",
+ "Could not write to file." : "Tiedostoon ei voitu kirjoittaa.",
"Insufficient permissions" : "Oikeudet eivät riitä",
"File path not supplied" : "TIedoston polkua ei annettu",
"File mtime not supplied" : "Tiedoston mtime-arvoa ei ole annettu",
+ "Share not found" : "Jakoa ei löytynyt",
+ "You are not authorized to open this share" : "Sinulla ei ole valtuuksia avata tätä jakoa",
"Text editor" : "Tekstimuokkain"
},
"nplurals=2; plural=(n != 1);");
diff --git a/l10n/fi.json b/l10n/fi.json
index 0a5cfbf..1a367cb 100644
--- a/l10n/fi.json
+++ b/l10n/fi.json
@@ -18,9 +18,12 @@
"An internal server error occurred." : "Tapahtui palvelimen sisäinen virhe.",
"You can not write to a folder" : "Et voi kirjoittaa kansioon",
"Cannot save file as it has been modified since opening" : "Tiedostoa ei voi tallentaa, koska sitä on muokattu avaamisen jälkeen",
+ "Could not write to file." : "Tiedostoon ei voitu kirjoittaa.",
"Insufficient permissions" : "Oikeudet eivät riitä",
"File path not supplied" : "TIedoston polkua ei annettu",
"File mtime not supplied" : "Tiedoston mtime-arvoa ei ole annettu",
+ "Share not found" : "Jakoa ei löytynyt",
+ "You are not authorized to open this share" : "Sinulla ei ole valtuuksia avata tätä jakoa",
"Text editor" : "Tekstimuokkain"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
} \ No newline at end of file
diff --git a/l10n/fr.js b/l10n/fr.js
index 2b13e72..60e9da8 100644
--- a/l10n/fr.js
+++ b/l10n/fr.js
@@ -20,12 +20,14 @@ OC.L10N.register(
"An internal server error occurred." : "Une erreur interne au serveur est survenue.",
"You can not write to a folder" : "Vous ne pouvez pas écrire dans ce dossier",
"Cannot save file as it has been modified since opening" : "Impossible de sauvegarder le fichier, il a été modifié entre temps",
+ "Could not write to file." : "Impossible d'écrire dans le fichier.",
"Insufficient permissions" : "Permissions insuffisantes",
"File path not supplied" : "Chemin du fichier non fourni",
"File mtime not supplied" : "mtime du fichier non fourni",
"Share not found" : "Partage non trouvé",
"You are not authorized to open this share" : "Vous n'êtes pas autorisé à ouvrir ce partage",
"Invalid range request" : "Demande de plage non valide",
- "Text editor" : "Éditeur de texte"
+ "Text editor" : "Éditeur de texte",
+ "This application enables Nextcloud users to open, save and edit text files in the web browser. If enabled, an entry in the New button at the top of the web browser the Text file entry appears. When clicked, a new text file opens in the browser and the file can be saved into the current Nextcloud directory. Further, when a text file is clicked in the web browser, it will be opened and editable. If the privileges allow, a user can also edit shared files and save these changes back into the web browser.\nMore information is available in the text editor documentation." : "Cette application permet aux utilisateurs de Nextcloud d'ouvrir, enregistrer et éditer des fichiers texte dans le navigateur Web. Si activé, une entrée dans le bouton Nouveau en haut du navigateur Web l'entrée du fichier texte apparaît. Lorsque vous cliquez dessus, un nouveau fichier texte s'ouvre dans le navigateur et le fichier peut être enregistré dans le répertoire Nextcloud actuel. En outre, lorsqu'un fichier texte est cliqué dans le navigateur Web, il sera ouvert et modifiable. Si les privilèges le permettent, un utilisateur peut également modifier les fichiers partagés et enregistrer ces modifications dans le navigateur Web.\nPlus d'informations sont disponibles dans la documentation de l'éditeur de texte."
},
"nplurals=2; plural=(n > 1);");
diff --git a/l10n/fr.json b/l10n/fr.json
index 438d54f..a3ea102 100644
--- a/l10n/fr.json
+++ b/l10n/fr.json
@@ -18,12 +18,14 @@
"An internal server error occurred." : "Une erreur interne au serveur est survenue.",
"You can not write to a folder" : "Vous ne pouvez pas écrire dans ce dossier",
"Cannot save file as it has been modified since opening" : "Impossible de sauvegarder le fichier, il a été modifié entre temps",
+ "Could not write to file." : "Impossible d'écrire dans le fichier.",
"Insufficient permissions" : "Permissions insuffisantes",
"File path not supplied" : "Chemin du fichier non fourni",
"File mtime not supplied" : "mtime du fichier non fourni",
"Share not found" : "Partage non trouvé",
"You are not authorized to open this share" : "Vous n'êtes pas autorisé à ouvrir ce partage",
"Invalid range request" : "Demande de plage non valide",
- "Text editor" : "Éditeur de texte"
+ "Text editor" : "Éditeur de texte",
+ "This application enables Nextcloud users to open, save and edit text files in the web browser. If enabled, an entry in the New button at the top of the web browser the Text file entry appears. When clicked, a new text file opens in the browser and the file can be saved into the current Nextcloud directory. Further, when a text file is clicked in the web browser, it will be opened and editable. If the privileges allow, a user can also edit shared files and save these changes back into the web browser.\nMore information is available in the text editor documentation." : "Cette application permet aux utilisateurs de Nextcloud d'ouvrir, enregistrer et éditer des fichiers texte dans le navigateur Web. Si activé, une entrée dans le bouton Nouveau en haut du navigateur Web l'entrée du fichier texte apparaît. Lorsque vous cliquez dessus, un nouveau fichier texte s'ouvre dans le navigateur et le fichier peut être enregistré dans le répertoire Nextcloud actuel. En outre, lorsqu'un fichier texte est cliqué dans le navigateur Web, il sera ouvert et modifiable. Si les privilèges le permettent, un utilisateur peut également modifier les fichiers partagés et enregistrer ces modifications dans le navigateur Web.\nPlus d'informations sont disponibles dans la documentation de l'éditeur de texte."
},"pluralForm" :"nplurals=2; plural=(n > 1);"
} \ No newline at end of file
diff --git a/l10n/he.js b/l10n/he.js
index 3412c41..bc65eb5 100644
--- a/l10n/he.js
+++ b/l10n/he.js
@@ -23,6 +23,9 @@ OC.L10N.register(
"Insufficient permissions" : "אין הרשאות מספקות",
"File path not supplied" : "נתיב קובץ לא סופק",
"File mtime not supplied" : "קובץ mtime לא סופק",
+ "Share not found" : "השיתוף לא נמצא",
+ "You are not authorized to open this share" : "אין לך הרשאה לפתוח את השיתוף הזה",
+ "Invalid range request" : "בקשת הטווח שגויה",
"Text editor" : "עורך טקסט"
},
-"nplurals=2; plural=(n != 1);");
+"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;");
diff --git a/l10n/he.json b/l10n/he.json
index 1fe73d4..2be8bfc 100644
--- a/l10n/he.json
+++ b/l10n/he.json
@@ -21,6 +21,9 @@
"Insufficient permissions" : "אין הרשאות מספקות",
"File path not supplied" : "נתיב קובץ לא סופק",
"File mtime not supplied" : "קובץ mtime לא סופק",
+ "Share not found" : "השיתוף לא נמצא",
+ "You are not authorized to open this share" : "אין לך הרשאה לפתוח את השיתוף הזה",
+ "Invalid range request" : "בקשת הטווח שגויה",
"Text editor" : "עורך טקסט"
-},"pluralForm" :"nplurals=2; plural=(n != 1);"
+},"pluralForm" :"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;"
} \ No newline at end of file
diff --git a/l10n/is.js b/l10n/is.js
index 52a5d95..e01cc06 100644
--- a/l10n/is.js
+++ b/l10n/is.js
@@ -20,6 +20,7 @@ OC.L10N.register(
"An internal server error occurred." : "Innri villa kom upp.",
"You can not write to a folder" : "Þú getur ekki skrifað í möppu",
"Cannot save file as it has been modified since opening" : "Get ekki vistað skrána þar sem henni hefur verið breytt síðan hún var opnuð",
+ "Could not write to file." : "Ekki tókst að skrifa í skrá.",
"Insufficient permissions" : "Ekki næg réttindi",
"File path not supplied" : "Skrá slóð fylgir ekki",
"File mtime not supplied" : "mtime skrá fylgir ekki",
diff --git a/l10n/is.json b/l10n/is.json
index 3c49f95..e5f7ea0 100644
--- a/l10n/is.json
+++ b/l10n/is.json
@@ -18,6 +18,7 @@
"An internal server error occurred." : "Innri villa kom upp.",
"You can not write to a folder" : "Þú getur ekki skrifað í möppu",
"Cannot save file as it has been modified since opening" : "Get ekki vistað skrána þar sem henni hefur verið breytt síðan hún var opnuð",
+ "Could not write to file." : "Ekki tókst að skrifa í skrá.",
"Insufficient permissions" : "Ekki næg réttindi",
"File path not supplied" : "Skrá slóð fylgir ekki",
"File mtime not supplied" : "mtime skrá fylgir ekki",
diff --git a/l10n/it.js b/l10n/it.js
index 27291a8..6aaf990 100644
--- a/l10n/it.js
+++ b/l10n/it.js
@@ -20,12 +20,14 @@ OC.L10N.register(
"An internal server error occurred." : "Si è verificato un errore interno.",
"You can not write to a folder" : "Non puoi scrivere in una cartella",
"Cannot save file as it has been modified since opening" : "Impossibile salvare il file poiché è stato modificato dopo la sua apertura",
+ "Could not write to file." : "Impossibile scrivere su file.",
"Insufficient permissions" : "Permessi insufficienti",
"File path not supplied" : "Percorso del file non fornito",
"File mtime not supplied" : "mtime del file non fornito",
"Share not found" : "Condivisione non trovata",
"You are not authorized to open this share" : "Non sei autorizzato ad aprire questa condivisione",
"Invalid range request" : "Richiesta di intervallo non valida",
- "Text editor" : "Editor di testo"
+ "Text editor" : "Editor di testo",
+ "This application enables Nextcloud users to open, save and edit text files in the web browser. If enabled, an entry in the New button at the top of the web browser the Text file entry appears. When clicked, a new text file opens in the browser and the file can be saved into the current Nextcloud directory. Further, when a text file is clicked in the web browser, it will be opened and editable. If the privileges allow, a user can also edit shared files and save these changes back into the web browser.\nMore information is available in the text editor documentation." : "Questa applicazione consente agli utenti di Nextcloud di aprire, salvare e modificare file di testo nel browser web. Se abilitata, apparirà una voce File di testo nel pulsante Nuovo nella parte alta del browser web. Se selezionata, un nuovo file di testo si apre nel browser e il file può essere salvato nella cartella attuale di Nextcloud. Inoltre, facendo clic su un file di testo nel browser web, il file sarà aperto e modificabile. Se i permessi lo consentono, un utente può modificare anche i file condivisi e salvare tali modifiche nel browser web.\nAltre informazioni sono disponibili nella documentazione di Editor di testo."
},
"nplurals=2; plural=(n != 1);");
diff --git a/l10n/it.json b/l10n/it.json
index c17d282..1cb9e93 100644
--- a/l10n/it.json
+++ b/l10n/it.json
@@ -18,12 +18,14 @@
"An internal server error occurred." : "Si è verificato un errore interno.",
"You can not write to a folder" : "Non puoi scrivere in una cartella",
"Cannot save file as it has been modified since opening" : "Impossibile salvare il file poiché è stato modificato dopo la sua apertura",
+ "Could not write to file." : "Impossibile scrivere su file.",
"Insufficient permissions" : "Permessi insufficienti",
"File path not supplied" : "Percorso del file non fornito",
"File mtime not supplied" : "mtime del file non fornito",
"Share not found" : "Condivisione non trovata",
"You are not authorized to open this share" : "Non sei autorizzato ad aprire questa condivisione",
"Invalid range request" : "Richiesta di intervallo non valida",
- "Text editor" : "Editor di testo"
+ "Text editor" : "Editor di testo",
+ "This application enables Nextcloud users to open, save and edit text files in the web browser. If enabled, an entry in the New button at the top of the web browser the Text file entry appears. When clicked, a new text file opens in the browser and the file can be saved into the current Nextcloud directory. Further, when a text file is clicked in the web browser, it will be opened and editable. If the privileges allow, a user can also edit shared files and save these changes back into the web browser.\nMore information is available in the text editor documentation." : "Questa applicazione consente agli utenti di Nextcloud di aprire, salvare e modificare file di testo nel browser web. Se abilitata, apparirà una voce File di testo nel pulsante Nuovo nella parte alta del browser web. Se selezionata, un nuovo file di testo si apre nel browser e il file può essere salvato nella cartella attuale di Nextcloud. Inoltre, facendo clic su un file di testo nel browser web, il file sarà aperto e modificabile. Se i permessi lo consentono, un utente può modificare anche i file condivisi e salvare tali modifiche nel browser web.\nAltre informazioni sono disponibili nella documentazione di Editor di testo."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
} \ No newline at end of file
diff --git a/l10n/ja.js b/l10n/ja.js
index afe29a5..8bfe22e 100644
--- a/l10n/ja.js
+++ b/l10n/ja.js
@@ -2,9 +2,9 @@ OC.L10N.register(
"files_texteditor",
{
"saving..." : "保存中...",
- "saved!" : "保存されました!",
+ "saved!" : "保存しました!",
"failed!" : " 失敗しました!",
- "Saved" : "保存されました",
+ "Saved" : "保存しました",
"There was a problem saving your changes. Click to resume editing." : "変更を保存する際に問題が発生しました.クリックして編集を再開する.",
"An error occurred!" : "エラーが発生しました。",
"Edit" : "編集",
diff --git a/l10n/ja.json b/l10n/ja.json
index 14f3441..c52fc13 100644
--- a/l10n/ja.json
+++ b/l10n/ja.json
@@ -1,8 +1,8 @@
{ "translations": {
"saving..." : "保存中...",
- "saved!" : "保存されました!",
+ "saved!" : "保存しました!",
"failed!" : " 失敗しました!",
- "Saved" : "保存されました",
+ "Saved" : "保存しました",
"There was a problem saving your changes. Click to resume editing." : "変更を保存する際に問題が発生しました.クリックして編集を再開する.",
"An error occurred!" : "エラーが発生しました。",
"Edit" : "編集",
diff --git a/l10n/ka_GE.js b/l10n/ka_GE.js
index e60ffb1..69ebd11 100644
--- a/l10n/ka_GE.js
+++ b/l10n/ka_GE.js
@@ -25,4 +25,4 @@ OC.L10N.register(
"File mtime not supplied" : "ფაილი mtime არაა მოცემული",
"Text editor" : "ტექსტ-ედიტორი"
},
-"nplurals=1; plural=0;");
+"nplurals=2; plural=(n!=1);");
diff --git a/l10n/ka_GE.json b/l10n/ka_GE.json
index 7484f0b..c1b3974 100644
--- a/l10n/ka_GE.json
+++ b/l10n/ka_GE.json
@@ -22,5 +22,5 @@
"File path not supplied" : "ფაილის მისამართი არაა მოცემული",
"File mtime not supplied" : "ფაილი mtime არაა მოცემული",
"Text editor" : "ტექსტ-ედიტორი"
-},"pluralForm" :"nplurals=1; plural=0;"
+},"pluralForm" :"nplurals=2; plural=(n!=1);"
} \ No newline at end of file
diff --git a/l10n/lt_LT.js b/l10n/lt_LT.js
index dfe3c52..a004659 100644
--- a/l10n/lt_LT.js
+++ b/l10n/lt_LT.js
@@ -25,4 +25,4 @@ OC.L10N.register(
"File mtime not supplied" : "Failo modifikavimo laikas nepateiktas",
"Text editor" : "Tekstų redaktorius"
},
-"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);");
+"nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);");
diff --git a/l10n/lt_LT.json b/l10n/lt_LT.json
index 5aab713..2ceadfb 100644
--- a/l10n/lt_LT.json
+++ b/l10n/lt_LT.json
@@ -22,5 +22,5 @@
"File path not supplied" : "Nepateiktas failo kelias",
"File mtime not supplied" : "Failo modifikavimo laikas nepateiktas",
"Text editor" : "Tekstų redaktorius"
-},"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);"
+},"pluralForm" :"nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);"
} \ No newline at end of file
diff --git a/l10n/nb.js b/l10n/nb.js
index 7c2d207..ea60dd2 100644
--- a/l10n/nb.js
+++ b/l10n/nb.js
@@ -1,7 +1,7 @@
OC.L10N.register(
"files_texteditor",
{
- "saving..." : "lagrer…",
+ "saving..." : "lagrer …",
"saved!" : "lagret!",
"failed!" : "mislyktes!",
"Saved" : "Lagret",
diff --git a/l10n/nb.json b/l10n/nb.json
index c5d3941..5e3b470 100644
--- a/l10n/nb.json
+++ b/l10n/nb.json
@@ -1,5 +1,5 @@
{ "translations": {
- "saving..." : "lagrer…",
+ "saving..." : "lagrer …",
"saved!" : "lagret!",
"failed!" : "mislyktes!",
"Saved" : "Lagret",
diff --git a/l10n/pl.js b/l10n/pl.js
index a192528..44a08d7 100644
--- a/l10n/pl.js
+++ b/l10n/pl.js
@@ -1,7 +1,7 @@
OC.L10N.register(
"files_texteditor",
{
- "saving..." : "zapisywanie...",
+ "saving..." : "zapisywanie…",
"saved!" : "zapisano!",
"failed!" : "nie powiodło się!",
"Saved" : "Zapisano",
diff --git a/l10n/pl.json b/l10n/pl.json
index eeef5cf..79f9d57 100644
--- a/l10n/pl.json
+++ b/l10n/pl.json
@@ -1,5 +1,5 @@
{ "translations": {
- "saving..." : "zapisywanie...",
+ "saving..." : "zapisywanie…",
"saved!" : "zapisano!",
"failed!" : "nie powiodło się!",
"Saved" : "Zapisano",
diff --git a/l10n/pt_BR.js b/l10n/pt_BR.js
index 692497c..18a75e9 100644
--- a/l10n/pt_BR.js
+++ b/l10n/pt_BR.js
@@ -11,7 +11,7 @@ OC.L10N.register(
"Mixed" : "Misturado",
"Preview" : "Visualizar",
"New text file" : "Novo arquivo de texto",
- "New text file.txt" : "Novo arquivo de texto.txt",
+ "New text file.txt" : "Novo arquiv file.txt",
"You can not open a folder" : "Você não pode abrir uma pasta",
"This file is too big to be opened. Please download the file instead." : "Este arquivo é muito grande para ser aberto. Por favor baixe o arquivo ao invés de abri-lo.",
"Cannot read the file." : "Não é possível ler o arquivo.",
@@ -20,12 +20,14 @@ OC.L10N.register(
"An internal server error occurred." : "Ocorreu um erro interno do servidor.",
"You can not write to a folder" : "Você não pode escrever em uma pasta",
"Cannot save file as it has been modified since opening" : "Não é possível salvar este arquivo pois ele foi modificado desde sua abertura",
+ "Could not write to file." : "Não foi possível escrever o arquivo.",
"Insufficient permissions" : "Permissões insuficientes",
"File path not supplied" : "Caminho do arquivo não fornecido",
"File mtime not supplied" : "arquivo mtime não fornecido",
"Share not found" : "Compartilhamento não encontrado",
"You are not authorized to open this share" : "Sem autorização para abrir este compartilhamento",
"Invalid range request" : "Requisição inválida de intervalo ",
- "Text editor" : "Editor de texto"
+ "Text editor" : "Editor de texto",
+ "This application enables Nextcloud users to open, save and edit text files in the web browser. If enabled, an entry in the New button at the top of the web browser the Text file entry appears. When clicked, a new text file opens in the browser and the file can be saved into the current Nextcloud directory. Further, when a text file is clicked in the web browser, it will be opened and editable. If the privileges allow, a user can also edit shared files and save these changes back into the web browser.\nMore information is available in the text editor documentation." : "Este aplicativo permite que os usuários do Nextcloud abram, salvem e editem arquivos de texto no navegador da web. Se ativado, uma entrada no botão Novo na parte superior do navegador da Web aparece na entrada do arquivo de texto. Quando clicado, um novo arquivo de texto é aberto no navegador e o arquivo pode ser salvo no diretório Nextcloud atual. Além disso, quando um arquivo de texto é clicado no navegador da Web, ele será aberto e editável. Se os privilégios permitirem, o usuário também pode editar arquivos compartilhados e salvar essas alterações no navegador da web.\nMais informações estão disponíveis na documentação do editor de texto."
},
"nplurals=2; plural=(n > 1);");
diff --git a/l10n/pt_BR.json b/l10n/pt_BR.json
index 3390220..1fdaf90 100644
--- a/l10n/pt_BR.json
+++ b/l10n/pt_BR.json
@@ -9,7 +9,7 @@
"Mixed" : "Misturado",
"Preview" : "Visualizar",
"New text file" : "Novo arquivo de texto",
- "New text file.txt" : "Novo arquivo de texto.txt",
+ "New text file.txt" : "Novo arquiv file.txt",
"You can not open a folder" : "Você não pode abrir uma pasta",
"This file is too big to be opened. Please download the file instead." : "Este arquivo é muito grande para ser aberto. Por favor baixe o arquivo ao invés de abri-lo.",
"Cannot read the file." : "Não é possível ler o arquivo.",
@@ -18,12 +18,14 @@
"An internal server error occurred." : "Ocorreu um erro interno do servidor.",
"You can not write to a folder" : "Você não pode escrever em uma pasta",
"Cannot save file as it has been modified since opening" : "Não é possível salvar este arquivo pois ele foi modificado desde sua abertura",
+ "Could not write to file." : "Não foi possível escrever o arquivo.",
"Insufficient permissions" : "Permissões insuficientes",
"File path not supplied" : "Caminho do arquivo não fornecido",
"File mtime not supplied" : "arquivo mtime não fornecido",
"Share not found" : "Compartilhamento não encontrado",
"You are not authorized to open this share" : "Sem autorização para abrir este compartilhamento",
"Invalid range request" : "Requisição inválida de intervalo ",
- "Text editor" : "Editor de texto"
+ "Text editor" : "Editor de texto",
+ "This application enables Nextcloud users to open, save and edit text files in the web browser. If enabled, an entry in the New button at the top of the web browser the Text file entry appears. When clicked, a new text file opens in the browser and the file can be saved into the current Nextcloud directory. Further, when a text file is clicked in the web browser, it will be opened and editable. If the privileges allow, a user can also edit shared files and save these changes back into the web browser.\nMore information is available in the text editor documentation." : "Este aplicativo permite que os usuários do Nextcloud abram, salvem e editem arquivos de texto no navegador da web. Se ativado, uma entrada no botão Novo na parte superior do navegador da Web aparece na entrada do arquivo de texto. Quando clicado, um novo arquivo de texto é aberto no navegador e o arquivo pode ser salvo no diretório Nextcloud atual. Além disso, quando um arquivo de texto é clicado no navegador da Web, ele será aberto e editável. Se os privilégios permitirem, o usuário também pode editar arquivos compartilhados e salvar essas alterações no navegador da web.\nMais informações estão disponíveis na documentação do editor de texto."
},"pluralForm" :"nplurals=2; plural=(n > 1);"
} \ No newline at end of file
diff --git a/l10n/ru.js b/l10n/ru.js
index eb0e7ba..cd6be60 100644
--- a/l10n/ru.js
+++ b/l10n/ru.js
@@ -20,12 +20,14 @@ OC.L10N.register(
"An internal server error occurred." : "Произошла внутренняя ошибка сервера.",
"You can not write to a folder" : "Вы не можете записать в каталог",
"Cannot save file as it has been modified since opening" : "Невозможно сохранить файл поскольку он был изменен после открытия ",
+ "Could not write to file." : "Не удалось записать в файл.",
"Insufficient permissions" : "Недостаточно прав доступа",
"File path not supplied" : "Неизвестен путь файла",
"File mtime not supplied" : "Неизвестно время модификации файла",
"Share not found" : "Общий доступ не найден",
"You are not authorized to open this share" : "Вы не авторизованы для открытия этого общего доступа",
"Invalid range request" : "Неправильный запрос на диапазон",
- "Text editor" : "Редактор текста"
+ "Text editor" : "Редактор текста",
+ "This application enables Nextcloud users to open, save and edit text files in the web browser. If enabled, an entry in the New button at the top of the web browser the Text file entry appears. When clicked, a new text file opens in the browser and the file can be saved into the current Nextcloud directory. Further, when a text file is clicked in the web browser, it will be opened and editable. If the privileges allow, a user can also edit shared files and save these changes back into the web browser.\nMore information is available in the text editor documentation." : "Это приложение позволяет пользователям Nextcloud открывать, сохранять и редактировать текстовые файлы в веб-браузере. Если включено, запись в кнопке «Создать» в верхней части веб-браузера появится в текстовом файле. При нажатии в браузере открывается новый текстовый файл, и файл может быть сохранен в текущем каталоге Nextcloud. Кроме того, если кликнуть на текстовый файл в веб-браузере, он будет открыт и доступен для редактирования. Если у пользователя достаточно прав, то он может также редактировать общие файлы и сохранять эти изменения обратно в веб-браузер. Дополнительная информация доступна в документации текстового редактора."
},
"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);");
diff --git a/l10n/ru.json b/l10n/ru.json
index a03bb41..6237361 100644
--- a/l10n/ru.json
+++ b/l10n/ru.json
@@ -18,12 +18,14 @@
"An internal server error occurred." : "Произошла внутренняя ошибка сервера.",
"You can not write to a folder" : "Вы не можете записать в каталог",
"Cannot save file as it has been modified since opening" : "Невозможно сохранить файл поскольку он был изменен после открытия ",
+ "Could not write to file." : "Не удалось записать в файл.",
"Insufficient permissions" : "Недостаточно прав доступа",
"File path not supplied" : "Неизвестен путь файла",
"File mtime not supplied" : "Неизвестно время модификации файла",
"Share not found" : "Общий доступ не найден",
"You are not authorized to open this share" : "Вы не авторизованы для открытия этого общего доступа",
"Invalid range request" : "Неправильный запрос на диапазон",
- "Text editor" : "Редактор текста"
+ "Text editor" : "Редактор текста",
+ "This application enables Nextcloud users to open, save and edit text files in the web browser. If enabled, an entry in the New button at the top of the web browser the Text file entry appears. When clicked, a new text file opens in the browser and the file can be saved into the current Nextcloud directory. Further, when a text file is clicked in the web browser, it will be opened and editable. If the privileges allow, a user can also edit shared files and save these changes back into the web browser.\nMore information is available in the text editor documentation." : "Это приложение позволяет пользователям Nextcloud открывать, сохранять и редактировать текстовые файлы в веб-браузере. Если включено, запись в кнопке «Создать» в верхней части веб-браузера появится в текстовом файле. При нажатии в браузере открывается новый текстовый файл, и файл может быть сохранен в текущем каталоге Nextcloud. Кроме того, если кликнуть на текстовый файл в веб-браузере, он будет открыт и доступен для редактирования. Если у пользователя достаточно прав, то он может также редактировать общие файлы и сохранять эти изменения обратно в веб-браузер. Дополнительная информация доступна в документации текстового редактора."
},"pluralForm" :"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"
} \ No newline at end of file
diff --git a/l10n/sk.js b/l10n/sk.js
index e1acbfa..8e3dac4 100644
--- a/l10n/sk.js
+++ b/l10n/sk.js
@@ -23,6 +23,9 @@ OC.L10N.register(
"Insufficient permissions" : "Nedostatočné oprávnenia",
"File path not supplied" : "Nebola uvedená cesta k súboru",
"File mtime not supplied" : "Nebol uvedený mtime súboru",
+ "Share not found" : "Sprístupnenie sa nenašlo",
+ "You are not authorized to open this share" : "Nemáte oprávnenie otvoriť toto sprístupnenie",
+ "Invalid range request" : "Neplatná požiadavka rozsahu",
"Text editor" : "Textový editor"
},
-"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;");
+"nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);");
diff --git a/l10n/sk.json b/l10n/sk.json
index 5d36ba5..bb57f4b 100644
--- a/l10n/sk.json
+++ b/l10n/sk.json
@@ -21,6 +21,9 @@
"Insufficient permissions" : "Nedostatočné oprávnenia",
"File path not supplied" : "Nebola uvedená cesta k súboru",
"File mtime not supplied" : "Nebol uvedený mtime súboru",
+ "Share not found" : "Sprístupnenie sa nenašlo",
+ "You are not authorized to open this share" : "Nemáte oprávnenie otvoriť toto sprístupnenie",
+ "Invalid range request" : "Neplatná požiadavka rozsahu",
"Text editor" : "Textový editor"
-},"pluralForm" :"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"
+},"pluralForm" :"nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);"
} \ No newline at end of file
diff --git a/l10n/sr.js b/l10n/sr.js
index 6fc35c9..f2d5eaa 100644
--- a/l10n/sr.js
+++ b/l10n/sr.js
@@ -20,12 +20,14 @@ OC.L10N.register(
"An internal server error occurred." : "Десила се интерна грешка.",
"You can not write to a folder" : "Не можете да уписујете у фасциклу",
"Cannot save file as it has been modified since opening" : "Не могу да сачувам фајл јер је измењен откако је отворен",
+ "Could not write to file." : "Не могу да пишем у фајл.",
"Insufficient permissions" : "Недовољне дозволе",
"File path not supplied" : "Није добијена путања фајла",
"File mtime not supplied" : "Није добијено време измене фајла",
"Share not found" : "Дељење није нађено",
"You are not authorized to open this share" : "Нисте овлашћени да отворите ово дељење",
"Invalid range request" : "Неисправан захтев опсега",
- "Text editor" : "Уређивач текста"
+ "Text editor" : "Уређивач текста",
+ "This application enables Nextcloud users to open, save and edit text files in the web browser. If enabled, an entry in the New button at the top of the web browser the Text file entry appears. When clicked, a new text file opens in the browser and the file can be saved into the current Nextcloud directory. Further, when a text file is clicked in the web browser, it will be opened and editable. If the privileges allow, a user can also edit shared files and save these changes back into the web browser.\nMore information is available in the text editor documentation." : "Ова апликација омогућава корисницима Некстклауда да отварају, снимају и мењају текстуалне фајлове у веб читачу. Када се укључи, појављује се \"Текстуални фајл\" ставка у дугмету \"Нови\" на врху веб стране. Кликом на ову ставку се у веб читачу отвара нови текстуални фајл и фајл се може сачувати у тренутном Некстклауд директоријуму. Такође, кликом на овај фајл се он отвара у веб читачу и може да се даље уређује. Ако то привилегије дозвољавају, корисник такође може уређивати и дељене фајлове и снимати ове измене исто из веб читача.\nВише информација је доступно у докумнетацији уређивача текста."
},
"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);");
diff --git a/l10n/sr.json b/l10n/sr.json
index 08f9f72..cbb5f9e 100644
--- a/l10n/sr.json
+++ b/l10n/sr.json
@@ -18,12 +18,14 @@
"An internal server error occurred." : "Десила се интерна грешка.",
"You can not write to a folder" : "Не можете да уписујете у фасциклу",
"Cannot save file as it has been modified since opening" : "Не могу да сачувам фајл јер је измењен откако је отворен",
+ "Could not write to file." : "Не могу да пишем у фајл.",
"Insufficient permissions" : "Недовољне дозволе",
"File path not supplied" : "Није добијена путања фајла",
"File mtime not supplied" : "Није добијено време измене фајла",
"Share not found" : "Дељење није нађено",
"You are not authorized to open this share" : "Нисте овлашћени да отворите ово дељење",
"Invalid range request" : "Неисправан захтев опсега",
- "Text editor" : "Уређивач текста"
+ "Text editor" : "Уређивач текста",
+ "This application enables Nextcloud users to open, save and edit text files in the web browser. If enabled, an entry in the New button at the top of the web browser the Text file entry appears. When clicked, a new text file opens in the browser and the file can be saved into the current Nextcloud directory. Further, when a text file is clicked in the web browser, it will be opened and editable. If the privileges allow, a user can also edit shared files and save these changes back into the web browser.\nMore information is available in the text editor documentation." : "Ова апликација омогућава корисницима Некстклауда да отварају, снимају и мењају текстуалне фајлове у веб читачу. Када се укључи, појављује се \"Текстуални фајл\" ставка у дугмету \"Нови\" на врху веб стране. Кликом на ову ставку се у веб читачу отвара нови текстуални фајл и фајл се може сачувати у тренутном Некстклауд директоријуму. Такође, кликом на овај фајл се он отвара у веб читачу и може да се даље уређује. Ако то привилегије дозвољавају, корисник такође може уређивати и дељене фајлове и снимати ове измене исто из веб читача.\nВише информација је доступно у докумнетацији уређивача текста."
},"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"
} \ No newline at end of file
diff --git a/l10n/tr.js b/l10n/tr.js
index e8badda..7890400 100644
--- a/l10n/tr.js
+++ b/l10n/tr.js
@@ -20,12 +20,14 @@ OC.L10N.register(
"An internal server error occurred." : "Sunucu içinde bir sorun çıktı.",
"You can not write to a folder" : "Bir klasöre yazamazsınız",
"Cannot save file as it has been modified since opening" : "Dosya açıldıktan sonra değiştirildiği için kaydedilemedi",
+ "Could not write to file." : "Dosyaya yazılamadı.",
"Insufficient permissions" : "İzinler yetersiz",
"File path not supplied" : "Dosya yolu belirtilmemiş",
"File mtime not supplied" : "Dosya mtime belirtilmemiş",
"Share not found" : "Paylaşım bulunamadı",
"You are not authorized to open this share" : "Bu paylaşımı açma izniniz yok",
"Invalid range request" : "Aralık isteği geçersiz",
- "Text editor" : "Metin düzenleyici"
+ "Text editor" : "Metin düzenleyici",
+ "This application enables Nextcloud users to open, save and edit text files in the web browser. If enabled, an entry in the New button at the top of the web browser the Text file entry appears. When clicked, a new text file opens in the browser and the file can be saved into the current Nextcloud directory. Further, when a text file is clicked in the web browser, it will be opened and editable. If the privileges allow, a user can also edit shared files and save these changes back into the web browser.\nMore information is available in the text editor documentation." : "Bu uygulama, Nextcloud kullanıcılarının metin dosyalarını web tarayıcı üzerinde açıp düzenleyebilmesini ve kaydetmesini sağlar. Etkinleştirildiğinde, web tarayıcısının üst bölümündeki Yeni düğmesine Metin dosyası seçeneği görüntülenir. Bu seçeneğe tıklandığında web tarayıcı içinde yeni bir metin dosyası açılır ve bu dosya geçerli Nextcloud klasörüne kaydedilebilir. Ayrıca web tarayıcı içinde bir metin dosyasına tıklandığında dosya açılarak düzenlenebilir. Yeterli izinleri olan bir kullanıcı paylaşılmış dosyaları da web tarayıcı üzerinde düzenleyip kaydedebilir.\nAyrıntılı bilgi almak için metin düzenleyici uygulamasının belgelerine bakabilirsiniz."
},
"nplurals=2; plural=(n > 1);");
diff --git a/l10n/tr.json b/l10n/tr.json
index dd23b70..6f365fc 100644
--- a/l10n/tr.json
+++ b/l10n/tr.json
@@ -18,12 +18,14 @@
"An internal server error occurred." : "Sunucu içinde bir sorun çıktı.",
"You can not write to a folder" : "Bir klasöre yazamazsınız",
"Cannot save file as it has been modified since opening" : "Dosya açıldıktan sonra değiştirildiği için kaydedilemedi",
+ "Could not write to file." : "Dosyaya yazılamadı.",
"Insufficient permissions" : "İzinler yetersiz",
"File path not supplied" : "Dosya yolu belirtilmemiş",
"File mtime not supplied" : "Dosya mtime belirtilmemiş",
"Share not found" : "Paylaşım bulunamadı",
"You are not authorized to open this share" : "Bu paylaşımı açma izniniz yok",
"Invalid range request" : "Aralık isteği geçersiz",
- "Text editor" : "Metin düzenleyici"
+ "Text editor" : "Metin düzenleyici",
+ "This application enables Nextcloud users to open, save and edit text files in the web browser. If enabled, an entry in the New button at the top of the web browser the Text file entry appears. When clicked, a new text file opens in the browser and the file can be saved into the current Nextcloud directory. Further, when a text file is clicked in the web browser, it will be opened and editable. If the privileges allow, a user can also edit shared files and save these changes back into the web browser.\nMore information is available in the text editor documentation." : "Bu uygulama, Nextcloud kullanıcılarının metin dosyalarını web tarayıcı üzerinde açıp düzenleyebilmesini ve kaydetmesini sağlar. Etkinleştirildiğinde, web tarayıcısının üst bölümündeki Yeni düğmesine Metin dosyası seçeneği görüntülenir. Bu seçeneğe tıklandığında web tarayıcı içinde yeni bir metin dosyası açılır ve bu dosya geçerli Nextcloud klasörüne kaydedilebilir. Ayrıca web tarayıcı içinde bir metin dosyasına tıklandığında dosya açılarak düzenlenebilir. Yeterli izinleri olan bir kullanıcı paylaşılmış dosyaları da web tarayıcı üzerinde düzenleyip kaydedebilir.\nAyrıntılı bilgi almak için metin düzenleyici uygulamasının belgelerine bakabilirsiniz."
},"pluralForm" :"nplurals=2; plural=(n > 1);"
} \ No newline at end of file
diff --git a/l10n/uk.js b/l10n/uk.js
index c96dcf2..19ce6c9 100644
--- a/l10n/uk.js
+++ b/l10n/uk.js
@@ -18,4 +18,4 @@ OC.L10N.register(
"File path not supplied" : "Невідомий шлях файлу",
"File mtime not supplied" : "Невідомий час модифікації файлу"
},
-"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);");
+"nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);");
diff --git a/l10n/uk.json b/l10n/uk.json
index 1b8088a..f07f400 100644
--- a/l10n/uk.json
+++ b/l10n/uk.json
@@ -15,5 +15,5 @@
"Insufficient permissions" : "Недостатньо прав доступу",
"File path not supplied" : "Невідомий шлях файлу",
"File mtime not supplied" : "Невідомий час модифікації файлу"
-},"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"
+},"pluralForm" :"nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);"
} \ No newline at end of file
diff --git a/lib/Controller/FileHandlingController.php b/lib/Controller/FileHandlingController.php
index 3b647a9..f72e2bc 100644
--- a/lib/Controller/FileHandlingController.php
+++ b/lib/Controller/FileHandlingController.php
@@ -30,6 +30,7 @@ use OCP\AppFramework\Http\DataResponse;
use OCP\Files\File;
use OCP\Files\Folder;
use OCP\Files\ForbiddenException;
+use OCP\Files\GenericFileException;
use OCP\IL10N;
use OCP\ILogger;
use OCP\IRequest;
@@ -174,6 +175,8 @@ class FileHandlingController extends Controller{
return new DataResponse(['message' => $message], Http::STATUS_BAD_REQUEST);
} catch (ForbiddenException $e) {
return new DataResponse(['message' => $e->getMessage()], Http::STATUS_BAD_REQUEST);
+ } catch (GenericFileException $e) {
+ return new DataResponse(['message' => $this->l->t('Could not write to file.')], Http::STATUS_BAD_REQUEST);
}
// Clear statcache
clearstatcache();
diff --git a/tests/bootstrap.php b/tests/bootstrap.php
index f4297ba..9b157e3 100644
--- a/tests/bootstrap.php
+++ b/tests/bootstrap.php
@@ -6,7 +6,7 @@ if (!defined('PHPUNIT_RUN')) {
require_once __DIR__.'/../../../lib/base.php';
-if(!class_exists('PHPUnit_Framework_TestCase')) {
+if(!class_exists('\PHPUnit\Framework\TestCase')) {
require_once('PHPUnit/Autoload.php');
}