Merge upstream changes

master
Skylar Ittner 6 years ago
commit ef3f5b2a88

@ -1,7 +1,6 @@
language: php
php:
- 5.6
- 7
env:
@ -50,15 +49,19 @@ matrix:
matrix:
include:
- php: 5.6
- php: 7
env: "DB=sqlite CORE_BRANCH=stable12"
- php: 7
env: "DB=sqlite CORE_BRANCH=stable13"
- php: 7
env: DB=mysql
- php: 5.6
- php: 7
env: DB=pgsql
- php: 5.6
- php: 7
env: DB=mysql;CODECHECK=1
- php: 5.6
- php: 7
env: DB=mysql;CODECHECK=2
- php: 5.6
- php: 7
env: DB=mysql;JSTESTS=1
allow_failures:
- env: DB=mysql;CODECHECK=1

@ -3,7 +3,7 @@ host = https://www.transifex.com
lang_map = bg_BG: bg, cs_CZ: cs, fi_FI: fi, hu_HU: hu, nb_NO: nb, sk_SK: sk, th_TH: th, ja_JP: ja
[nextcloud.richdocuments]
file_filter = <lang>/richdocuments.po
source_file = templates/richdocuments.pot
file_filter = translationfiles/<lang>/richdocuments.po
source_file = translationfiles/templates/richdocuments.pot
source_lang = en
type = PO

@ -1,3 +1,18 @@
**1.12.38 and 1.12.39**
- Bug: fix z-index issue on Nextcloud 13 beta
**1.12.37**
- Feature: Add support for PutRelativeFile for Save As.
**1.12.36**
- Feature: Add avatar to UserExtraInfo (from NC 13)
- Feature: Start listening for standard post messages and ignore deprecated ones
- Feature: Add option to enable the app only for users in a specific group
- Updated translations
**1.12.35**
- Feature: Support for external apps. External apps can now generate a secret token to access richdocuments public API.
**1.12.34**
- Bug: Fix editing publicly shared documents
- Bug: Delete creator/last modifier name from document templates

@ -8,6 +8,7 @@ appstore_dir=$(build_dir)/appstore
source_dir=$(build_dir)/source
package_name=$(app_name)
cert_dir=$(HOME)/.nextcloud/certificates
occ=$(CURDIR)/../core/occ
appstore:
mkdir -p $(sign_dir)
@ -21,7 +22,7 @@ appstore:
--exclude=composer.json \
--exclude=composer.lock \
--exclude=composer.phar \
--exclude=l10n/.tx \
--exclude=.tx \
--exclude=l10n/no-php \
--exclude=Makefile \
--exclude=nbproject \
@ -31,6 +32,7 @@ appstore:
--exclude=vendor/bin \
$(project_dir) $(sign_dir)
@echo "Signing…"
$(occ) integrity:sign-app --privateKey=$(cert_dir)/$(app_name).key --certificate=$(cert_dir)/$(app_name).crt --path=$(sign_dir)/$(app_name)
tar -czf $(build_dir)/$(app_name).tar.gz \
-C $(sign_dir) $(app_name)
openssl dgst -sha512 -sign $(cert_dir)/$(app_name).key $(build_dir)/$(app_name).tar.gz | openssl base64

@ -66,6 +66,3 @@ if ($wopiUrl !== '') {
$policy->addAllowedFrameDomain($wopiUrl);
$manager->addDefaultPolicy($policy);
}
// Listen to delete file signal
\OCP\Util::connectHook('OC_Filesystem', 'delete', "OCA\Richdocuments\Storage", "onDelete");

@ -2,30 +2,31 @@
<info>
<id>richdocuments</id>
<name>Collabora Online</name>
<description>Collabora Online allows you to to work with all kinds of office documents directly in your browser. This application requires Collabora Cloudsuite to be installed on one of your servers, please read the documentation to learn more about that.</description>
<summary>Edit office documents directly in your browser.</summary>
<licence>AGPL</licence>
<version>9999_1.12.36_dontsellme</version>
<description>This application can connect to a Collabora Online server (WOPI Client). Nextcloud is the WOPI Host. Please read the documentation to learn more about that.</description>
<version>2.0.4</version>
<licence>agpl</licence>
<author>Collabora Productivity based on work of Frank Karlitschek, Victor Dubiniuk</author>
<bugs>https://github.com/nextcloud/richdocuments/issues</bugs>
<repository type="git">https://github.com/nextcloud/richdocuments.git</repository>
<category>office</category>
<category>integration</category>
<dependencies>
<nextcloud min-version="12" max-version="13" />
</dependencies>
<documentation>
<admin>https://nextcloud.com/collaboraonline/</admin>
<user>https://nextcloud.com/collaboraonline/</user>
</documentation>
<types>
<prevent_group_restriction/>
</types>
<documentation>
<user>https://nextcloud.com/collaboraonline/</user>
<admin>https://nextcloud.com/collaboraonline/</admin>
</documentation>
<category>office</category>
<category>integration</category>
<website>https://collaboraoffice.com/</website>
<bugs>https://github.com/nextcloud/richdocuments/issues</bugs>
<repository type="git">https://github.com/nextcloud/richdocuments.git</repository>
<screenshot>https://nextcloud.com/wp-content/themes/next/assets/img/features/collabora-document.png</screenshot>
<screenshot>https://nextcloud.com/wp-content/themes/next/assets/img/features/collabora-presentation.png</screenshot>
<screenshot>https://nextcloud.com/wp-content/themes/next/assets/img/features/collabora-spreadsheet.png</screenshot>
<dependencies>
<nextcloud min-version="12" max-version="14" />
</dependencies>
<settings>
<admin>\OCA\Richdocuments\Settings\Admin</admin>
<admin>OCA\Richdocuments\Settings\Admin</admin>
<admin-section>OCA\Richdocuments\Settings\Section</admin-section>
</settings>
</info>

@ -25,6 +25,7 @@ return [
['name' => 'wopi#checkFileInfo', 'url' => 'wopi/files/{fileId}', 'verb' => 'GET'],
['name' => 'wopi#getFile', 'url' => 'wopi/files/{fileId}/contents', 'verb' => 'GET'],
['name' => 'wopi#putFile', 'url' => 'wopi/files/{fileId}/contents', 'verb' => 'POST'],
['name' => 'wopi#putRelativeFile', 'url' => 'wopi/files/{fileId}', 'verb' => 'POST'],
//settings
['name' => 'settings#setSettings', 'url' => 'ajax/admin.php', 'verb' => 'POST'],

@ -0,0 +1,6 @@
.rd-settings-documentation {
max-width: 50em;
};
#richdocuments h2 {
display: inline-block;
}

@ -65,7 +65,7 @@ var documentsSettings = {
'external_apps': externalAppsData
};
OC.msg.startAction('#enable-external-apps-section-msg', t('richdocuments', 'Saving...'));
OC.msg.startAction('#enable-external-apps-section-msg', t('richdocuments', 'Saving'));
$.post(
OC.filePath('richdocuments', 'ajax', 'admin.php'),
data,
@ -73,6 +73,16 @@ var documentsSettings = {
);
},
saveWebroot: function(value) {
var data = {
'canonical_webroot': value
};
$.post(
OC.filePath('richdocuments', 'ajax', 'admin.php'),
data
);
},
afterSaveExternalApps: function(response) {
OC.msg.finishedAction('#enable-external-apps-section-msg', response);
},
@ -234,6 +244,22 @@ var documentsSettings = {
$select.change();
});
$(document).on('change', '#enable_canonical_webroot_cb-richdocuments', function() {
var page = $(this).parent();
page.find('#enable-canonical-webroot-section').toggleClass('hidden', !this.checked);
if (!this.checked) {
documentsSettings.saveWebroot('');
} else {
var val = $('#canonical-webroot').val();
if (val)
documentsSettings.saveWebroot();
}
});
$(document).on('change', '#canonical-webroot', function() {
documentsSettings.saveWebroot(this.value);
});
}
};

@ -60,8 +60,6 @@ $.widget('oc.documentOverlay', {
var documentsMain = {
isEditorMode : false,
isViewerMode: false,
isGuest : false,
esId : false,
ready :false,
fileName: null,
baseName: null,
@ -72,6 +70,21 @@ var documentsMain = {
loadErrorHint : '',
renderComplete: false, // false till page is rendered with all required data about the document(s)
toolbar : '<div id="ocToolbar"><div id="ocToolbarInside"></div><span id="toolbar" class="claro"></span></div>',
$deferredVersionRestoreAck: null,
wopiClientFeatures: null,
// generates docKey for given fileId
_generateDocKey: function(wopiFileId) {
var ocurl = OC.generateUrl('apps/richdocuments/wopi/files/{file_id}', {file_id: wopiFileId});
if (richdocuments_canonical_webroot) {
if (!richdocuments_canonical_webroot.startsWith('/'))
richdocuments_canonical_webroot = '/' + richdocuments_canonical_webroot;
ocurl = ocurl.replace(OC.webroot, richdocuments_canonical_webroot);
}
return ocurl;
},
UI : {
/* Editor wrapper HTML */
@ -107,7 +120,7 @@ var documentsMain = {
revisionsStart: 0,
init : function(){
documentsMain.UI.mainTitle = $('title').text();
documentsMain.UI.mainTitle = parent.document.title;
},
showViewer: function(fileId, title){
@ -249,14 +262,11 @@ var documentsMain = {
// close the viewer
documentsMain.onCloseViewer();
// close the editor
documentsMain.UI.hideEditor();
documentsMain.WOPIPostMessage($('#loleafletframe')[0], 'Host_VersionRestore', {Status: 'Pre_Restore'});
// If there are changes in the opened editor, we need to wait
// for sometime before these changes can be saved and a revision is created for it,
// before restoring to requested version.
documentsMain.overlay.documentOverlay('show');
setTimeout(function() {
documentsMain.$deferredVersionRestoreAck = $.Deferred();
jQuery.when(documentsMain.$deferredVersionRestoreAck).
done(function(args) {
// restore selected version
$.ajax({
type: 'GET',
@ -267,12 +277,16 @@ var documentsMain = {
}
// load the file again, it should get reverted now
window.location = OC.generateUrl('apps/richdocuments/index#{fileid}', {fileid: e.currentTarget.parentElement.dataset.fileid});
window.location.reload();
documentsMain.overlay.documentOverlay('hide');
}
});
}, 1000);
});
// resolve the deferred object immediately if client doesn't support version states
if (!documentsMain.wopiClientFeatures || !documentsMain.wopiClientFeatures.VersionStates) {
documentsMain.$deferredVersionRestoreAck.resolve();
}
});
// fake click on first revision (i.e current revision)
@ -280,11 +294,6 @@ var documentsMain = {
},
showEditor : function(title, fileId, action){
if (documentsMain.isGuest){
// !Login page mess wih WebODF toolbars
$(document.body).attr('id', 'body-user');
}
if (documentsMain.loadError) {
documentsMain.onEditorShutdown(documentsMain.loadErrorMessage + '\n' + documentsMain.loadErrorHint);
return;
@ -300,8 +309,7 @@ var documentsMain = {
$(document.body).addClass("claro");
$(document.body).prepend(documentsMain.UI.container);
$('title').text(title + ' - ' + documentsMain.UI.mainTitle);
parent.document.title = title + ' - ' + documentsMain.UI.mainTitle;
// WOPISrc - URL that loolwsd will access (ie. pointing to ownCloud)
var wopiurl = window.location.protocol + '//' + window.location.host + OC.generateUrl('apps/richdocuments/wopi/files/{file_id}', {file_id: documentsMain.fileId});
@ -339,6 +347,7 @@ var documentsMain = {
var editorInitListener = function(e) {
var msg = JSON.parse(e.data);
if (msg.MessageId === 'App_LoadingStatus') {
documentsMain.wopiClientFeatures = msg.Values.Features;
window.removeEventListener('message', editorInitListener, false);
}
};
@ -373,6 +382,42 @@ var documentsMain = {
return;
documentsMain.UI.showRevHistory(documentsMain.fullPath);
} else if (msgId === 'UI_SaveAs') {
// TODO it's not possible to enter the
// filename into the OC.dialogs.filepicker; so
// it will be necessary to use an own tree
// view or something :-(
//OC.dialogs.filepicker(t('richdocuments', 'Save As'),
// function(val) {
// console.log(val);
// documentsMain.WOPIPostMessage($('#loleafletframe')[0], Action_SaveAs', {'Filename': val});
// }, false, null, true);
OC.dialogs.prompt(t('richdocuments', 'Please enter the filename to store the document as.'),
t('richdocuments', 'Save As'),
function(result, value) {
if (result === true && value) {
documentsMain.WOPIPostMessage($('#loleafletframe')[0], 'Action_SaveAs', {'Filename': value});
}
},
true,
t('richdocuments', 'New filename'),
false).then(function() {
var $dialog = $('.oc-dialog:visible');
var $buttons = $dialog.find('button');
$buttons.eq(0).text(t('richdocuments', 'Cancel'));
$buttons.eq(1).text(t('richdocuments', 'Save'));
});
} else if (msgId === 'App_VersionRestore') {
if (!documentsMain.$deferredVersionRestoreAck)
{
console.warn('No version restore deferred object found.');
return;
}
if (args.Status === 'Pre_Restore_Ack') {
// user instructed to restore the version
documentsMain.$deferredVersionRestoreAck.resolve();
}
}
});
@ -392,18 +437,12 @@ var documentsMain = {
},
hideEditor : function(){
if (documentsMain.isGuest){
// !Login page mess wih WebODF toolbars
$(document.body).attr('id', 'body-login');
$('footer,nav').show();
}
// Fade out editor
$('#mainContainer').fadeOut('fast', function() {
$('#mainContainer').remove();
$('#content-wrapper').fadeIn('fast');
$(document.body).removeClass('claro');
$('title').text(documentsMain.UI.mainTitle);
parent.document.title = documentsMain.UI.mainTitle;
});
},
@ -467,10 +506,9 @@ var documentsMain = {
$('footer,nav').hide();
$(documentsMain.toolbar).appendTo('#header');
documentsMain.canShare = !documentsMain.isGuest
&& typeof OC.Share !== 'undefined' && richdocuments_permissions & OC.PERMISSION_SHARE;
documentsMain.canShare = typeof OC.Share !== 'undefined' && richdocuments_permissions & OC.PERMISSION_SHARE;
// fade out file list and show the cloudsuite
// fade out file list and show the document
$('#content-wrapper').fadeOut('fast').promise().done(function() {
documentsMain.fileId = richdocuments_fileId;
@ -479,11 +517,6 @@ var documentsMain = {
documentsMain.canEdit = Boolean(richdocuments_permissions & OC.PERMISSION_UPDATE);
documentsMain.loadDocument(documentsMain.fileName, documentsMain.fileId);
if (documentsMain.isGuest){
$('#odf-close').text(t('richdocuments', 'Save') );
$('#odf-close').removeClass('icon-view-close');
}
});
},
@ -529,6 +562,7 @@ var documentsMain = {
documentsMain.UI.hideEditor();
$('#ocToolbar').remove();
parent.document.title = documentsMain.UI.mainTitle;
parent.postMessage('close', '*');
},
@ -544,9 +578,6 @@ var documentsMain = {
},
show: function(fileId){
if (documentsMain.isGuest){
return;
}
documentsMain.UI.showProgress(t('richdocuments', 'Loading documents…'));
documentsMain.docs.documentGrid('render', fileId);
documentsMain.UI.hideProgress();

@ -89,7 +89,7 @@ var odfViewer = {
FileList.setViewerMode(true);
}
var $iframe = $('<iframe id="richdocumentsframe" allowfullscreen style="width:100%;height:100%;display:block;position:absolute;top:0;z-index:5;" src="'+viewer+'" />');
var $iframe = $('<iframe id="richdocumentsframe" allowfullscreen style="width:100%;height:100%;display:block;position:absolute;top:0;z-index:60;" src="'+viewer+'" />');
if ($('#isPublic').val()) {
// force the preview to adjust its height
$('#preview').append($iframe).css({height: '100%'});
@ -107,6 +107,22 @@ var odfViewer = {
$('#app-content #controls').addClass('hidden');
$('#app-content').append($iframe);
window.location.assign(window.location.href + '#richdocuments');
window.addEventListener('hashchange', function(e) {
// handle double hash (eg: ##richdocuments)
var hash = window.location.hash.replace(/#/g, '');
// unload
if (hash !== 'richdocuments') {
odfViewer.onClose();
}
// load
else if (hash === 'richdocuments' && $('#richdocumentsframe').length === 0) {
$('#app-content #controls').addClass('hidden');
$('#app-navigation').addClass('hidden');
$('#app-content').append($iframe);
}
});
},
onClose: function() {

@ -5,10 +5,8 @@ OC.L10N.register(
"All" : "Too",
"Download this revision" : "Baxar esta revisión",
"Restore this revision" : "Restaurar esta revisión",
"Latest revision" : "Cabera revisión",
"More versions…" : "Más revisión...",
"Just now" : "Agora mesmo",
"Failed to revert the document to older version" : "Fallu al revertir el documentu a la versión más vieya",
"More versions…" : "Más versiones..",
"Just now" : "Xusto agora",
"Save" : "Guardar",
"Loading documents…" : "Cargando documentos...",
"Edit" : "Editar",

@ -3,10 +3,8 @@
"All" : "Too",
"Download this revision" : "Baxar esta revisión",
"Restore this revision" : "Restaurar esta revisión",
"Latest revision" : "Cabera revisión",
"More versions…" : "Más revisión...",
"Just now" : "Agora mesmo",
"Failed to revert the document to older version" : "Fallu al revertir el documentu a la versión más vieya",
"More versions…" : "Más versiones..",
"Just now" : "Xusto agora",
"Save" : "Guardar",
"Loading documents…" : "Cargando documentos...",
"Edit" : "Editar",

@ -1,15 +0,0 @@
OC.L10N.register(
"richdocuments",
{
"Save" : "Saxla",
"Edit" : "Dəyişiklik et",
"Could not create file" : "Faylı yaratmaq olmur",
"Can't create document" : "Sənədi yaratmaq mümkün olmadı",
"Saved" : "Saxlanıldı",
"Wrong password. Please retry." : "Yalnış şifrə. Xahiş olunur təkrarlayasınız.",
"Password" : "Şifrə",
"OK" : "Oldu",
"Guest %s" : "Qonaq %s",
"This link has been expired or is never existed. Please contact the person who shared it with you for details." : "Linkin vaxtı artıq bitmişdir və ya heç vaxt movcud olmayıb. Xahiş olunur detallar üçün bunu sizinlə paylaşan şəxs ilə əlaqə saxlayasınız."
},
"nplurals=2; plural=(n != 1);");

@ -1,13 +0,0 @@
{ "translations": {
"Save" : "Saxla",
"Edit" : "Dəyişiklik et",
"Could not create file" : "Faylı yaratmaq olmur",
"Can't create document" : "Sənədi yaratmaq mümkün olmadı",
"Saved" : "Saxlanıldı",
"Wrong password. Please retry." : "Yalnış şifrə. Xahiş olunur təkrarlayasınız.",
"Password" : "Şifrə",
"OK" : "Oldu",
"Guest %s" : "Qonaq %s",
"This link has been expired or is never existed. Please contact the person who shared it with you for details." : "Linkin vaxtı artıq bitmişdir və ya heç vaxt movcud olmayıb. Xahiş olunur detallar üçün bunu sizinlə paylaşan şəxs ilə əlaqə saxlayasınız."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

@ -3,9 +3,6 @@ OC.L10N.register(
{
"Download this revision" : "Изтегли тази ревизия",
"Restore this revision" : "Възстановяване на редакцията",
"Latest revision" : "Последна редакция",
"Just now" : "Току-що",
"Failed to revert the document to older version" : "Неуспешно възстановяване на документа към по-стара версия",
"Save" : "Запазване",
"Edit" : "Редакция",
"New Document" : "Нов документ",

@ -1,9 +1,6 @@
{ "translations": {
"Download this revision" : "Изтегли тази ревизия",
"Restore this revision" : "Възстановяване на редакцията",
"Latest revision" : "Последна редакция",
"Just now" : "Току-що",
"Failed to revert the document to older version" : "Неуспешно възстановяване на документа към по-стара версия",
"Save" : "Запазване",
"Edit" : "Редакция",
"New Document" : "Нов документ",

@ -1,15 +0,0 @@
OC.L10N.register(
"richdocuments",
{
"Save" : "Spremi",
"Edit" : "Izmjeni",
"Could not create file" : "Datoteku nije moguće kreirati",
"Can't create document" : "Nemoguće kreirati dokument",
"Saved" : "Spremljeno",
"Wrong password. Please retry." : "Pogrešna lozinka. Molim pokušajte ponovo",
"Password" : "Lozinka",
"OK" : "OK",
"Guest %s" : "Gost %s",
"This link has been expired or is never existed. Please contact the person who shared it with you for details." : "Ova veza je istekla ili nikad nije postojala. Za detalje, molim kontaktirajte osobu koja ju je s vama podijelila."
},
"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);");

@ -1,13 +0,0 @@
{ "translations": {
"Save" : "Spremi",
"Edit" : "Izmjeni",
"Could not create file" : "Datoteku nije moguće kreirati",
"Can't create document" : "Nemoguće kreirati dokument",
"Saved" : "Spremljeno",
"Wrong password. Please retry." : "Pogrešna lozinka. Molim pokušajte ponovo",
"Password" : "Lozinka",
"OK" : "OK",
"Guest %s" : "Gost %s",
"This link has been expired or is never existed. Please contact the person who shared it with you for details." : "Ova veza je istekla ili nikad nije postojala. Za detalje, molim kontaktirajte osobu koja ju je s vama podijelila."
},"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);"
}

@ -2,14 +2,11 @@ OC.L10N.register(
"richdocuments",
{
"Saving…" : "S'està desant ...",
"Saving..." : "Desant...",
"All" : "Tots",
"Download this revision" : "Baixa aquesta revisió",
"Restore this revision" : "Restaura aquesta revisió",
"Latest revision" : "Última revisió",
"More versions…" : "Més versións ...",
"Just now" : "Ara mateix",
"Failed to revert the document to older version" : "No s'ha pogut tornar el document a la versió anterior",
"Save As" : "Desa com a",
"Save" : "Desar",
"Loading documents…" : "S'estan carregant els documents...",
"Edit" : "Editar",

@ -1,13 +1,10 @@
{ "translations": {
"Saving…" : "S'està desant ...",
"Saving..." : "Desant...",
"All" : "Tots",
"Download this revision" : "Baixa aquesta revisió",
"Restore this revision" : "Restaura aquesta revisió",
"Latest revision" : "Última revisió",
"More versions…" : "Més versións ...",
"Just now" : "Ara mateix",
"Failed to revert the document to older version" : "No s'ha pogut tornar el document a la versió anterior",
"Save As" : "Desa com a",
"Save" : "Desar",
"Loading documents…" : "S'estan carregant els documents...",
"Edit" : "Editar",

@ -5,10 +5,11 @@ OC.L10N.register(
"All" : "Vše",
"Download this revision" : "Stáhnout tuto revizi",
"Restore this revision" : "Obnovit tuto revizi",
"Latest revision" : "Poslední revize",
"More versions…" : "Více verzí…",
"Just now" : "Právě teď",
"Failed to revert the document to older version" : "Nepodařilo se obnovit starší verzi dokumentu",
"Save As" : "Uložit jako",
"New filename" : "Jméno souboru",
"Cancel" : "Storno",
"Save" : "Uložit",
"Loading documents…" : "Nahrávám dokumenty...",
"Edit" : "Upravit",
@ -26,10 +27,15 @@ OC.L10N.register(
"Saved" : "Uloženo",
"Saved with error: Collabora Online should use the same protocol as the server installation." : "Uloženo s chybou: Collabora Online by měla používat stejný protokol jako instalovaný server.",
"Collabora Online" : "Collabora Online",
"Open documentation" : "Otevřít dokumentaci",
"Collabora Online server" : "Collabora Online server",
"URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client." : "URL (a port) Collabora Online serveru, který poskytuje funkce úprav jako WOPI klient.",
"Apply" : "Použít",
"Restrict usage to specific groups" : "Omezit použití na konkrétní skupiny",
"Restrict edit to specific groups" : "Omezit úpravy pro konkrétní skupiny",
"Use OOXML by default for new files" : "Použít OOXML jako výchozí pro nové soubory",
"Enable access for external apps" : "Povolit přístup pro externí aplikace",
"Add" : "Přidat",
"Wrong password. Please retry." : "Nesprávné heslo. Zkuste to znovu.",
"Password" : "Heslo",
"OK" : "OK",

@ -3,10 +3,11 @@
"All" : "Vše",
"Download this revision" : "Stáhnout tuto revizi",
"Restore this revision" : "Obnovit tuto revizi",
"Latest revision" : "Poslední revize",
"More versions…" : "Více verzí…",
"Just now" : "Právě teď",
"Failed to revert the document to older version" : "Nepodařilo se obnovit starší verzi dokumentu",
"Save As" : "Uložit jako",
"New filename" : "Jméno souboru",
"Cancel" : "Storno",
"Save" : "Uložit",
"Loading documents…" : "Nahrávám dokumenty...",
"Edit" : "Upravit",
@ -24,10 +25,15 @@
"Saved" : "Uloženo",
"Saved with error: Collabora Online should use the same protocol as the server installation." : "Uloženo s chybou: Collabora Online by měla používat stejný protokol jako instalovaný server.",
"Collabora Online" : "Collabora Online",
"Open documentation" : "Otevřít dokumentaci",
"Collabora Online server" : "Collabora Online server",
"URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client." : "URL (a port) Collabora Online serveru, který poskytuje funkce úprav jako WOPI klient.",
"Apply" : "Použít",
"Restrict usage to specific groups" : "Omezit použití na konkrétní skupiny",
"Restrict edit to specific groups" : "Omezit úpravy pro konkrétní skupiny",
"Use OOXML by default for new files" : "Použít OOXML jako výchozí pro nové soubory",
"Enable access for external apps" : "Povolit přístup pro externí aplikace",
"Add" : "Přidat",
"Wrong password. Please retry." : "Nesprávné heslo. Zkuste to znovu.",
"Password" : "Heslo",
"OK" : "OK",

@ -2,14 +2,11 @@ OC.L10N.register(
"richdocuments",
{
"Saving…" : "Gemmer...",
"Saving..." : "Gemmer...",
"All" : "Alle",
"Download this revision" : "Hent denne revision",
"Restore this revision" : "Gendan denne revision",
"Latest revision" : "Seneste revision",
"More versions…" : "Flere versioner...",
"Just now" : "Lige nu",
"Failed to revert the document to older version" : "Det lykkedes ikke at gendanne dokumentet, til en ældre version",
"Save As" : "Gem som",
"New filename" : "Nyt filnavn",
"Save" : "Gem",
"Loading documents…" : "Henter dokumenter...",
"Edit" : "Redigér",
@ -30,6 +27,8 @@ OC.L10N.register(
"Collabora Online server" : "Collabora Online server",
"URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client." : "URL (og port) i Collabora Online serveren, der giver redigeringsfunktionalitet som en WOPI klient.",
"Apply" : "Anvend",
"Restrict usage to specific groups" : "Brugen begrænset til bestemte grupper",
"Restrict edit to specific groups" : "Redigering begrænset til bestemte grupper",
"Use OOXML by default for new files" : "Brug OOXML for standard for nye filer.",
"Enable access for external apps" : "Tillad tilgang fra eksterne apps",
"Add" : "Tilføj",

@ -1,13 +1,10 @@
{ "translations": {
"Saving…" : "Gemmer...",
"Saving..." : "Gemmer...",
"All" : "Alle",
"Download this revision" : "Hent denne revision",
"Restore this revision" : "Gendan denne revision",
"Latest revision" : "Seneste revision",
"More versions…" : "Flere versioner...",
"Just now" : "Lige nu",
"Failed to revert the document to older version" : "Det lykkedes ikke at gendanne dokumentet, til en ældre version",
"Save As" : "Gem som",
"New filename" : "Nyt filnavn",
"Save" : "Gem",
"Loading documents…" : "Henter dokumenter...",
"Edit" : "Redigér",
@ -28,6 +25,8 @@
"Collabora Online server" : "Collabora Online server",
"URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client." : "URL (og port) i Collabora Online serveren, der giver redigeringsfunktionalitet som en WOPI klient.",
"Apply" : "Anvend",
"Restrict usage to specific groups" : "Brugen begrænset til bestemte grupper",
"Restrict edit to specific groups" : "Redigering begrænset til bestemte grupper",
"Use OOXML by default for new files" : "Brug OOXML for standard for nye filer.",
"Enable access for external apps" : "Tillad tilgang fra eksterne apps",
"Add" : "Tilføj",

@ -2,7 +2,6 @@ OC.L10N.register(
"richdocuments",
{
"Saving…" : "Speichere…",
"Saving..." : "Speichere…",
"All" : "Alle",
"Download this revision" : "Diese Revision herunterladen",
"Restore this revision" : "Diese Revision wiederherstellen",
@ -10,6 +9,10 @@ OC.L10N.register(
"More versions…" : "Weitere Versionen…",
"Just now" : "Gerade eben",
"Failed to revert the document to older version" : "Fehler beim Zurücksetzen des Dokumentes auf eine ältere Version",
"Please enter the filename to store the document as." : "Bitte den Dateinamen angeben, unter welchem dieses Dokument gespeichert werden soll.",
"Save As" : "Speichern als",
"New filename" : "Neuer Dateiname",
"Cancel" : "Abbrechen",
"Save" : "Speichern",
"Loading documents…" : "Lade Dokumente…",
"Edit" : "Bearbeiten",
@ -27,6 +30,7 @@ OC.L10N.register(
"Saved" : "Gespeichert",
"Saved with error: Collabora Online should use the same protocol as the server installation." : "Mit Fehler gespeichert: Collabora Online sollte das gleiche Protokoll wie die Server-Installation nutzen.",
"Collabora Online" : "Collabora Online",
"Open documentation" : "Dokumentation öffnen",
"Collabora Online server" : "Collabora Online Server",
"URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client." : "URL (und Port) des Collabora Online Servers, der als WOPI-Client die Bearbeitungsfunktionalität bereitstellt.",
"Apply" : "Anwenden",
@ -35,6 +39,8 @@ OC.L10N.register(
"Use OOXML by default for new files" : "OOXML als Standard für neue Dateien nutzen",
"Enable access for external apps" : "Zugriff auf experimentelle Apps aktivieren",
"Add" : "Hinzufügen",
"Use Canonical webroot" : "Canonical-Webroot verwenden",
"Canonical webroot, in case there are multiple, for Collabora to use. Provide the one with least restrictions. Eg: Use non-shibbolized webroot if this instance is accessed by both shibbolized and non-shibbolized webroots. You can ignore this setting if only one webroot is used to access this instance." : "Canonical-Webroot für Collabora verwenden, falls es mehrere gibt. Verwende den mit den wenigsten Einschränkungen. Beispiel: Verwende einen Webroot ohne Shibboleth, falls der Webroot mit und ohne Shibboleth verwendet wirde. Wird auf diese Instanz nur über ein Webroot zugegriffen, so kann diese Einstellung ignoriert werden.",
"Wrong password. Please retry." : "Falsches Passwort. Bitte versuche es noch einmal.",
"Password" : "Passwort",
"OK" : "OK",

@ -1,6 +1,5 @@
{ "translations": {
"Saving…" : "Speichere…",
"Saving..." : "Speichere…",
"All" : "Alle",
"Download this revision" : "Diese Revision herunterladen",
"Restore this revision" : "Diese Revision wiederherstellen",
@ -8,6 +7,10 @@
"More versions…" : "Weitere Versionen…",
"Just now" : "Gerade eben",
"Failed to revert the document to older version" : "Fehler beim Zurücksetzen des Dokumentes auf eine ältere Version",
"Please enter the filename to store the document as." : "Bitte den Dateinamen angeben, unter welchem dieses Dokument gespeichert werden soll.",
"Save As" : "Speichern als",
"New filename" : "Neuer Dateiname",
"Cancel" : "Abbrechen",
"Save" : "Speichern",
"Loading documents…" : "Lade Dokumente…",
"Edit" : "Bearbeiten",
@ -25,6 +28,7 @@
"Saved" : "Gespeichert",
"Saved with error: Collabora Online should use the same protocol as the server installation." : "Mit Fehler gespeichert: Collabora Online sollte das gleiche Protokoll wie die Server-Installation nutzen.",
"Collabora Online" : "Collabora Online",
"Open documentation" : "Dokumentation öffnen",
"Collabora Online server" : "Collabora Online Server",
"URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client." : "URL (und Port) des Collabora Online Servers, der als WOPI-Client die Bearbeitungsfunktionalität bereitstellt.",
"Apply" : "Anwenden",
@ -33,6 +37,8 @@
"Use OOXML by default for new files" : "OOXML als Standard für neue Dateien nutzen",
"Enable access for external apps" : "Zugriff auf experimentelle Apps aktivieren",
"Add" : "Hinzufügen",
"Use Canonical webroot" : "Canonical-Webroot verwenden",
"Canonical webroot, in case there are multiple, for Collabora to use. Provide the one with least restrictions. Eg: Use non-shibbolized webroot if this instance is accessed by both shibbolized and non-shibbolized webroots. You can ignore this setting if only one webroot is used to access this instance." : "Canonical-Webroot für Collabora verwenden, falls es mehrere gibt. Verwende den mit den wenigsten Einschränkungen. Beispiel: Verwende einen Webroot ohne Shibboleth, falls der Webroot mit und ohne Shibboleth verwendet wirde. Wird auf diese Instanz nur über ein Webroot zugegriffen, so kann diese Einstellung ignoriert werden.",
"Wrong password. Please retry." : "Falsches Passwort. Bitte versuche es noch einmal.",
"Password" : "Passwort",
"OK" : "OK",

@ -2,14 +2,17 @@ OC.L10N.register(
"richdocuments",
{
"Saving…" : "Speichere…",
"Saving..." : "Speichere…",
"All" : "Alle",
"Download this revision" : "Diese Revision herunterladen",
"Restore this revision" : "Diese Revision wiederherstellen",
"Latest revision" : "Neueste Revision",
"More versions…" : "Weitere Versionen…",
"Just now" : "Gerade ebend",
"Just now" : "Gerade eben",
"Failed to revert the document to older version" : "Fehler beim Zurücksetzen des Dokumentes auf eine ältere Version",
"Please enter the filename to store the document as." : "Bitte den Dateinamen angeben, unter welchem dieses Dokument gespeichert werden soll.",
"Save As" : "Speichern als",
"New filename" : "Neuer Dateiname",
"Cancel" : "Abbrechen",
"Save" : "Speichern",
"Loading documents…" : "Lade Dokumente…",
"Edit" : "Bearbeiten",
@ -27,6 +30,7 @@ OC.L10N.register(
"Saved" : "Gespeichert",
"Saved with error: Collabora Online should use the same protocol as the server installation." : "Mit Fehler gespeichert: Collabora Online sollte das gleiche Protokoll wie die Server-Installation nutzen.",
"Collabora Online" : "Collabora Online",
"Open documentation" : "Dokumentation öffnen",
"Collabora Online server" : "Collabora Online Server",
"URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client." : "URL (und Port) des Collabora Online Servers, der als WOPI-Client die Bearbeitungsfunktionalität bereitstellt.",
"Apply" : "Anwenden",
@ -35,6 +39,8 @@ OC.L10N.register(
"Use OOXML by default for new files" : "OOXML als Standard für neue Dateien nutzen",
"Enable access for external apps" : "Zugriff auf experimentelle Apps aktivieren",
"Add" : "Hinzufügen",
"Use Canonical webroot" : "Canonical-Webroot verwenden",
"Canonical webroot, in case there are multiple, for Collabora to use. Provide the one with least restrictions. Eg: Use non-shibbolized webroot if this instance is accessed by both shibbolized and non-shibbolized webroots. You can ignore this setting if only one webroot is used to access this instance." : "Canonical-Webroot für Collabora verwenden, falls es mehrere gibt. Verwende den mit den wenigsten Einschränkungen. Beispiel: Verwende einen Webroot ohne Shibboleth, falls der Webroot mit und ohne Shibboleth verwendet wirde. Wird auf diese Instanz nur über ein Webroot zugegriffen, so kann diese Einstellung ignoriert werden.",
"Wrong password. Please retry." : "Falsches Passwort. Bitte versuchen Sie es noch einmal.",
"Password" : "Passwort",
"OK" : "OK",

@ -1,13 +1,16 @@
{ "translations": {
"Saving…" : "Speichere…",
"Saving..." : "Speichere…",
"All" : "Alle",
"Download this revision" : "Diese Revision herunterladen",
"Restore this revision" : "Diese Revision wiederherstellen",
"Latest revision" : "Neueste Revision",
"More versions…" : "Weitere Versionen…",
"Just now" : "Gerade ebend",
"Just now" : "Gerade eben",
"Failed to revert the document to older version" : "Fehler beim Zurücksetzen des Dokumentes auf eine ältere Version",
"Please enter the filename to store the document as." : "Bitte den Dateinamen angeben, unter welchem dieses Dokument gespeichert werden soll.",
"Save As" : "Speichern als",
"New filename" : "Neuer Dateiname",
"Cancel" : "Abbrechen",
"Save" : "Speichern",
"Loading documents…" : "Lade Dokumente…",
"Edit" : "Bearbeiten",
@ -25,6 +28,7 @@
"Saved" : "Gespeichert",
"Saved with error: Collabora Online should use the same protocol as the server installation." : "Mit Fehler gespeichert: Collabora Online sollte das gleiche Protokoll wie die Server-Installation nutzen.",
"Collabora Online" : "Collabora Online",
"Open documentation" : "Dokumentation öffnen",
"Collabora Online server" : "Collabora Online Server",
"URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client." : "URL (und Port) des Collabora Online Servers, der als WOPI-Client die Bearbeitungsfunktionalität bereitstellt.",
"Apply" : "Anwenden",
@ -33,6 +37,8 @@
"Use OOXML by default for new files" : "OOXML als Standard für neue Dateien nutzen",
"Enable access for external apps" : "Zugriff auf experimentelle Apps aktivieren",
"Add" : "Hinzufügen",
"Use Canonical webroot" : "Canonical-Webroot verwenden",
"Canonical webroot, in case there are multiple, for Collabora to use. Provide the one with least restrictions. Eg: Use non-shibbolized webroot if this instance is accessed by both shibbolized and non-shibbolized webroots. You can ignore this setting if only one webroot is used to access this instance." : "Canonical-Webroot für Collabora verwenden, falls es mehrere gibt. Verwende den mit den wenigsten Einschränkungen. Beispiel: Verwende einen Webroot ohne Shibboleth, falls der Webroot mit und ohne Shibboleth verwendet wirde. Wird auf diese Instanz nur über ein Webroot zugegriffen, so kann diese Einstellung ignoriert werden.",
"Wrong password. Please retry." : "Falsches Passwort. Bitte versuchen Sie es noch einmal.",
"Password" : "Passwort",
"OK" : "OK",

@ -2,14 +2,11 @@ OC.L10N.register(
"richdocuments",
{
"Saving…" : "Γίνεται αποθήκευση...",
"Saving..." : "Γίνεται αποθήκευση...",
"All" : "'Ολα",
"Download this revision" : "Λήψη αυτής της αναθεώρησης",
"Restore this revision" : "Επαναφορά αυτή της αναθεώρησης",
"Latest revision" : "Τελευταία αναθεώρηση",
"More versions…" : "Περισσότερες εκδόσεις...",
"Just now" : "Μόλις τώρα",
"Failed to revert the document to older version" : "Αποτυχία επαναφοράς εγγράφου σε παλιότερη έκδοση",
"Save As" : "Αποθήκευση ως",
"New filename" : "Νέο όνομα αρχείου",
"Save" : "Αποθήκευση",
"Loading documents…" : "Φόρτωση εγγράφων...",
"Edit" : "Επεξεργασία",
@ -30,7 +27,11 @@ OC.L10N.register(
"Collabora Online server" : "Διακομιστής Collabora Online",
"URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client." : "Η URL (και η θύρα) του διακομιστή Collabora Online που παρέχει την δυνατότητα επεξεργασίας ως πελάτης WOPI.",
"Apply" : "Εφαρμογή",
"Restrict usage to specific groups" : "Περιορισμός χρήσης σε συγκεκριμένες ομάδες",
"Restrict edit to specific groups" : "Περιορισμός επεξεργασίας σε συγκεκριμένες ομάδες",
"Use OOXML by default for new files" : "Χρήση OOXML από προεπιλογή για τα νέα αρχεία",
"Enable access for external apps" : "Ενεργοποίηση πρόσβασης σε εξωτερικές εφαρμογές",
"Add" : "Προσθήκη",
"Wrong password. Please retry." : "Εσφαλμένο συνθηματικό. Παρακαλώ προσπαθήστε ξανά.",
"Password" : "Συνθηματικό",
"OK" : "Εντάξει",

@ -1,13 +1,10 @@
{ "translations": {
"Saving…" : "Γίνεται αποθήκευση...",
"Saving..." : "Γίνεται αποθήκευση...",
"All" : "'Ολα",
"Download this revision" : "Λήψη αυτής της αναθεώρησης",
"Restore this revision" : "Επαναφορά αυτή της αναθεώρησης",
"Latest revision" : "Τελευταία αναθεώρηση",
"More versions…" : "Περισσότερες εκδόσεις...",
"Just now" : "Μόλις τώρα",
"Failed to revert the document to older version" : "Αποτυχία επαναφοράς εγγράφου σε παλιότερη έκδοση",
"Save As" : "Αποθήκευση ως",
"New filename" : "Νέο όνομα αρχείου",
"Save" : "Αποθήκευση",
"Loading documents…" : "Φόρτωση εγγράφων...",
"Edit" : "Επεξεργασία",
@ -28,7 +25,11 @@
"Collabora Online server" : "Διακομιστής Collabora Online",
"URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client." : "Η URL (και η θύρα) του διακομιστή Collabora Online που παρέχει την δυνατότητα επεξεργασίας ως πελάτης WOPI.",
"Apply" : "Εφαρμογή",
"Restrict usage to specific groups" : "Περιορισμός χρήσης σε συγκεκριμένες ομάδες",
"Restrict edit to specific groups" : "Περιορισμός επεξεργασίας σε συγκεκριμένες ομάδες",
"Use OOXML by default for new files" : "Χρήση OOXML από προεπιλογή για τα νέα αρχεία",
"Enable access for external apps" : "Ενεργοποίηση πρόσβασης σε εξωτερικές εφαρμογές",
"Add" : "Προσθήκη",
"Wrong password. Please retry." : "Εσφαλμένο συνθηματικό. Παρακαλώ προσπαθήστε ξανά.",
"Password" : "Συνθηματικό",
"OK" : "Εντάξει",

@ -2,7 +2,6 @@ OC.L10N.register(
"richdocuments",
{
"Saving…" : "Saving…",
"Saving..." : "Saving...",
"All" : "All",
"Download this revision" : "Download this revision",
"Restore this revision" : "Restore this revision",
@ -10,6 +9,10 @@ OC.L10N.register(
"More versions…" : "More versions…",
"Just now" : "Just now",
"Failed to revert the document to older version" : "Failed to revert the document to older version",
"Please enter the filename to store the document as." : "Please enter the filename to store the document as.",
"Save As" : "Save As",
"New filename" : "New filename",
"Cancel" : "Cancel",
"Save" : "Save",
"Loading documents…" : "Loading documents…",
"Edit" : "Edit",
@ -27,6 +30,7 @@ OC.L10N.register(
"Saved" : "Saved",
"Saved with error: Collabora Online should use the same protocol as the server installation." : "Saved with error: Collabora Online should use the same protocol as the server installation.",
"Collabora Online" : "Collabora Online",
"Open documentation" : "Open documentation",
"Collabora Online server" : "Collabora Online server",
"URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client." : "URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client.",
"Apply" : "Apply",
@ -35,6 +39,8 @@ OC.L10N.register(
"Use OOXML by default for new files" : "Use OOXML by default for new files",
"Enable access for external apps" : "Enable access for external apps",
"Add" : "Add",
"Use Canonical webroot" : "Use Canonical webroot",
"Canonical webroot, in case there are multiple, for Collabora to use. Provide the one with least restrictions. Eg: Use non-shibbolized webroot if this instance is accessed by both shibbolized and non-shibbolized webroots. You can ignore this setting if only one webroot is used to access this instance." : "Canonical webroot, in case there are multiple, for Collabora to use. Provide the one with least restrictions. Eg: Use non-shibbolised webroot if this instance is accessed by both shibbolised and non-shibbolised webroots. You can ignore this setting if only one webroot is used to access this instance.",
"Wrong password. Please retry." : "Incorrect password. Please try again.",
"Password" : "Password",
"OK" : "OK",

@ -1,6 +1,5 @@
{ "translations": {
"Saving…" : "Saving…",
"Saving..." : "Saving...",
"All" : "All",
"Download this revision" : "Download this revision",
"Restore this revision" : "Restore this revision",
@ -8,6 +7,10 @@
"More versions…" : "More versions…",
"Just now" : "Just now",
"Failed to revert the document to older version" : "Failed to revert the document to older version",
"Please enter the filename to store the document as." : "Please enter the filename to store the document as.",
"Save As" : "Save As",
"New filename" : "New filename",
"Cancel" : "Cancel",
"Save" : "Save",
"Loading documents…" : "Loading documents…",
"Edit" : "Edit",
@ -25,6 +28,7 @@
"Saved" : "Saved",
"Saved with error: Collabora Online should use the same protocol as the server installation." : "Saved with error: Collabora Online should use the same protocol as the server installation.",
"Collabora Online" : "Collabora Online",
"Open documentation" : "Open documentation",
"Collabora Online server" : "Collabora Online server",
"URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client." : "URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client.",
"Apply" : "Apply",
@ -33,6 +37,8 @@
"Use OOXML by default for new files" : "Use OOXML by default for new files",
"Enable access for external apps" : "Enable access for external apps",
"Add" : "Add",
"Use Canonical webroot" : "Use Canonical webroot",
"Canonical webroot, in case there are multiple, for Collabora to use. Provide the one with least restrictions. Eg: Use non-shibbolized webroot if this instance is accessed by both shibbolized and non-shibbolized webroots. You can ignore this setting if only one webroot is used to access this instance." : "Canonical webroot, in case there are multiple, for Collabora to use. Provide the one with least restrictions. Eg: Use non-shibbolised webroot if this instance is accessed by both shibbolised and non-shibbolised webroots. You can ignore this setting if only one webroot is used to access this instance.",
"Wrong password. Please retry." : "Incorrect password. Please try again.",
"Password" : "Password",
"OK" : "OK",

@ -1,16 +0,0 @@
OC.L10N.register(
"richdocuments",
{
"Save" : "Konservi",
"Edit" : "Redakti",
"Could not create file" : "Ne povis kreiĝi dosiero",
"Can't create document" : "Ne povas kreiĝi dokumento",
"Saved" : "Konservita",
"Apply" : "Apliki",
"Wrong password. Please retry." : "La pasvorto malĝustas. Bonvolu reprovi.",
"Password" : "Pasvorto",
"OK" : "Akcepti",
"Guest %s" : "Gasto %s",
"This link has been expired or is never existed. Please contact the person who shared it with you for details." : "Ĉi tiu ligilo eksvalidiĝis aŭ neniam ekzistis. Bonvolu kontakti la personon, kiu kunhavigis ĝin kun vi, por detaloj."
},
"nplurals=2; plural=(n != 1);");

@ -1,14 +0,0 @@
{ "translations": {
"Save" : "Konservi",
"Edit" : "Redakti",
"Could not create file" : "Ne povis kreiĝi dosiero",
"Can't create document" : "Ne povas kreiĝi dokumento",
"Saved" : "Konservita",
"Apply" : "Apliki",
"Wrong password. Please retry." : "La pasvorto malĝustas. Bonvolu reprovi.",
"Password" : "Pasvorto",
"OK" : "Akcepti",
"Guest %s" : "Gasto %s",
"This link has been expired or is never existed. Please contact the person who shared it with you for details." : "Ĉi tiu ligilo eksvalidiĝis aŭ neniam ekzistis. Bonvolu kontakti la personon, kiu kunhavigis ĝin kun vi, por detaloj."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

@ -2,21 +2,24 @@ OC.L10N.register(
"richdocuments",
{
"Saving…" : "Guardando…",
"Saving..." : "Guardando...",
"All" : "Todo",
"Download this revision" : "Descargar esta revisión",
"Restore this revision" : "Restaurar esta revisión",
"Latest revision" : "Ultima revisión",
"More versions…" : "Más versiones…",
"Just now" : "Ahora",
"Failed to revert the document to older version" : "No se pudo revertir el documento a la versión más antigua",
"Latest revision" : "Última revisión",
"More versions…" : "Más versiones...",
"Just now" : "Justo ahora",
"Failed to revert the document to older version" : "Fallo al revertir el documento a la versión anterior",
"Please enter the filename to store the document as." : "Por favor, introduce el nombre de archivo con el que guardar el documento.",
"Save As" : "Guardar como",
"New filename" : "Nuevo nombre de archivo",
"Cancel" : "Cancelar",
"Save" : "Guardar",
"Loading documents…" : "Cargando documentos...",
"Edit" : "Editar",
"New Document" : "Nuevo documento",
"New Spreadsheet" : "Nueva hoja de cálculo",
"New Presentation" : "Nueva presentación",
"Could not create file" : "No se pudo crear el archivo",
"Could not create file" : "No se ha podido crear el archivo",
"New Document.odt" : "Nuevo Documento.odt",
"New Spreadsheet.ods" : "Nueva planilla de cálculo.ods",
"New Presentation.odp" : "Nueva Presentación.odp",
@ -27,6 +30,7 @@ OC.L10N.register(
"Saved" : "Guardado",
"Saved with error: Collabora Online should use the same protocol as the server installation." : "Salvado con errores: Collabora Online debe usar el mismo protocolo que el instalado en el servidor.",
"Collabora Online" : "Collabora Online",
"Open documentation" : "Abrir documentación",
"Collabora Online server" : "Servidor Collabora Online",
"URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client." : "La dirección URL (y puerto) del servidor Collabora Online que proporciona la funcionalidad de edición es un cliente WOPI.",
"Apply" : "Aplicar",
@ -35,10 +39,12 @@ OC.L10N.register(
"Use OOXML by default for new files" : "Usar OOXML de forma predeterminada para nuevos archivos",
"Enable access for external apps" : "Permitir acceso a apps externas",
"Add" : "Añadir",
"Use Canonical webroot" : "Usar raíz web canónica",
"Canonical webroot, in case there are multiple, for Collabora to use. Provide the one with least restrictions. Eg: Use non-shibbolized webroot if this instance is accessed by both shibbolized and non-shibbolized webroots. You can ignore this setting if only one webroot is used to access this instance." : "Raíz web canónica, en caso de que haya varias, para que Collabora la use. Suministra la que tenga menos restricciones. Ej: Utiliza la raíz web sin shibboleth si esta instancia se accede desde raíces web con shibboleth y sin shibboleth. Puedes ignorar esta configuración si solo se utiliza una raíz web para acceder a esta instancia.",
"Wrong password. Please retry." : "Contraseña incorrecta. Inténtelo de nuevo.",
"Password" : "Contraseña",
"OK" : "OK",
"Guest %s" : "Invitado %s",
"This link has been expired or is never existed. Please contact the person who shared it with you for details." : "Este enlace caducó o nunca existió. Para más detalles, sírvase contactar a la persona que lo compartió con usted."
"This link has been expired or is never existed. Please contact the person who shared it with you for details." : "Este enlace ha caducado o nunca ha existido. Para más detalles, ponte en contacto con la persona que lo compartió contigo."
},
"nplurals=2; plural=(n != 1);");

@ -1,20 +1,23 @@
{ "translations": {
"Saving…" : "Guardando…",
"Saving..." : "Guardando...",
"All" : "Todo",
"Download this revision" : "Descargar esta revisión",
"Restore this revision" : "Restaurar esta revisión",
"Latest revision" : "Ultima revisión",
"More versions…" : "Más versiones…",
"Just now" : "Ahora",
"Failed to revert the document to older version" : "No se pudo revertir el documento a la versión más antigua",
"Latest revision" : "Última revisión",
"More versions…" : "Más versiones...",
"Just now" : "Justo ahora",
"Failed to revert the document to older version" : "Fallo al revertir el documento a la versión anterior",
"Please enter the filename to store the document as." : "Por favor, introduce el nombre de archivo con el que guardar el documento.",
"Save As" : "Guardar como",
"New filename" : "Nuevo nombre de archivo",
"Cancel" : "Cancelar",
"Save" : "Guardar",
"Loading documents…" : "Cargando documentos...",
"Edit" : "Editar",
"New Document" : "Nuevo documento",
"New Spreadsheet" : "Nueva hoja de cálculo",
"New Presentation" : "Nueva presentación",
"Could not create file" : "No se pudo crear el archivo",
"Could not create file" : "No se ha podido crear el archivo",
"New Document.odt" : "Nuevo Documento.odt",
"New Spreadsheet.ods" : "Nueva planilla de cálculo.ods",
"New Presentation.odp" : "Nueva Presentación.odp",
@ -25,6 +28,7 @@
"Saved" : "Guardado",
"Saved with error: Collabora Online should use the same protocol as the server installation." : "Salvado con errores: Collabora Online debe usar el mismo protocolo que el instalado en el servidor.",
"Collabora Online" : "Collabora Online",
"Open documentation" : "Abrir documentación",
"Collabora Online server" : "Servidor Collabora Online",
"URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client." : "La dirección URL (y puerto) del servidor Collabora Online que proporciona la funcionalidad de edición es un cliente WOPI.",
"Apply" : "Aplicar",
@ -33,10 +37,12 @@
"Use OOXML by default for new files" : "Usar OOXML de forma predeterminada para nuevos archivos",
"Enable access for external apps" : "Permitir acceso a apps externas",
"Add" : "Añadir",
"Use Canonical webroot" : "Usar raíz web canónica",
"Canonical webroot, in case there are multiple, for Collabora to use. Provide the one with least restrictions. Eg: Use non-shibbolized webroot if this instance is accessed by both shibbolized and non-shibbolized webroots. You can ignore this setting if only one webroot is used to access this instance." : "Raíz web canónica, en caso de que haya varias, para que Collabora la use. Suministra la que tenga menos restricciones. Ej: Utiliza la raíz web sin shibboleth si esta instancia se accede desde raíces web con shibboleth y sin shibboleth. Puedes ignorar esta configuración si solo se utiliza una raíz web para acceder a esta instancia.",
"Wrong password. Please retry." : "Contraseña incorrecta. Inténtelo de nuevo.",
"Password" : "Contraseña",
"OK" : "OK",
"Guest %s" : "Invitado %s",
"This link has been expired or is never existed. Please contact the person who shared it with you for details." : "Este enlace caducó o nunca existió. Para más detalles, sírvase contactar a la persona que lo compartió con usted."
"This link has been expired or is never existed. Please contact the person who shared it with you for details." : "Este enlace ha caducado o nunca ha existido. Para más detalles, ponte en contacto con la persona que lo compartió contigo."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

@ -0,0 +1,42 @@
OC.L10N.register(
"richdocuments",
{
"Saving…" : "Guardando...",
"All" : "Todos",
"Download this revision" : "Descargar esta revisión",
"Restore this revision" : "Restaurar esta revisión",
"Please enter the filename to store the document as." : "Por favor ingresa el nombre del archivo con el cual almacenar el documento",
"Save As" : "Guardar Como",
"New filename" : "Nuevo nombredearchivo",
"Save" : "Guardar",
"Loading documents…" : "Cargando documentos...",
"Edit" : "Editar",
"New Document" : "Nuevo Documento",
"New Spreadsheet" : "Nueva Hoja de cálculo",
"New Presentation" : "Nueva Presentación",
"Could not create file" : "No fue posible crear el archivo",
"New Document.odt" : "Nuevo Documento.odt",
"New Spreadsheet.ods" : "Nueva HojaDeCálculo.ods",
"New Presentation.odp" : "Nueva Presentación.odp",
"New Document.docx" : "Nuevo Documento.docx",
"New Spreadsheet.xlsx" : "Nueva HojaDeCálculo.xlsx",
"New Presentation.pptx" : "Nueva Presentación.pptx",
"Can't create document" : "No es posible crear el documento",
"Saved" : "Guardado",
"Saved with error: Collabora Online should use the same protocol as the server installation." : "Guardado con error: Collabora Online debería usar el mismo protocolo que la instalación del servidor.",
"Collabora Online" : "Collabora Online",
"Collabora Online server" : "Servidor Collabora Online",
"URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client." : "URL (y puerto) del servidor de Collabora Online que provee la funcionalidad de edición como un cliente WOPI. ",
"Apply" : "Aplicar",
"Restrict usage to specific groups" : "Limitar uso a grupos específicos",
"Restrict edit to specific groups" : "Limitar edición a grupos específicos",
"Use OOXML by default for new files" : "Usar OOXML como predeterminado para nuevos archivos",
"Enable access for external apps" : "Habilitar acceso para aplicaciones externas",
"Add" : "Guardar",
"Wrong password. Please retry." : "Contraseña incorrecta. Por favor intentalo de nuevo.",
"Password" : "Contraseña",
"OK" : "OK",
"Guest %s" : "Invitado %s",
"This link has been expired or is never existed. Please contact the person who shared it with you for details." : "Esta liga ha expirado o nunca existió. Por favor de contacta a la persona que lo compartió contigo para más detalles."
},
"nplurals=2; plural=(n != 1);");

@ -0,0 +1,40 @@
{ "translations": {
"Saving…" : "Guardando...",
"All" : "Todos",
"Download this revision" : "Descargar esta revisión",
"Restore this revision" : "Restaurar esta revisión",
"Please enter the filename to store the document as." : "Por favor ingresa el nombre del archivo con el cual almacenar el documento",
"Save As" : "Guardar Como",
"New filename" : "Nuevo nombredearchivo",
"Save" : "Guardar",
"Loading documents…" : "Cargando documentos...",
"Edit" : "Editar",
"New Document" : "Nuevo Documento",
"New Spreadsheet" : "Nueva Hoja de cálculo",
"New Presentation" : "Nueva Presentación",
"Could not create file" : "No fue posible crear el archivo",
"New Document.odt" : "Nuevo Documento.odt",
"New Spreadsheet.ods" : "Nueva HojaDeCálculo.ods",
"New Presentation.odp" : "Nueva Presentación.odp",
"New Document.docx" : "Nuevo Documento.docx",
"New Spreadsheet.xlsx" : "Nueva HojaDeCálculo.xlsx",
"New Presentation.pptx" : "Nueva Presentación.pptx",
"Can't create document" : "No es posible crear el documento",
"Saved" : "Guardado",
"Saved with error: Collabora Online should use the same protocol as the server installation." : "Guardado con error: Collabora Online debería usar el mismo protocolo que la instalación del servidor.",
"Collabora Online" : "Collabora Online",
"Collabora Online server" : "Servidor Collabora Online",
"URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client." : "URL (y puerto) del servidor de Collabora Online que provee la funcionalidad de edición como un cliente WOPI. ",
"Apply" : "Aplicar",
"Restrict usage to specific groups" : "Limitar uso a grupos específicos",
"Restrict edit to specific groups" : "Limitar edición a grupos específicos",
"Use OOXML by default for new files" : "Usar OOXML como predeterminado para nuevos archivos",
"Enable access for external apps" : "Habilitar acceso para aplicaciones externas",
"Add" : "Guardar",
"Wrong password. Please retry." : "Contraseña incorrecta. Por favor intentalo de nuevo.",
"Password" : "Contraseña",
"OK" : "OK",
"Guest %s" : "Invitado %s",
"This link has been expired or is never existed. Please contact the person who shared it with you for details." : "Esta liga ha expirado o nunca existió. Por favor de contacta a la persona que lo compartió contigo para más detalles."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

@ -4,10 +4,6 @@ OC.L10N.register(
"Saving…" : "Guardando...",
"Download this revision" : "Descargar esta revisión",
"Restore this revision" : "Restaurar esta revisión",
"Latest revision" : "Última revisión",
"More versions…" : "Más versiones...",
"Just now" : "Justo ahora",
"Failed to revert the document to older version" : "Se presentó una falla al revertir el documento a la versión anterior",
"Save" : "Guardar",
"Loading documents…" : "Cargando documentos...",
"Edit" : "Editar",

@ -2,10 +2,6 @@
"Saving…" : "Guardando...",
"Download this revision" : "Descargar esta revisión",
"Restore this revision" : "Restaurar esta revisión",
"Latest revision" : "Última revisión",
"More versions…" : "Más versiones...",
"Just now" : "Justo ahora",
"Failed to revert the document to older version" : "Se presentó una falla al revertir el documento a la versión anterior",
"Save" : "Guardar",
"Loading documents…" : "Cargando documentos...",
"Edit" : "Editar",

@ -0,0 +1,42 @@
OC.L10N.register(
"richdocuments",
{
"Saving…" : "Guardando...",
"All" : "Todos",
"Download this revision" : "Descargar esta revisión",
"Restore this revision" : "Restaurar esta revisión",
"Please enter the filename to store the document as." : "Por favor ingresa el nombre del archivo con el cual almacenar el documento",
"Save As" : "Guardar Como",
"New filename" : "Nuevo nombredearchivo",
"Save" : "Guardar",
"Loading documents…" : "Cargando documentos...",
"Edit" : "Editar",
"New Document" : "Nuevo Documento",
"New Spreadsheet" : "Nueva Hoja de cálculo",
"New Presentation" : "Nueva Presentación",
"Could not create file" : "No fue posible crear el archivo",
"New Document.odt" : "Nuevo Documento.odt",
"New Spreadsheet.ods" : "Nueva HojaDeCálculo.ods",
"New Presentation.odp" : "Nueva Presentación.odp",
"New Document.docx" : "Nuevo Documento.docx",
"New Spreadsheet.xlsx" : "Nueva HojaDeCálculo.xlsx",
"New Presentation.pptx" : "Nueva Presentación.pptx",
"Can't create document" : "No es posible crear el documento",
"Saved" : "Guardado",
"Saved with error: Collabora Online should use the same protocol as the server installation." : "Guardado con error: Collabora Online debería usar el mismo protocolo que la instalación del servidor.",
"Collabora Online" : "Collabora Online",
"Collabora Online server" : "Servidor Collabora Online",
"URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client." : "URL (y puerto) del servidor de Collabora Online que provee la funcionalidad de edición como un cliente WOPI. ",
"Apply" : "Aplicar",
"Restrict usage to specific groups" : "Limitar uso a grupos específicos",
"Restrict edit to specific groups" : "Limitar edición a grupos específicos",
"Use OOXML by default for new files" : "Usar OOXML como predeterminado para nuevos archivos",
"Enable access for external apps" : "Habilitar acceso para aplicaciones externas",
"Add" : "Guardar",
"Wrong password. Please retry." : "Contraseña incorrecta. Por favor intentalo de nuevo.",
"Password" : "Contraseña",
"OK" : "OK",
"Guest %s" : "Invitado %s",
"This link has been expired or is never existed. Please contact the person who shared it with you for details." : "Esta liga ha expirado o nunca existió. Por favor de contacta a la persona que lo compartió contigo para más detalles."
},
"nplurals=2; plural=(n != 1);");

@ -0,0 +1,40 @@
{ "translations": {
"Saving…" : "Guardando...",
"All" : "Todos",
"Download this revision" : "Descargar esta revisión",
"Restore this revision" : "Restaurar esta revisión",
"Please enter the filename to store the document as." : "Por favor ingresa el nombre del archivo con el cual almacenar el documento",
"Save As" : "Guardar Como",
"New filename" : "Nuevo nombredearchivo",
"Save" : "Guardar",
"Loading documents…" : "Cargando documentos...",
"Edit" : "Editar",
"New Document" : "Nuevo Documento",
"New Spreadsheet" : "Nueva Hoja de cálculo",
"New Presentation" : "Nueva Presentación",
"Could not create file" : "No fue posible crear el archivo",
"New Document.odt" : "Nuevo Documento.odt",
"New Spreadsheet.ods" : "Nueva HojaDeCálculo.ods",
"New Presentation.odp" : "Nueva Presentación.odp",
"New Document.docx" : "Nuevo Documento.docx",
"New Spreadsheet.xlsx" : "Nueva HojaDeCálculo.xlsx",
"New Presentation.pptx" : "Nueva Presentación.pptx",
"Can't create document" : "No es posible crear el documento",
"Saved" : "Guardado",
"Saved with error: Collabora Online should use the same protocol as the server installation." : "Guardado con error: Collabora Online debería usar el mismo protocolo que la instalación del servidor.",
"Collabora Online" : "Collabora Online",
"Collabora Online server" : "Servidor Collabora Online",
"URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client." : "URL (y puerto) del servidor de Collabora Online que provee la funcionalidad de edición como un cliente WOPI. ",
"Apply" : "Aplicar",
"Restrict usage to specific groups" : "Limitar uso a grupos específicos",
"Restrict edit to specific groups" : "Limitar edición a grupos específicos",
"Use OOXML by default for new files" : "Usar OOXML como predeterminado para nuevos archivos",
"Enable access for external apps" : "Habilitar acceso para aplicaciones externas",
"Add" : "Guardar",
"Wrong password. Please retry." : "Contraseña incorrecta. Por favor intentalo de nuevo.",
"Password" : "Contraseña",
"OK" : "OK",
"Guest %s" : "Invitado %s",
"This link has been expired or is never existed. Please contact the person who shared it with you for details." : "Esta liga ha expirado o nunca existió. Por favor de contacta a la persona que lo compartió contigo para más detalles."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

@ -2,14 +2,12 @@ OC.L10N.register(
"richdocuments",
{
"Saving…" : "Guardando...",
"Saving..." : "Guardando...",
"All" : "Todos",
"Download this revision" : "Descargar esta revisión",
"Restore this revision" : "Restaurar esta revisión",
"Latest revision" : "Última revisión",
"More versions…" : "Más versiones...",
"Just now" : "Justo ahora",
"Failed to revert the document to older version" : "Se presentó una falla al revertir el documento a la versión anterior",
"Please enter the filename to store the document as." : "Por favor ingresa el nombre del archivo con el cual almacenar el documento",
"Save As" : "Guardar Como",
"New filename" : "Nuevo nombredearchivo",
"Save" : "Guardar",
"Loading documents…" : "Cargando documentos...",
"Edit" : "Editar",
@ -30,6 +28,8 @@ OC.L10N.register(
"Collabora Online server" : "Servidor Collabora Online",
"URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client." : "URL (y puerto) del servidor de Collabora Online que provee la funcionalidad de edición como un cliente WOPI. ",
"Apply" : "Aplicar",
"Restrict usage to specific groups" : "Limitar uso a grupos específicos",
"Restrict edit to specific groups" : "Limitar edición a grupos específicos",
"Use OOXML by default for new files" : "Usar OOXML como predeterminado para nuevos archivos",
"Enable access for external apps" : "Habilitar acceso para aplicaciones externas",
"Add" : "Guardar",

@ -1,13 +1,11 @@
{ "translations": {
"Saving…" : "Guardando...",
"Saving..." : "Guardando...",
"All" : "Todos",
"Download this revision" : "Descargar esta revisión",
"Restore this revision" : "Restaurar esta revisión",
"Latest revision" : "Última revisión",
"More versions…" : "Más versiones...",
"Just now" : "Justo ahora",
"Failed to revert the document to older version" : "Se presentó una falla al revertir el documento a la versión anterior",
"Please enter the filename to store the document as." : "Por favor ingresa el nombre del archivo con el cual almacenar el documento",
"Save As" : "Guardar Como",
"New filename" : "Nuevo nombredearchivo",
"Save" : "Guardar",
"Loading documents…" : "Cargando documentos...",
"Edit" : "Editar",
@ -28,6 +26,8 @@
"Collabora Online server" : "Servidor Collabora Online",
"URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client." : "URL (y puerto) del servidor de Collabora Online que provee la funcionalidad de edición como un cliente WOPI. ",
"Apply" : "Aplicar",
"Restrict usage to specific groups" : "Limitar uso a grupos específicos",
"Restrict edit to specific groups" : "Limitar edición a grupos específicos",
"Use OOXML by default for new files" : "Usar OOXML como predeterminado para nuevos archivos",
"Enable access for external apps" : "Habilitar acceso para aplicaciones externas",
"Add" : "Guardar",

@ -2,14 +2,12 @@ OC.L10N.register(
"richdocuments",
{
"Saving…" : "Guardando...",
"Saving..." : "Guardando...",
"All" : "Todos",
"Download this revision" : "Descargar esta revisión",
"Restore this revision" : "Restaurar esta revisión",
"Latest revision" : "Última revisión",
"More versions…" : "Más versiones...",
"Just now" : "Justo ahora",
"Failed to revert the document to older version" : "Se presentó una falla al revertir el documento a la versión anterior",
"Please enter the filename to store the document as." : "Por favor ingresa el nombre del archivo con el cual almacenar el documento",
"Save As" : "Guardar Como",
"New filename" : "Nuevo nombredearchivo",
"Save" : "Guardar",
"Loading documents…" : "Cargando documentos...",
"Edit" : "Editar",
@ -30,6 +28,8 @@ OC.L10N.register(
"Collabora Online server" : "Servidor Collabora Online",
"URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client." : "URL (y puerto) del servidor de Collabora Online que provee la funcionalidad de edición como un cliente WOPI. ",
"Apply" : "Aplicar",
"Restrict usage to specific groups" : "Limitar uso a grupos específicos",
"Restrict edit to specific groups" : "Limitar edición a grupos específicos",
"Use OOXML by default for new files" : "Usar OOXML como predeterminado para nuevos archivos",
"Enable access for external apps" : "Habilitar acceso para aplicaciones externas",
"Add" : "Guardar",

@ -1,13 +1,11 @@
{ "translations": {
"Saving…" : "Guardando...",
"Saving..." : "Guardando...",
"All" : "Todos",
"Download this revision" : "Descargar esta revisión",
"Restore this revision" : "Restaurar esta revisión",
"Latest revision" : "Última revisión",
"More versions…" : "Más versiones...",
"Just now" : "Justo ahora",
"Failed to revert the document to older version" : "Se presentó una falla al revertir el documento a la versión anterior",
"Please enter the filename to store the document as." : "Por favor ingresa el nombre del archivo con el cual almacenar el documento",
"Save As" : "Guardar Como",
"New filename" : "Nuevo nombredearchivo",
"Save" : "Guardar",
"Loading documents…" : "Cargando documentos...",
"Edit" : "Editar",
@ -28,6 +26,8 @@
"Collabora Online server" : "Servidor Collabora Online",
"URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client." : "URL (y puerto) del servidor de Collabora Online que provee la funcionalidad de edición como un cliente WOPI. ",
"Apply" : "Aplicar",
"Restrict usage to specific groups" : "Limitar uso a grupos específicos",
"Restrict edit to specific groups" : "Limitar edición a grupos específicos",
"Use OOXML by default for new files" : "Usar OOXML como predeterminado para nuevos archivos",
"Enable access for external apps" : "Habilitar acceso para aplicaciones externas",
"Add" : "Guardar",

@ -2,14 +2,12 @@ OC.L10N.register(
"richdocuments",
{
"Saving…" : "Guardando...",
"Saving..." : "Guardando...",
"All" : "Todos",
"Download this revision" : "Descargar esta revisión",
"Restore this revision" : "Restaurar esta revisión",
"Latest revision" : "Última revisión",
"More versions…" : "Más versiones...",
"Just now" : "Justo ahora",
"Failed to revert the document to older version" : "Se presentó una falla al revertir el documento a la versión anterior",
"Please enter the filename to store the document as." : "Por favor ingresa el nombre del archivo con el cual almacenar el documento",
"Save As" : "Guardar Como",
"New filename" : "Nuevo nombredearchivo",
"Save" : "Guardar",
"Loading documents…" : "Cargando documentos...",
"Edit" : "Editar",
@ -30,6 +28,8 @@ OC.L10N.register(
"Collabora Online server" : "Servidor Collabora Online",
"URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client." : "URL (y puerto) del servidor de Collabora Online que provee la funcionalidad de edición como un cliente WOPI. ",
"Apply" : "Aplicar",
"Restrict usage to specific groups" : "Limitar uso a grupos específicos",
"Restrict edit to specific groups" : "Limitar edición a grupos específicos",
"Use OOXML by default for new files" : "Usar OOXML como predeterminado para nuevos archivos",
"Enable access for external apps" : "Habilitar acceso para aplicaciones externas",
"Add" : "Guardar",

@ -1,13 +1,11 @@
{ "translations": {
"Saving…" : "Guardando...",
"Saving..." : "Guardando...",
"All" : "Todos",
"Download this revision" : "Descargar esta revisión",
"Restore this revision" : "Restaurar esta revisión",
"Latest revision" : "Última revisión",
"More versions…" : "Más versiones...",
"Just now" : "Justo ahora",
"Failed to revert the document to older version" : "Se presentó una falla al revertir el documento a la versión anterior",
"Please enter the filename to store the document as." : "Por favor ingresa el nombre del archivo con el cual almacenar el documento",
"Save As" : "Guardar Como",
"New filename" : "Nuevo nombredearchivo",
"Save" : "Guardar",
"Loading documents…" : "Cargando documentos...",
"Edit" : "Editar",
@ -28,6 +26,8 @@
"Collabora Online server" : "Servidor Collabora Online",
"URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client." : "URL (y puerto) del servidor de Collabora Online que provee la funcionalidad de edición como un cliente WOPI. ",
"Apply" : "Aplicar",
"Restrict usage to specific groups" : "Limitar uso a grupos específicos",
"Restrict edit to specific groups" : "Limitar edición a grupos específicos",
"Use OOXML by default for new files" : "Usar OOXML como predeterminado para nuevos archivos",
"Enable access for external apps" : "Habilitar acceso para aplicaciones externas",
"Add" : "Guardar",

@ -2,14 +2,12 @@ OC.L10N.register(
"richdocuments",
{
"Saving…" : "Guardando...",
"Saving..." : "Guardando...",
"All" : "Todos",
"Download this revision" : "Descargar esta revisión",
"Restore this revision" : "Restaurar esta revisión",
"Latest revision" : "Última revisión",
"More versions…" : "Más versiones...",
"Just now" : "Justo ahora",
"Failed to revert the document to older version" : "Se presentó una falla al revertir el documento a la versión anterior",
"Please enter the filename to store the document as." : "Por favor ingresa el nombre del archivo con el cual almacenar el documento",
"Save As" : "Guardar Como",
"New filename" : "Nuevo nombredearchivo",
"Save" : "Guardar",
"Loading documents…" : "Cargando documentos...",
"Edit" : "Editar",
@ -30,6 +28,8 @@ OC.L10N.register(
"Collabora Online server" : "Servidor Collabora Online",
"URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client." : "URL (y puerto) del servidor de Collabora Online que provee la funcionalidad de edición como un cliente WOPI. ",
"Apply" : "Aplicar",
"Restrict usage to specific groups" : "Limitar uso a grupos específicos",
"Restrict edit to specific groups" : "Limitar edición a grupos específicos",
"Use OOXML by default for new files" : "Usar OOXML como predeterminado para nuevos archivos",
"Enable access for external apps" : "Habilitar acceso para aplicaciones externas",
"Add" : "Guardar",

@ -1,13 +1,11 @@
{ "translations": {
"Saving…" : "Guardando...",
"Saving..." : "Guardando...",
"All" : "Todos",
"Download this revision" : "Descargar esta revisión",
"Restore this revision" : "Restaurar esta revisión",
"Latest revision" : "Última revisión",
"More versions…" : "Más versiones...",
"Just now" : "Justo ahora",
"Failed to revert the document to older version" : "Se presentó una falla al revertir el documento a la versión anterior",
"Please enter the filename to store the document as." : "Por favor ingresa el nombre del archivo con el cual almacenar el documento",
"Save As" : "Guardar Como",
"New filename" : "Nuevo nombredearchivo",
"Save" : "Guardar",
"Loading documents…" : "Cargando documentos...",
"Edit" : "Editar",
@ -28,6 +26,8 @@
"Collabora Online server" : "Servidor Collabora Online",
"URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client." : "URL (y puerto) del servidor de Collabora Online que provee la funcionalidad de edición como un cliente WOPI. ",
"Apply" : "Aplicar",
"Restrict usage to specific groups" : "Limitar uso a grupos específicos",
"Restrict edit to specific groups" : "Limitar edición a grupos específicos",
"Use OOXML by default for new files" : "Usar OOXML como predeterminado para nuevos archivos",
"Enable access for external apps" : "Habilitar acceso para aplicaciones externas",
"Add" : "Guardar",

@ -0,0 +1,42 @@
OC.L10N.register(
"richdocuments",
{
"Saving…" : "Guardando...",
"All" : "Todos",
"Download this revision" : "Descargar esta revisión",
"Restore this revision" : "Restaurar esta revisión",
"Please enter the filename to store the document as." : "Por favor ingresa el nombre del archivo con el cual almacenar el documento",
"Save As" : "Guardar Como",
"New filename" : "Nuevo nombredearchivo",
"Save" : "Guardar",
"Loading documents…" : "Cargando documentos...",
"Edit" : "Editar",
"New Document" : "Nuevo Documento",
"New Spreadsheet" : "Nueva Hoja de cálculo",
"New Presentation" : "Nueva Presentación",
"Could not create file" : "No fue posible crear el archivo",
"New Document.odt" : "Nuevo Documento.odt",
"New Spreadsheet.ods" : "Nueva HojaDeCálculo.ods",
"New Presentation.odp" : "Nueva Presentación.odp",
"New Document.docx" : "Nuevo Documento.docx",
"New Spreadsheet.xlsx" : "Nueva HojaDeCálculo.xlsx",
"New Presentation.pptx" : "Nueva Presentación.pptx",
"Can't create document" : "No es posible crear el documento",
"Saved" : "Guardado",
"Saved with error: Collabora Online should use the same protocol as the server installation." : "Guardado con error: Collabora Online debería usar el mismo protocolo que la instalación del servidor.",
"Collabora Online" : "Collabora Online",
"Collabora Online server" : "Servidor Collabora Online",
"URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client." : "URL (y puerto) del servidor de Collabora Online que provee la funcionalidad de edición como un cliente WOPI. ",
"Apply" : "Aplicar",
"Restrict usage to specific groups" : "Limitar uso a grupos específicos",
"Restrict edit to specific groups" : "Limitar edición a grupos específicos",
"Use OOXML by default for new files" : "Usar OOXML como predeterminado para nuevos archivos",
"Enable access for external apps" : "Habilitar acceso para aplicaciones externas",
"Add" : "Guardar",
"Wrong password. Please retry." : "Contraseña incorrecta. Por favor intentalo de nuevo.",
"Password" : "Contraseña",
"OK" : "OK",
"Guest %s" : "Invitado %s",
"This link has been expired or is never existed. Please contact the person who shared it with you for details." : "Esta liga ha expirado o nunca existió. Por favor de contacta a la persona que lo compartió contigo para más detalles."
},
"nplurals=2; plural=(n != 1);");

@ -0,0 +1,40 @@
{ "translations": {
"Saving…" : "Guardando...",
"All" : "Todos",
"Download this revision" : "Descargar esta revisión",
"Restore this revision" : "Restaurar esta revisión",
"Please enter the filename to store the document as." : "Por favor ingresa el nombre del archivo con el cual almacenar el documento",
"Save As" : "Guardar Como",
"New filename" : "Nuevo nombredearchivo",
"Save" : "Guardar",
"Loading documents…" : "Cargando documentos...",
"Edit" : "Editar",
"New Document" : "Nuevo Documento",
"New Spreadsheet" : "Nueva Hoja de cálculo",
"New Presentation" : "Nueva Presentación",
"Could not create file" : "No fue posible crear el archivo",
"New Document.odt" : "Nuevo Documento.odt",
"New Spreadsheet.ods" : "Nueva HojaDeCálculo.ods",
"New Presentation.odp" : "Nueva Presentación.odp",
"New Document.docx" : "Nuevo Documento.docx",
"New Spreadsheet.xlsx" : "Nueva HojaDeCálculo.xlsx",
"New Presentation.pptx" : "Nueva Presentación.pptx",
"Can't create document" : "No es posible crear el documento",
"Saved" : "Guardado",
"Saved with error: Collabora Online should use the same protocol as the server installation." : "Guardado con error: Collabora Online debería usar el mismo protocolo que la instalación del servidor.",
"Collabora Online" : "Collabora Online",
"Collabora Online server" : "Servidor Collabora Online",
"URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client." : "URL (y puerto) del servidor de Collabora Online que provee la funcionalidad de edición como un cliente WOPI. ",
"Apply" : "Aplicar",
"Restrict usage to specific groups" : "Limitar uso a grupos específicos",
"Restrict edit to specific groups" : "Limitar edición a grupos específicos",
"Use OOXML by default for new files" : "Usar OOXML como predeterminado para nuevos archivos",
"Enable access for external apps" : "Habilitar acceso para aplicaciones externas",
"Add" : "Guardar",
"Wrong password. Please retry." : "Contraseña incorrecta. Por favor intentalo de nuevo.",
"Password" : "Contraseña",
"OK" : "OK",
"Guest %s" : "Invitado %s",
"This link has been expired or is never existed. Please contact the person who shared it with you for details." : "Esta liga ha expirado o nunca existió. Por favor de contacta a la persona que lo compartió contigo para más detalles."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

@ -0,0 +1,42 @@
OC.L10N.register(
"richdocuments",
{
"Saving…" : "Guardando...",
"All" : "Todos",
"Download this revision" : "Descargar esta revisión",
"Restore this revision" : "Restaurar esta revisión",
"Please enter the filename to store the document as." : "Por favor ingresa el nombre del archivo con el cual almacenar el documento",
"Save As" : "Guardar Como",
"New filename" : "Nuevo nombredearchivo",
"Save" : "Guardar",
"Loading documents…" : "Cargando documentos...",
"Edit" : "Editar",
"New Document" : "Nuevo Documento",
"New Spreadsheet" : "Nueva Hoja de cálculo",
"New Presentation" : "Nueva Presentación",
"Could not create file" : "No fue posible crear el archivo",
"New Document.odt" : "Nuevo Documento.odt",
"New Spreadsheet.ods" : "Nueva HojaDeCálculo.ods",
"New Presentation.odp" : "Nueva Presentación.odp",
"New Document.docx" : "Nuevo Documento.docx",
"New Spreadsheet.xlsx" : "Nueva HojaDeCálculo.xlsx",
"New Presentation.pptx" : "Nueva Presentación.pptx",
"Can't create document" : "No es posible crear el documento",
"Saved" : "Guardado",
"Saved with error: Collabora Online should use the same protocol as the server installation." : "Guardado con error: Collabora Online debería usar el mismo protocolo que la instalación del servidor.",
"Collabora Online" : "Collabora Online",
"Collabora Online server" : "Servidor Collabora Online",
"URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client." : "URL (y puerto) del servidor de Collabora Online que provee la funcionalidad de edición como un cliente WOPI. ",
"Apply" : "Aplicar",
"Restrict usage to specific groups" : "Limitar uso a grupos específicos",
"Restrict edit to specific groups" : "Limitar edición a grupos específicos",
"Use OOXML by default for new files" : "Usar OOXML como predeterminado para nuevos archivos",
"Enable access for external apps" : "Habilitar acceso para aplicaciones externas",
"Add" : "Guardar",
"Wrong password. Please retry." : "Contraseña incorrecta. Por favor intentalo de nuevo.",
"Password" : "Contraseña",
"OK" : "OK",
"Guest %s" : "Invitado %s",
"This link has been expired or is never existed. Please contact the person who shared it with you for details." : "Esta liga ha expirado o nunca existió. Por favor de contacta a la persona que lo compartió contigo para más detalles."
},
"nplurals=2; plural=(n != 1);");

@ -0,0 +1,40 @@
{ "translations": {
"Saving…" : "Guardando...",
"All" : "Todos",
"Download this revision" : "Descargar esta revisión",
"Restore this revision" : "Restaurar esta revisión",
"Please enter the filename to store the document as." : "Por favor ingresa el nombre del archivo con el cual almacenar el documento",
"Save As" : "Guardar Como",
"New filename" : "Nuevo nombredearchivo",
"Save" : "Guardar",
"Loading documents…" : "Cargando documentos...",
"Edit" : "Editar",
"New Document" : "Nuevo Documento",
"New Spreadsheet" : "Nueva Hoja de cálculo",
"New Presentation" : "Nueva Presentación",
"Could not create file" : "No fue posible crear el archivo",
"New Document.odt" : "Nuevo Documento.odt",
"New Spreadsheet.ods" : "Nueva HojaDeCálculo.ods",
"New Presentation.odp" : "Nueva Presentación.odp",
"New Document.docx" : "Nuevo Documento.docx",
"New Spreadsheet.xlsx" : "Nueva HojaDeCálculo.xlsx",
"New Presentation.pptx" : "Nueva Presentación.pptx",
"Can't create document" : "No es posible crear el documento",
"Saved" : "Guardado",
"Saved with error: Collabora Online should use the same protocol as the server installation." : "Guardado con error: Collabora Online debería usar el mismo protocolo que la instalación del servidor.",
"Collabora Online" : "Collabora Online",
"Collabora Online server" : "Servidor Collabora Online",
"URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client." : "URL (y puerto) del servidor de Collabora Online que provee la funcionalidad de edición como un cliente WOPI. ",
"Apply" : "Aplicar",
"Restrict usage to specific groups" : "Limitar uso a grupos específicos",
"Restrict edit to specific groups" : "Limitar edición a grupos específicos",
"Use OOXML by default for new files" : "Usar OOXML como predeterminado para nuevos archivos",
"Enable access for external apps" : "Habilitar acceso para aplicaciones externas",
"Add" : "Guardar",
"Wrong password. Please retry." : "Contraseña incorrecta. Por favor intentalo de nuevo.",
"Password" : "Contraseña",
"OK" : "OK",
"Guest %s" : "Invitado %s",
"This link has been expired or is never existed. Please contact the person who shared it with you for details." : "Esta liga ha expirado o nunca existió. Por favor de contacta a la persona que lo compartió contigo para más detalles."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

@ -2,14 +2,17 @@ OC.L10N.register(
"richdocuments",
{
"Saving…" : "Guardando...",
"Saving..." : "Guardando...",
"All" : "Todos",
"Download this revision" : "Descargar esta revisión",
"Restore this revision" : "Restaurar esta revisión",
"Latest revision" : "Última revisión",
"Latest revision" : "Revisión más reciente",
"More versions…" : "Más versiones...",
"Just now" : "Justo ahora",
"Failed to revert the document to older version" : "Se presentó una falla al revertir el documento a la versión anterior",
"Failed to revert the document to older version" : "Se presentó una falla al revertir el documento a una versión anterior",
"Please enter the filename to store the document as." : "Por favor ingresa el nombre del archivo con el cual almacenar el documento",
"Save As" : "Guardar Como",
"New filename" : "Nuevo nombredearchivo",
"Cancel" : "Cancelar",
"Save" : "Guardar",
"Loading documents…" : "Cargando documentos...",
"Edit" : "Editar",
@ -27,12 +30,17 @@ OC.L10N.register(
"Saved" : "Guardado",
"Saved with error: Collabora Online should use the same protocol as the server installation." : "Guardado con error: Collabora Online debería usar el mismo protocolo que la instalación del servidor.",
"Collabora Online" : "Collabora Online",
"Open documentation" : "Abrir la documentación",
"Collabora Online server" : "Servidor Collabora Online",
"URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client." : "URL (y puerto) del servidor de Collabora Online que provee la funcionalidad de edición como un cliente WOPI. ",
"Apply" : "Aplicar",
"Restrict usage to specific groups" : "Limitar uso a grupos específicos",
"Restrict edit to specific groups" : "Limitar edición a grupos específicos",
"Use OOXML by default for new files" : "Usar OOXML como predeterminado para nuevos archivos",
"Enable access for external apps" : "Habilitar acceso para aplicaciones externas",
"Add" : "Guardar",
"Use Canonical webroot" : "Usar el webroot Canonico",
"Canonical webroot, in case there are multiple, for Collabora to use. Provide the one with least restrictions. Eg: Use non-shibbolized webroot if this instance is accessed by both shibbolized and non-shibbolized webroots. You can ignore this setting if only one webroot is used to access this instance." : "webroot canonico, en caso de que haya varios, para que los use Collabora. Proporciona el que tenga menos restricciones. P. ej. Usa un webroot no-shibbolizado si la instancia es accesible por tanto un webroot shibbolizado y un no shibbolizado. Puedes ignorar esta configuracion si solo un webroot se usa para acceder a la instancia. ",
"Wrong password. Please retry." : "Contraseña incorrecta. Por favor intentalo de nuevo.",
"Password" : "Contraseña",
"OK" : "OK",

@ -1,13 +1,16 @@
{ "translations": {
"Saving…" : "Guardando...",
"Saving..." : "Guardando...",
"All" : "Todos",
"Download this revision" : "Descargar esta revisión",
"Restore this revision" : "Restaurar esta revisión",
"Latest revision" : "Última revisión",
"Latest revision" : "Revisión más reciente",
"More versions…" : "Más versiones...",
"Just now" : "Justo ahora",
"Failed to revert the document to older version" : "Se presentó una falla al revertir el documento a la versión anterior",
"Failed to revert the document to older version" : "Se presentó una falla al revertir el documento a una versión anterior",
"Please enter the filename to store the document as." : "Por favor ingresa el nombre del archivo con el cual almacenar el documento",
"Save As" : "Guardar Como",
"New filename" : "Nuevo nombredearchivo",
"Cancel" : "Cancelar",
"Save" : "Guardar",
"Loading documents…" : "Cargando documentos...",
"Edit" : "Editar",
@ -25,12 +28,17 @@
"Saved" : "Guardado",
"Saved with error: Collabora Online should use the same protocol as the server installation." : "Guardado con error: Collabora Online debería usar el mismo protocolo que la instalación del servidor.",
"Collabora Online" : "Collabora Online",
"Open documentation" : "Abrir la documentación",
"Collabora Online server" : "Servidor Collabora Online",
"URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client." : "URL (y puerto) del servidor de Collabora Online que provee la funcionalidad de edición como un cliente WOPI. ",
"Apply" : "Aplicar",
"Restrict usage to specific groups" : "Limitar uso a grupos específicos",
"Restrict edit to specific groups" : "Limitar edición a grupos específicos",
"Use OOXML by default for new files" : "Usar OOXML como predeterminado para nuevos archivos",
"Enable access for external apps" : "Habilitar acceso para aplicaciones externas",
"Add" : "Guardar",
"Use Canonical webroot" : "Usar el webroot Canonico",
"Canonical webroot, in case there are multiple, for Collabora to use. Provide the one with least restrictions. Eg: Use non-shibbolized webroot if this instance is accessed by both shibbolized and non-shibbolized webroots. You can ignore this setting if only one webroot is used to access this instance." : "webroot canonico, en caso de que haya varios, para que los use Collabora. Proporciona el que tenga menos restricciones. P. ej. Usa un webroot no-shibbolizado si la instancia es accesible por tanto un webroot shibbolizado y un no shibbolizado. Puedes ignorar esta configuracion si solo un webroot se usa para acceder a la instancia. ",
"Wrong password. Please retry." : "Contraseña incorrecta. Por favor intentalo de nuevo.",
"Password" : "Contraseña",
"OK" : "OK",

@ -0,0 +1,42 @@
OC.L10N.register(
"richdocuments",
{
"Saving…" : "Guardando...",
"All" : "Todos",
"Download this revision" : "Descargar esta revisión",
"Restore this revision" : "Restaurar esta revisión",
"Please enter the filename to store the document as." : "Por favor ingresa el nombre del archivo con el cual almacenar el documento",
"Save As" : "Guardar Como",
"New filename" : "Nuevo nombredearchivo",
"Save" : "Guardar",
"Loading documents…" : "Cargando documentos...",
"Edit" : "Editar",
"New Document" : "Nuevo Documento",
"New Spreadsheet" : "Nueva Hoja de cálculo",
"New Presentation" : "Nueva Presentación",
"Could not create file" : "No fue posible crear el archivo",
"New Document.odt" : "Nuevo Documento.odt",
"New Spreadsheet.ods" : "Nueva HojaDeCálculo.ods",
"New Presentation.odp" : "Nueva Presentación.odp",
"New Document.docx" : "Nuevo Documento.docx",
"New Spreadsheet.xlsx" : "Nueva HojaDeCálculo.xlsx",
"New Presentation.pptx" : "Nueva Presentación.pptx",
"Can't create document" : "No es posible crear el documento",
"Saved" : "Guardado",
"Saved with error: Collabora Online should use the same protocol as the server installation." : "Guardado con error: Collabora Online debería usar el mismo protocolo que la instalación del servidor.",
"Collabora Online" : "Collabora Online",
"Collabora Online server" : "Servidor Collabora Online",
"URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client." : "URL (y puerto) del servidor de Collabora Online que provee la funcionalidad de edición como un cliente WOPI. ",
"Apply" : "Aplicar",
"Restrict usage to specific groups" : "Limitar uso a grupos específicos",
"Restrict edit to specific groups" : "Limitar edición a grupos específicos",
"Use OOXML by default for new files" : "Usar OOXML como predeterminado para nuevos archivos",
"Enable access for external apps" : "Habilitar acceso para aplicaciones externas",
"Add" : "Guardar",
"Wrong password. Please retry." : "Contraseña incorrecta. Por favor intentalo de nuevo.",
"Password" : "Contraseña",
"OK" : "OK",
"Guest %s" : "Invitado %s",
"This link has been expired or is never existed. Please contact the person who shared it with you for details." : "Esta liga ha expirado o nunca existió. Por favor de contacta a la persona que lo compartió contigo para más detalles."
},
"nplurals=2; plural=(n != 1);");

@ -0,0 +1,40 @@
{ "translations": {
"Saving…" : "Guardando...",
"All" : "Todos",
"Download this revision" : "Descargar esta revisión",
"Restore this revision" : "Restaurar esta revisión",
"Please enter the filename to store the document as." : "Por favor ingresa el nombre del archivo con el cual almacenar el documento",
"Save As" : "Guardar Como",
"New filename" : "Nuevo nombredearchivo",
"Save" : "Guardar",
"Loading documents…" : "Cargando documentos...",
"Edit" : "Editar",
"New Document" : "Nuevo Documento",
"New Spreadsheet" : "Nueva Hoja de cálculo",
"New Presentation" : "Nueva Presentación",
"Could not create file" : "No fue posible crear el archivo",
"New Document.odt" : "Nuevo Documento.odt",
"New Spreadsheet.ods" : "Nueva HojaDeCálculo.ods",
"New Presentation.odp" : "Nueva Presentación.odp",
"New Document.docx" : "Nuevo Documento.docx",
"New Spreadsheet.xlsx" : "Nueva HojaDeCálculo.xlsx",
"New Presentation.pptx" : "Nueva Presentación.pptx",
"Can't create document" : "No es posible crear el documento",
"Saved" : "Guardado",
"Saved with error: Collabora Online should use the same protocol as the server installation." : "Guardado con error: Collabora Online debería usar el mismo protocolo que la instalación del servidor.",
"Collabora Online" : "Collabora Online",
"Collabora Online server" : "Servidor Collabora Online",
"URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client." : "URL (y puerto) del servidor de Collabora Online que provee la funcionalidad de edición como un cliente WOPI. ",
"Apply" : "Aplicar",
"Restrict usage to specific groups" : "Limitar uso a grupos específicos",
"Restrict edit to specific groups" : "Limitar edición a grupos específicos",
"Use OOXML by default for new files" : "Usar OOXML como predeterminado para nuevos archivos",
"Enable access for external apps" : "Habilitar acceso para aplicaciones externas",
"Add" : "Guardar",
"Wrong password. Please retry." : "Contraseña incorrecta. Por favor intentalo de nuevo.",
"Password" : "Contraseña",
"OK" : "OK",
"Guest %s" : "Invitado %s",
"This link has been expired or is never existed. Please contact the person who shared it with you for details." : "Esta liga ha expirado o nunca existió. Por favor de contacta a la persona que lo compartió contigo para más detalles."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

@ -0,0 +1,42 @@
OC.L10N.register(
"richdocuments",
{
"Saving…" : "Guardando...",
"All" : "Todos",
"Download this revision" : "Descargar esta revisión",
"Restore this revision" : "Restaurar esta revisión",
"Please enter the filename to store the document as." : "Por favor ingresa el nombre del archivo con el cual almacenar el documento",
"Save As" : "Guardar Como",
"New filename" : "Nuevo nombredearchivo",
"Save" : "Guardar",
"Loading documents…" : "Cargando documentos...",
"Edit" : "Editar",
"New Document" : "Nuevo Documento",
"New Spreadsheet" : "Nueva Hoja de cálculo",
"New Presentation" : "Nueva Presentación",
"Could not create file" : "No fue posible crear el archivo",
"New Document.odt" : "Nuevo Documento.odt",
"New Spreadsheet.ods" : "Nueva HojaDeCálculo.ods",
"New Presentation.odp" : "Nueva Presentación.odp",
"New Document.docx" : "Nuevo Documento.docx",
"New Spreadsheet.xlsx" : "Nueva HojaDeCálculo.xlsx",
"New Presentation.pptx" : "Nueva Presentación.pptx",
"Can't create document" : "No es posible crear el documento",
"Saved" : "Guardado",
"Saved with error: Collabora Online should use the same protocol as the server installation." : "Guardado con error: Collabora Online debería usar el mismo protocolo que la instalación del servidor.",
"Collabora Online" : "Collabora Online",
"Collabora Online server" : "Servidor Collabora Online",
"URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client." : "URL (y puerto) del servidor de Collabora Online que provee la funcionalidad de edición como un cliente WOPI. ",
"Apply" : "Aplicar",
"Restrict usage to specific groups" : "Limitar uso a grupos específicos",
"Restrict edit to specific groups" : "Limitar edición a grupos específicos",
"Use OOXML by default for new files" : "Usar OOXML como predeterminado para nuevos archivos",
"Enable access for external apps" : "Habilitar acceso para aplicaciones externas",
"Add" : "Guardar",
"Wrong password. Please retry." : "Contraseña incorrecta. Por favor intentalo de nuevo.",
"Password" : "Contraseña",
"OK" : "OK",
"Guest %s" : "Invitado %s",
"This link has been expired or is never existed. Please contact the person who shared it with you for details." : "Esta liga ha expirado o nunca existió. Por favor de contacta a la persona que lo compartió contigo para más detalles."
},
"nplurals=2; plural=(n != 1);");

@ -0,0 +1,40 @@
{ "translations": {
"Saving…" : "Guardando...",
"All" : "Todos",
"Download this revision" : "Descargar esta revisión",
"Restore this revision" : "Restaurar esta revisión",
"Please enter the filename to store the document as." : "Por favor ingresa el nombre del archivo con el cual almacenar el documento",
"Save As" : "Guardar Como",
"New filename" : "Nuevo nombredearchivo",
"Save" : "Guardar",
"Loading documents…" : "Cargando documentos...",
"Edit" : "Editar",
"New Document" : "Nuevo Documento",
"New Spreadsheet" : "Nueva Hoja de cálculo",
"New Presentation" : "Nueva Presentación",
"Could not create file" : "No fue posible crear el archivo",
"New Document.odt" : "Nuevo Documento.odt",
"New Spreadsheet.ods" : "Nueva HojaDeCálculo.ods",
"New Presentation.odp" : "Nueva Presentación.odp",
"New Document.docx" : "Nuevo Documento.docx",
"New Spreadsheet.xlsx" : "Nueva HojaDeCálculo.xlsx",
"New Presentation.pptx" : "Nueva Presentación.pptx",
"Can't create document" : "No es posible crear el documento",
"Saved" : "Guardado",
"Saved with error: Collabora Online should use the same protocol as the server installation." : "Guardado con error: Collabora Online debería usar el mismo protocolo que la instalación del servidor.",
"Collabora Online" : "Collabora Online",
"Collabora Online server" : "Servidor Collabora Online",
"URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client." : "URL (y puerto) del servidor de Collabora Online que provee la funcionalidad de edición como un cliente WOPI. ",
"Apply" : "Aplicar",
"Restrict usage to specific groups" : "Limitar uso a grupos específicos",
"Restrict edit to specific groups" : "Limitar edición a grupos específicos",
"Use OOXML by default for new files" : "Usar OOXML como predeterminado para nuevos archivos",
"Enable access for external apps" : "Habilitar acceso para aplicaciones externas",
"Add" : "Guardar",
"Wrong password. Please retry." : "Contraseña incorrecta. Por favor intentalo de nuevo.",
"Password" : "Contraseña",
"OK" : "OK",
"Guest %s" : "Invitado %s",
"This link has been expired or is never existed. Please contact the person who shared it with you for details." : "Esta liga ha expirado o nunca existió. Por favor de contacta a la persona que lo compartió contigo para más detalles."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

@ -0,0 +1,42 @@
OC.L10N.register(
"richdocuments",
{
"Saving…" : "Guardando...",
"All" : "Todos",
"Download this revision" : "Descargar esta revisión",
"Restore this revision" : "Restaurar esta revisión",
"Please enter the filename to store the document as." : "Por favor ingresa el nombre del archivo con el cual almacenar el documento",
"Save As" : "Guardar Como",
"New filename" : "Nuevo nombredearchivo",
"Save" : "Guardar",
"Loading documents…" : "Cargando documentos...",
"Edit" : "Editar",
"New Document" : "Nuevo Documento",
"New Spreadsheet" : "Nueva Hoja de cálculo",
"New Presentation" : "Nueva Presentación",
"Could not create file" : "No fue posible crear el archivo",
"New Document.odt" : "Nuevo Documento.odt",
"New Spreadsheet.ods" : "Nueva HojaDeCálculo.ods",
"New Presentation.odp" : "Nueva Presentación.odp",
"New Document.docx" : "Nuevo Documento.docx",
"New Spreadsheet.xlsx" : "Nueva HojaDeCálculo.xlsx",
"New Presentation.pptx" : "Nueva Presentación.pptx",
"Can't create document" : "No es posible crear el documento",
"Saved" : "Guardado",
"Saved with error: Collabora Online should use the same protocol as the server installation." : "Guardado con error: Collabora Online debería usar el mismo protocolo que la instalación del servidor.",
"Collabora Online" : "Collabora Online",
"Collabora Online server" : "Servidor Collabora Online",
"URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client." : "URL (y puerto) del servidor de Collabora Online que provee la funcionalidad de edición como un cliente WOPI. ",
"Apply" : "Aplicar",
"Restrict usage to specific groups" : "Limitar uso a grupos específicos",
"Restrict edit to specific groups" : "Limitar edición a grupos específicos",
"Use OOXML by default for new files" : "Usar OOXML como predeterminado para nuevos archivos",
"Enable access for external apps" : "Habilitar acceso para aplicaciones externas",
"Add" : "Guardar",
"Wrong password. Please retry." : "Contraseña incorrecta. Por favor intentalo de nuevo.",
"Password" : "Contraseña",
"OK" : "OK",
"Guest %s" : "Invitado %s",
"This link has been expired or is never existed. Please contact the person who shared it with you for details." : "Esta liga ha expirado o nunca existió. Por favor de contacta a la persona que lo compartió contigo para más detalles."
},
"nplurals=2; plural=(n != 1);");

@ -0,0 +1,40 @@
{ "translations": {
"Saving…" : "Guardando...",
"All" : "Todos",
"Download this revision" : "Descargar esta revisión",
"Restore this revision" : "Restaurar esta revisión",
"Please enter the filename to store the document as." : "Por favor ingresa el nombre del archivo con el cual almacenar el documento",
"Save As" : "Guardar Como",
"New filename" : "Nuevo nombredearchivo",
"Save" : "Guardar",
"Loading documents…" : "Cargando documentos...",
"Edit" : "Editar",
"New Document" : "Nuevo Documento",
"New Spreadsheet" : "Nueva Hoja de cálculo",
"New Presentation" : "Nueva Presentación",
"Could not create file" : "No fue posible crear el archivo",
"New Document.odt" : "Nuevo Documento.odt",
"New Spreadsheet.ods" : "Nueva HojaDeCálculo.ods",
"New Presentation.odp" : "Nueva Presentación.odp",
"New Document.docx" : "Nuevo Documento.docx",
"New Spreadsheet.xlsx" : "Nueva HojaDeCálculo.xlsx",
"New Presentation.pptx" : "Nueva Presentación.pptx",
"Can't create document" : "No es posible crear el documento",
"Saved" : "Guardado",
"Saved with error: Collabora Online should use the same protocol as the server installation." : "Guardado con error: Collabora Online debería usar el mismo protocolo que la instalación del servidor.",
"Collabora Online" : "Collabora Online",
"Collabora Online server" : "Servidor Collabora Online",
"URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client." : "URL (y puerto) del servidor de Collabora Online que provee la funcionalidad de edición como un cliente WOPI. ",
"Apply" : "Aplicar",
"Restrict usage to specific groups" : "Limitar uso a grupos específicos",
"Restrict edit to specific groups" : "Limitar edición a grupos específicos",
"Use OOXML by default for new files" : "Usar OOXML como predeterminado para nuevos archivos",
"Enable access for external apps" : "Habilitar acceso para aplicaciones externas",
"Add" : "Guardar",
"Wrong password. Please retry." : "Contraseña incorrecta. Por favor intentalo de nuevo.",
"Password" : "Contraseña",
"OK" : "OK",
"Guest %s" : "Invitado %s",
"This link has been expired or is never existed. Please contact the person who shared it with you for details." : "Esta liga ha expirado o nunca existió. Por favor de contacta a la persona que lo compartió contigo para más detalles."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

@ -0,0 +1,42 @@
OC.L10N.register(
"richdocuments",
{
"Saving…" : "Guardando...",
"All" : "Todos",
"Download this revision" : "Descargar esta revisión",
"Restore this revision" : "Restaurar esta revisión",
"Please enter the filename to store the document as." : "Por favor ingresa el nombre del archivo con el cual almacenar el documento",
"Save As" : "Guardar Como",
"New filename" : "Nuevo nombredearchivo",
"Save" : "Guardar",
"Loading documents…" : "Cargando documentos...",
"Edit" : "Editar",
"New Document" : "Nuevo Documento",
"New Spreadsheet" : "Nueva Hoja de cálculo",
"New Presentation" : "Nueva Presentación",
"Could not create file" : "No fue posible crear el archivo",
"New Document.odt" : "Nuevo Documento.odt",
"New Spreadsheet.ods" : "Nueva HojaDeCálculo.ods",
"New Presentation.odp" : "Nueva Presentación.odp",
"New Document.docx" : "Nuevo Documento.docx",
"New Spreadsheet.xlsx" : "Nueva HojaDeCálculo.xlsx",
"New Presentation.pptx" : "Nueva Presentación.pptx",
"Can't create document" : "No es posible crear el documento",
"Saved" : "Guardado",
"Saved with error: Collabora Online should use the same protocol as the server installation." : "Guardado con error: Collabora Online debería usar el mismo protocolo que la instalación del servidor.",
"Collabora Online" : "Collabora Online",
"Collabora Online server" : "Servidor Collabora Online",
"URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client." : "URL (y puerto) del servidor de Collabora Online que provee la funcionalidad de edición como un cliente WOPI. ",
"Apply" : "Aplicar",
"Restrict usage to specific groups" : "Limitar uso a grupos específicos",
"Restrict edit to specific groups" : "Limitar edición a grupos específicos",
"Use OOXML by default for new files" : "Usar OOXML como predeterminado para nuevos archivos",
"Enable access for external apps" : "Habilitar acceso para aplicaciones externas",
"Add" : "Guardar",
"Wrong password. Please retry." : "Contraseña incorrecta. Por favor intentalo de nuevo.",
"Password" : "Contraseña",
"OK" : "OK",
"Guest %s" : "Invitado %s",
"This link has been expired or is never existed. Please contact the person who shared it with you for details." : "Esta liga ha expirado o nunca existió. Por favor de contacta a la persona que lo compartió contigo para más detalles."
},
"nplurals=2; plural=(n != 1);");

@ -0,0 +1,40 @@
{ "translations": {
"Saving…" : "Guardando...",
"All" : "Todos",
"Download this revision" : "Descargar esta revisión",
"Restore this revision" : "Restaurar esta revisión",
"Please enter the filename to store the document as." : "Por favor ingresa el nombre del archivo con el cual almacenar el documento",
"Save As" : "Guardar Como",
"New filename" : "Nuevo nombredearchivo",
"Save" : "Guardar",
"Loading documents…" : "Cargando documentos...",
"Edit" : "Editar",
"New Document" : "Nuevo Documento",
"New Spreadsheet" : "Nueva Hoja de cálculo",
"New Presentation" : "Nueva Presentación",
"Could not create file" : "No fue posible crear el archivo",
"New Document.odt" : "Nuevo Documento.odt",
"New Spreadsheet.ods" : "Nueva HojaDeCálculo.ods",
"New Presentation.odp" : "Nueva Presentación.odp",
"New Document.docx" : "Nuevo Documento.docx",
"New Spreadsheet.xlsx" : "Nueva HojaDeCálculo.xlsx",
"New Presentation.pptx" : "Nueva Presentación.pptx",
"Can't create document" : "No es posible crear el documento",
"Saved" : "Guardado",
"Saved with error: Collabora Online should use the same protocol as the server installation." : "Guardado con error: Collabora Online debería usar el mismo protocolo que la instalación del servidor.",
"Collabora Online" : "Collabora Online",
"Collabora Online server" : "Servidor Collabora Online",
"URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client." : "URL (y puerto) del servidor de Collabora Online que provee la funcionalidad de edición como un cliente WOPI. ",
"Apply" : "Aplicar",
"Restrict usage to specific groups" : "Limitar uso a grupos específicos",
"Restrict edit to specific groups" : "Limitar edición a grupos específicos",
"Use OOXML by default for new files" : "Usar OOXML como predeterminado para nuevos archivos",
"Enable access for external apps" : "Habilitar acceso para aplicaciones externas",
"Add" : "Guardar",
"Wrong password. Please retry." : "Contraseña incorrecta. Por favor intentalo de nuevo.",
"Password" : "Contraseña",
"OK" : "OK",
"Guest %s" : "Invitado %s",
"This link has been expired or is never existed. Please contact the person who shared it with you for details." : "Esta liga ha expirado o nunca existió. Por favor de contacta a la persona que lo compartió contigo para más detalles."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

@ -0,0 +1,42 @@
OC.L10N.register(
"richdocuments",
{
"Saving…" : "Guardando...",
"All" : "Todos",
"Download this revision" : "Descargar esta revisión",
"Restore this revision" : "Restaurar esta revisión",
"Please enter the filename to store the document as." : "Por favor ingresa el nombre del archivo con el cual almacenar el documento",
"Save As" : "Guardar Como",
"New filename" : "Nuevo nombredearchivo",
"Save" : "Guardar",
"Loading documents…" : "Cargando documentos...",
"Edit" : "Editar",
"New Document" : "Nuevo Documento",
"New Spreadsheet" : "Nueva Hoja de cálculo",
"New Presentation" : "Nueva Presentación",
"Could not create file" : "No fue posible crear el archivo",
"New Document.odt" : "Nuevo Documento.odt",
"New Spreadsheet.ods" : "Nueva HojaDeCálculo.ods",
"New Presentation.odp" : "Nueva Presentación.odp",
"New Document.docx" : "Nuevo Documento.docx",
"New Spreadsheet.xlsx" : "Nueva HojaDeCálculo.xlsx",
"New Presentation.pptx" : "Nueva Presentación.pptx",
"Can't create document" : "No es posible crear el documento",
"Saved" : "Guardado",
"Saved with error: Collabora Online should use the same protocol as the server installation." : "Guardado con error: Collabora Online debería usar el mismo protocolo que la instalación del servidor.",
"Collabora Online" : "Collabora Online",
"Collabora Online server" : "Servidor Collabora Online",
"URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client." : "URL (y puerto) del servidor de Collabora Online que provee la funcionalidad de edición como un cliente WOPI. ",
"Apply" : "Aplicar",
"Restrict usage to specific groups" : "Limitar uso a grupos específicos",
"Restrict edit to specific groups" : "Limitar edición a grupos específicos",
"Use OOXML by default for new files" : "Usar OOXML como predeterminado para nuevos archivos",
"Enable access for external apps" : "Habilitar acceso para aplicaciones externas",
"Add" : "Guardar",
"Wrong password. Please retry." : "Contraseña incorrecta. Por favor intentalo de nuevo.",
"Password" : "Contraseña",
"OK" : "OK",
"Guest %s" : "Invitado %s",
"This link has been expired or is never existed. Please contact the person who shared it with you for details." : "Esta liga ha expirado o nunca existió. Por favor de contacta a la persona que lo compartió contigo para más detalles."
},
"nplurals=2; plural=(n != 1);");

@ -0,0 +1,40 @@
{ "translations": {
"Saving…" : "Guardando...",
"All" : "Todos",
"Download this revision" : "Descargar esta revisión",
"Restore this revision" : "Restaurar esta revisión",
"Please enter the filename to store the document as." : "Por favor ingresa el nombre del archivo con el cual almacenar el documento",
"Save As" : "Guardar Como",
"New filename" : "Nuevo nombredearchivo",
"Save" : "Guardar",
"Loading documents…" : "Cargando documentos...",
"Edit" : "Editar",
"New Document" : "Nuevo Documento",
"New Spreadsheet" : "Nueva Hoja de cálculo",
"New Presentation" : "Nueva Presentación",
"Could not create file" : "No fue posible crear el archivo",
"New Document.odt" : "Nuevo Documento.odt",
"New Spreadsheet.ods" : "Nueva HojaDeCálculo.ods",
"New Presentation.odp" : "Nueva Presentación.odp",
"New Document.docx" : "Nuevo Documento.docx",
"New Spreadsheet.xlsx" : "Nueva HojaDeCálculo.xlsx",
"New Presentation.pptx" : "Nueva Presentación.pptx",
"Can't create document" : "No es posible crear el documento",
"Saved" : "Guardado",
"Saved with error: Collabora Online should use the same protocol as the server installation." : "Guardado con error: Collabora Online debería usar el mismo protocolo que la instalación del servidor.",
"Collabora Online" : "Collabora Online",
"Collabora Online server" : "Servidor Collabora Online",
"URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client." : "URL (y puerto) del servidor de Collabora Online que provee la funcionalidad de edición como un cliente WOPI. ",
"Apply" : "Aplicar",
"Restrict usage to specific groups" : "Limitar uso a grupos específicos",
"Restrict edit to specific groups" : "Limitar edición a grupos específicos",
"Use OOXML by default for new files" : "Usar OOXML como predeterminado para nuevos archivos",
"Enable access for external apps" : "Habilitar acceso para aplicaciones externas",
"Add" : "Guardar",
"Wrong password. Please retry." : "Contraseña incorrecta. Por favor intentalo de nuevo.",
"Password" : "Contraseña",
"OK" : "OK",
"Guest %s" : "Invitado %s",
"This link has been expired or is never existed. Please contact the person who shared it with you for details." : "Esta liga ha expirado o nunca existió. Por favor de contacta a la persona que lo compartió contigo para más detalles."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

@ -0,0 +1,42 @@
OC.L10N.register(
"richdocuments",
{
"Saving…" : "Guardando...",
"All" : "Todos",
"Download this revision" : "Descargar esta revisión",
"Restore this revision" : "Restaurar esta revisión",
"Please enter the filename to store the document as." : "Por favor ingresa el nombre del archivo con el cual almacenar el documento",
"Save As" : "Guardar Como",
"New filename" : "Nuevo nombredearchivo",
"Save" : "Guardar",
"Loading documents…" : "Cargando documentos...",
"Edit" : "Editar",
"New Document" : "Nuevo Documento",
"New Spreadsheet" : "Nueva Hoja de cálculo",
"New Presentation" : "Nueva Presentación",
"Could not create file" : "No fue posible crear el archivo",
"New Document.odt" : "Nuevo Documento.odt",
"New Spreadsheet.ods" : "Nueva HojaDeCálculo.ods",
"New Presentation.odp" : "Nueva Presentación.odp",
"New Document.docx" : "Nuevo Documento.docx",
"New Spreadsheet.xlsx" : "Nueva HojaDeCálculo.xlsx",
"New Presentation.pptx" : "Nueva Presentación.pptx",
"Can't create document" : "No es posible crear el documento",
"Saved" : "Guardado",
"Saved with error: Collabora Online should use the same protocol as the server installation." : "Guardado con error: Collabora Online debería usar el mismo protocolo que la instalación del servidor.",
"Collabora Online" : "Collabora Online",
"Collabora Online server" : "Servidor Collabora Online",
"URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client." : "URL (y puerto) del servidor de Collabora Online que provee la funcionalidad de edición como un cliente WOPI. ",
"Apply" : "Aplicar",
"Restrict usage to specific groups" : "Limitar uso a grupos específicos",
"Restrict edit to specific groups" : "Limitar edición a grupos específicos",
"Use OOXML by default for new files" : "Usar OOXML como predeterminado para nuevos archivos",
"Enable access for external apps" : "Habilitar acceso para aplicaciones externas",
"Add" : "Guardar",
"Wrong password. Please retry." : "Contraseña incorrecta. Por favor intentalo de nuevo.",
"Password" : "Contraseña",
"OK" : "OK",
"Guest %s" : "Invitado %s",
"This link has been expired or is never existed. Please contact the person who shared it with you for details." : "Esta liga ha expirado o nunca existió. Por favor de contacta a la persona que lo compartió contigo para más detalles."
},
"nplurals=2; plural=(n != 1);");

@ -0,0 +1,40 @@
{ "translations": {
"Saving…" : "Guardando...",
"All" : "Todos",
"Download this revision" : "Descargar esta revisión",
"Restore this revision" : "Restaurar esta revisión",
"Please enter the filename to store the document as." : "Por favor ingresa el nombre del archivo con el cual almacenar el documento",
"Save As" : "Guardar Como",
"New filename" : "Nuevo nombredearchivo",
"Save" : "Guardar",
"Loading documents…" : "Cargando documentos...",
"Edit" : "Editar",
"New Document" : "Nuevo Documento",
"New Spreadsheet" : "Nueva Hoja de cálculo",
"New Presentation" : "Nueva Presentación",
"Could not create file" : "No fue posible crear el archivo",
"New Document.odt" : "Nuevo Documento.odt",
"New Spreadsheet.ods" : "Nueva HojaDeCálculo.ods",
"New Presentation.odp" : "Nueva Presentación.odp",
"New Document.docx" : "Nuevo Documento.docx",
"New Spreadsheet.xlsx" : "Nueva HojaDeCálculo.xlsx",
"New Presentation.pptx" : "Nueva Presentación.pptx",
"Can't create document" : "No es posible crear el documento",
"Saved" : "Guardado",
"Saved with error: Collabora Online should use the same protocol as the server installation." : "Guardado con error: Collabora Online debería usar el mismo protocolo que la instalación del servidor.",
"Collabora Online" : "Collabora Online",
"Collabora Online server" : "Servidor Collabora Online",
"URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client." : "URL (y puerto) del servidor de Collabora Online que provee la funcionalidad de edición como un cliente WOPI. ",
"Apply" : "Aplicar",
"Restrict usage to specific groups" : "Limitar uso a grupos específicos",
"Restrict edit to specific groups" : "Limitar edición a grupos específicos",
"Use OOXML by default for new files" : "Usar OOXML como predeterminado para nuevos archivos",
"Enable access for external apps" : "Habilitar acceso para aplicaciones externas",
"Add" : "Guardar",
"Wrong password. Please retry." : "Contraseña incorrecta. Por favor intentalo de nuevo.",
"Password" : "Contraseña",
"OK" : "OK",
"Guest %s" : "Invitado %s",
"This link has been expired or is never existed. Please contact the person who shared it with you for details." : "Esta liga ha expirado o nunca existió. Por favor de contacta a la persona que lo compartió contigo para más detalles."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

@ -0,0 +1,42 @@
OC.L10N.register(
"richdocuments",
{
"Saving…" : "Guardando...",
"All" : "Todos",
"Download this revision" : "Descargar esta revisión",
"Restore this revision" : "Restaurar esta revisión",
"Please enter the filename to store the document as." : "Por favor ingresa el nombre del archivo con el cual almacenar el documento",
"Save As" : "Guardar Como",
"New filename" : "Nuevo nombredearchivo",
"Save" : "Guardar",
"Loading documents…" : "Cargando documentos...",
"Edit" : "Editar",
"New Document" : "Nuevo Documento",
"New Spreadsheet" : "Nueva Hoja de cálculo",
"New Presentation" : "Nueva Presentación",
"Could not create file" : "No fue posible crear el archivo",
"New Document.odt" : "Nuevo Documento.odt",
"New Spreadsheet.ods" : "Nueva HojaDeCálculo.ods",
"New Presentation.odp" : "Nueva Presentación.odp",
"New Document.docx" : "Nuevo Documento.docx",
"New Spreadsheet.xlsx" : "Nueva HojaDeCálculo.xlsx",
"New Presentation.pptx" : "Nueva Presentación.pptx",
"Can't create document" : "No es posible crear el documento",
"Saved" : "Guardado",
"Saved with error: Collabora Online should use the same protocol as the server installation." : "Guardado con error: Collabora Online debería usar el mismo protocolo que la instalación del servidor.",
"Collabora Online" : "Collabora Online",
"Collabora Online server" : "Servidor Collabora Online",
"URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client." : "URL (y puerto) del servidor de Collabora Online que provee la funcionalidad de edición como un cliente WOPI. ",
"Apply" : "Aplicar",
"Restrict usage to specific groups" : "Limitar uso a grupos específicos",
"Restrict edit to specific groups" : "Limitar edición a grupos específicos",
"Use OOXML by default for new files" : "Usar OOXML como predeterminado para nuevos archivos",
"Enable access for external apps" : "Habilitar acceso para aplicaciones externas",
"Add" : "Guardar",
"Wrong password. Please retry." : "Contraseña incorrecta. Por favor intentalo de nuevo.",
"Password" : "Contraseña",
"OK" : "OK",
"Guest %s" : "Invitado %s",
"This link has been expired or is never existed. Please contact the person who shared it with you for details." : "Esta liga ha expirado o nunca existió. Por favor de contacta a la persona que lo compartió contigo para más detalles."
},
"nplurals=2; plural=(n != 1);");

@ -0,0 +1,40 @@
{ "translations": {
"Saving…" : "Guardando...",
"All" : "Todos",
"Download this revision" : "Descargar esta revisión",
"Restore this revision" : "Restaurar esta revisión",
"Please enter the filename to store the document as." : "Por favor ingresa el nombre del archivo con el cual almacenar el documento",
"Save As" : "Guardar Como",
"New filename" : "Nuevo nombredearchivo",
"Save" : "Guardar",
"Loading documents…" : "Cargando documentos...",
"Edit" : "Editar",
"New Document" : "Nuevo Documento",
"New Spreadsheet" : "Nueva Hoja de cálculo",
"New Presentation" : "Nueva Presentación",
"Could not create file" : "No fue posible crear el archivo",
"New Document.odt" : "Nuevo Documento.odt",
"New Spreadsheet.ods" : "Nueva HojaDeCálculo.ods",
"New Presentation.odp" : "Nueva Presentación.odp",
"New Document.docx" : "Nuevo Documento.docx",
"New Spreadsheet.xlsx" : "Nueva HojaDeCálculo.xlsx",
"New Presentation.pptx" : "Nueva Presentación.pptx",
"Can't create document" : "No es posible crear el documento",
"Saved" : "Guardado",
"Saved with error: Collabora Online should use the same protocol as the server installation." : "Guardado con error: Collabora Online debería usar el mismo protocolo que la instalación del servidor.",
"Collabora Online" : "Collabora Online",
"Collabora Online server" : "Servidor Collabora Online",
"URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client." : "URL (y puerto) del servidor de Collabora Online que provee la funcionalidad de edición como un cliente WOPI. ",
"Apply" : "Aplicar",
"Restrict usage to specific groups" : "Limitar uso a grupos específicos",
"Restrict edit to specific groups" : "Limitar edición a grupos específicos",
"Use OOXML by default for new files" : "Usar OOXML como predeterminado para nuevos archivos",
"Enable access for external apps" : "Habilitar acceso para aplicaciones externas",
"Add" : "Guardar",
"Wrong password. Please retry." : "Contraseña incorrecta. Por favor intentalo de nuevo.",
"Password" : "Contraseña",
"OK" : "OK",
"Guest %s" : "Invitado %s",
"This link has been expired or is never existed. Please contact the person who shared it with you for details." : "Esta liga ha expirado o nunca existió. Por favor de contacta a la persona que lo compartió contigo para más detalles."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

@ -3,8 +3,6 @@ OC.L10N.register(
{
"Saving…" : "Salvestamine...",
"All" : "Kõik",
"More versions…" : "Rohkem versioone...",
"Just now" : "Kohe",
"Save" : "Salvesta",
"Edit" : "Muuda",
"Could not create file" : "Ei suuda luua faili",

@ -1,8 +1,6 @@
{ "translations": {
"Saving…" : "Salvestamine...",
"All" : "Kõik",
"More versions…" : "Rohkem versioone...",
"Just now" : "Kohe",
"Save" : "Salvesta",
"Edit" : "Muuda",
"Could not create file" : "Ei suuda luua faili",

@ -1,16 +0,0 @@
OC.L10N.register(
"richdocuments",
{
"Save" : "Gorde",
"Edit" : "Editatu",
"Could not create file" : "Ezin izan da fitxategia sortu",
"Can't create document" : "Ezin da dokumentua sortu",
"Saved" : "Gordeta",
"Apply" : "Aplikatu",
"Wrong password. Please retry." : "Pasahitz okerra. Saiatu berriro.",
"Password" : "Pasahitza",
"OK" : "Ados",
"Guest %s" : "Gonbidatua %s",
"This link has been expired or is never existed. Please contact the person who shared it with you for details." : "Lotura hau iraungi da edo ez da inoiz existitu. Mesedez zurekin partekatu zuen pertsonarekin harremanetan jarri zehaztasun gehiago izateko."
},
"nplurals=2; plural=(n != 1);");

@ -1,14 +0,0 @@
{ "translations": {
"Save" : "Gorde",
"Edit" : "Editatu",
"Could not create file" : "Ezin izan da fitxategia sortu",
"Can't create document" : "Ezin da dokumentua sortu",
"Saved" : "Gordeta",
"Apply" : "Aplikatu",
"Wrong password. Please retry." : "Pasahitz okerra. Saiatu berriro.",
"Password" : "Pasahitza",
"OK" : "Ados",
"Guest %s" : "Gonbidatua %s",
"This link has been expired or is never existed. Please contact the person who shared it with you for details." : "Lotura hau iraungi da edo ez da inoiz existitu. Mesedez zurekin partekatu zuen pertsonarekin harremanetan jarri zehaztasun gehiago izateko."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

@ -1,16 +0,0 @@
OC.L10N.register(
"richdocuments",
{
"Save" : "ذخیره",
"Edit" : "ویرایش",
"Could not create file" : "امکان ایجاد فایل وجود ندارد",
"Can't create document" : "امکان ایجاد این سند وجود ندارد",
"Saved" : "ذخیره شد",
"Apply" : "اعمال",
"Wrong password. Please retry." : "رمز اشتباه. لطفاً مجددا تکرار فرمایید.",
"Password" : "گذرواژه",
"OK" : "تایید",
"Guest %s" : "میهمان %s",
"This link has been expired or is never existed. Please contact the person who shared it with you for details." : "این لینک منقضی شده یا اینکه هرگز وجود نداشته است. لطفاً از کسی که آن را با شما به اشتراک گذاشته جزئیات را جویا شوید."
},
"nplurals=1; plural=0;");

@ -1,14 +0,0 @@
{ "translations": {
"Save" : "ذخیره",
"Edit" : "ویرایش",
"Could not create file" : "امکان ایجاد فایل وجود ندارد",
"Can't create document" : "امکان ایجاد این سند وجود ندارد",
"Saved" : "ذخیره شد",
"Apply" : "اعمال",
"Wrong password. Please retry." : "رمز اشتباه. لطفاً مجددا تکرار فرمایید.",
"Password" : "گذرواژه",
"OK" : "تایید",
"Guest %s" : "میهمان %s",
"This link has been expired or is never existed. Please contact the person who shared it with you for details." : "این لینک منقضی شده یا اینکه هرگز وجود نداشته است. لطفاً از کسی که آن را با شما به اشتراک گذاشته جزئیات را جویا شوید."
},"pluralForm" :"nplurals=1; plural=0;"
}

@ -2,14 +2,15 @@ OC.L10N.register(
"richdocuments",
{
"Saving…" : "Tallennetaan...",
"Saving..." : "Tallennetaan...",
"All" : "Kaikki",
"Download this revision" : "Lataa tämä versio",
"Restore this revision" : "Palauta tähän versioon",
"Latest revision" : "Viimeisin versio",
"More versions…" : "Enemmän versioita...",
"More versions…" : "Lisää versioita…",
"Just now" : "Juuri nyt",
"Failed to revert the document to older version" : "Asiakirjan palauttaminen aikaisempaan versioon epäonnistui",
"Please enter the filename to store the document as." : "Anna tiedostonimi, jolla asiakirja tallennetaan.",
"Save As" : "Tallenna nimellä",
"New filename" : "Uusi tiedostonimi",
"Cancel" : "Peru",
"Save" : "Tallenna",
"Loading documents…" : "Ladataan asiakirjoja...",
"Edit" : "Muokkaa",
@ -30,6 +31,8 @@ OC.L10N.register(
"Collabora Online server" : "Collabora Online -palvelin",
"URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client." : "URL-osoite (ja portti) Collabora Online -palvelimelle, joka tarjoaa mukkaustoiminnot WOPI-asiakkaana.",
"Apply" : "Toteuta",
"Restrict usage to specific groups" : "Rajoita käyttö tiettyihin ryhmiin",
"Restrict edit to specific groups" : "Rajoita muokkaus tiettyihin ryhmiin",
"Use OOXML by default for new files" : "Käytä OOXML:ää oletuksena uusille tiedostoille",
"Enable access for external apps" : "Salli pääsy ulkoisten sovellusten osalta",
"Add" : "Lisää",

@ -1,13 +1,14 @@
{ "translations": {
"Saving…" : "Tallennetaan...",
"Saving..." : "Tallennetaan...",
"All" : "Kaikki",
"Download this revision" : "Lataa tämä versio",
"Restore this revision" : "Palauta tähän versioon",
"Latest revision" : "Viimeisin versio",
"More versions…" : "Enemmän versioita...",
"More versions…" : "Lisää versioita…",
"Just now" : "Juuri nyt",
"Failed to revert the document to older version" : "Asiakirjan palauttaminen aikaisempaan versioon epäonnistui",
"Please enter the filename to store the document as." : "Anna tiedostonimi, jolla asiakirja tallennetaan.",
"Save As" : "Tallenna nimellä",
"New filename" : "Uusi tiedostonimi",
"Cancel" : "Peru",
"Save" : "Tallenna",
"Loading documents…" : "Ladataan asiakirjoja...",
"Edit" : "Muokkaa",
@ -28,6 +29,8 @@
"Collabora Online server" : "Collabora Online -palvelin",
"URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client." : "URL-osoite (ja portti) Collabora Online -palvelimelle, joka tarjoaa mukkaustoiminnot WOPI-asiakkaana.",
"Apply" : "Toteuta",
"Restrict usage to specific groups" : "Rajoita käyttö tiettyihin ryhmiin",
"Restrict edit to specific groups" : "Rajoita muokkaus tiettyihin ryhmiin",
"Use OOXML by default for new files" : "Käytä OOXML:ää oletuksena uusille tiedostoille",
"Enable access for external apps" : "Salli pääsy ulkoisten sovellusten osalta",
"Add" : "Lisää",

@ -2,14 +2,17 @@ OC.L10N.register(
"richdocuments",
{
"Saving…" : "Enregistrement…",
"Saving..." : "Enregistrement en cours…",
"All" : "Tout",
"Download this revision" : "Télécharger cette révision",
"Restore this revision" : "Restaurer cette révision",
"Latest revision" : "Dernière révision",
"Latest revision" : "Dernière version",
"More versions…" : "Plus de versions...",
"Just now" : "À l'instant",
"Failed to revert the document to older version" : "Impossible de restaurer le fichier à son ancienne version",
"Please enter the filename to store the document as." : "Veuillez entrer le nom avec lequel vous voulez que le document soit stocké.",
"Save As" : "Enregistrer sous",
"New filename" : "Nouveau nom de fichier",
"Cancel" : "Annuler",
"Save" : "Enregistrer",
"Loading documents…" : "Chargement des documents...",
"Edit" : "Éditer",
@ -27,12 +30,17 @@ OC.L10N.register(
"Saved" : "Sauvegardé",
"Saved with error: Collabora Online should use the same protocol as the server installation." : "Sauvegardé avec une erreur : Collabora Online devrait utiliser le même protocole que lors de l'installation du serveur.",
"Collabora Online" : "Collabora en ligne",
"Open documentation" : "Voir la documentation",
"Collabora Online server" : "Serveur Collabora en ligne",
"URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client." : "Adresse (et port) du serveur Collabora en ligne qui fourni la fonctionnalité d'édition comme un client WOPI.",
"Apply" : "Appliquer",
"Restrict usage to specific groups" : "Limiter l'utilisation à certains groupes",
"Restrict edit to specific groups" : "Limiter l'édition à certains groupes",
"Use OOXML by default for new files" : "Utiliser le format OOXML par défaut pour les nouveaux fichiers",
"Enable access for external apps" : "Activer l'accès depuis des applications externes",
"Add" : "Ajouter",
"Use Canonical webroot" : "Utiliser la racine web canonique",
"Canonical webroot, in case there are multiple, for Collabora to use. Provide the one with least restrictions. Eg: Use non-shibbolized webroot if this instance is accessed by both shibbolized and non-shibbolized webroots. You can ignore this setting if only one webroot is used to access this instance." : "Racine web canonique, dans le cas où il y en aurait plusieurs, pour utiliser Collabora. Renseigner celle avec le moins de restrictions. Par exemple : Utilisez la racine web non-hibbolisée si cette instance est accessible à la fois par les racines web shibbolisées et non-hibbolisées. Vous pouvez ignorer ce paramètre si une seule racine Web est utilisée pour accéder à cette instance.",
"Wrong password. Please retry." : "Mot de passe erroné. Merci de réessayer.",
"Password" : "Mot de passe",
"OK" : "OK",

@ -1,13 +1,16 @@
{ "translations": {
"Saving…" : "Enregistrement…",
"Saving..." : "Enregistrement en cours…",
"All" : "Tout",
"Download this revision" : "Télécharger cette révision",
"Restore this revision" : "Restaurer cette révision",
"Latest revision" : "Dernière révision",
"Latest revision" : "Dernière version",
"More versions…" : "Plus de versions...",
"Just now" : "À l'instant",
"Failed to revert the document to older version" : "Impossible de restaurer le fichier à son ancienne version",
"Please enter the filename to store the document as." : "Veuillez entrer le nom avec lequel vous voulez que le document soit stocké.",
"Save As" : "Enregistrer sous",
"New filename" : "Nouveau nom de fichier",
"Cancel" : "Annuler",
"Save" : "Enregistrer",
"Loading documents…" : "Chargement des documents...",
"Edit" : "Éditer",
@ -25,12 +28,17 @@
"Saved" : "Sauvegardé",
"Saved with error: Collabora Online should use the same protocol as the server installation." : "Sauvegardé avec une erreur : Collabora Online devrait utiliser le même protocole que lors de l'installation du serveur.",
"Collabora Online" : "Collabora en ligne",
"Open documentation" : "Voir la documentation",
"Collabora Online server" : "Serveur Collabora en ligne",
"URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client." : "Adresse (et port) du serveur Collabora en ligne qui fourni la fonctionnalité d'édition comme un client WOPI.",
"Apply" : "Appliquer",
"Restrict usage to specific groups" : "Limiter l'utilisation à certains groupes",
"Restrict edit to specific groups" : "Limiter l'édition à certains groupes",
"Use OOXML by default for new files" : "Utiliser le format OOXML par défaut pour les nouveaux fichiers",
"Enable access for external apps" : "Activer l'accès depuis des applications externes",
"Add" : "Ajouter",
"Use Canonical webroot" : "Utiliser la racine web canonique",
"Canonical webroot, in case there are multiple, for Collabora to use. Provide the one with least restrictions. Eg: Use non-shibbolized webroot if this instance is accessed by both shibbolized and non-shibbolized webroots. You can ignore this setting if only one webroot is used to access this instance." : "Racine web canonique, dans le cas où il y en aurait plusieurs, pour utiliser Collabora. Renseigner celle avec le moins de restrictions. Par exemple : Utilisez la racine web non-hibbolisée si cette instance est accessible à la fois par les racines web shibbolisées et non-hibbolisées. Vous pouvez ignorer ce paramètre si une seule racine Web est utilisée pour accéder à cette instance.",
"Wrong password. Please retry." : "Mot de passe erroné. Merci de réessayer.",
"Password" : "Mot de passe",
"OK" : "OK",

@ -1,9 +1,6 @@
OC.L10N.register(
"richdocuments",
{
"Latest revision" : "גרסה אחרונה",
"Just now" : "ממש עכשיו",
"Failed to revert the document to older version" : "נכשל באחזור המסמך לגרסה קודמת",
"Save" : "שמירה",
"Edit" : "עריכה",
"Could not create file" : "יצירת הקובץ נכשלה",

@ -1,7 +1,4 @@
{ "translations": {
"Latest revision" : "גרסה אחרונה",
"Just now" : "ממש עכשיו",
"Failed to revert the document to older version" : "נכשל באחזור המסמך לגרסה קודמת",
"Save" : "שמירה",
"Edit" : "עריכה",
"Could not create file" : "יצירת הקובץ נכשלה",

@ -1,16 +0,0 @@
OC.L10N.register(
"richdocuments",
{
"Save" : "Spremi",
"Edit" : "Uređivanje",
"Could not create file" : "Datoteku nije moguće kreirati",
"Can't create document" : "Dokument nije moguće kreirati",
"Saved" : "Spremljeno",
"Apply" : "Potvrda",
"Wrong password. Please retry." : "Pogrešna lozinka. Molimo pokušajte ponovno",
"Password" : "Lozinka",
"OK" : "OK",
"Guest %s" : "Gost %s",
"This link has been expired or is never existed. Please contact the person who shared it with you for details." : "Ova veza je istekla ili nikad nije postojala. Za detalje, molimo kontaktirajte osobu kojaju je s vama podijelila."
},
"nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;");

@ -1,14 +0,0 @@
{ "translations": {
"Save" : "Spremi",
"Edit" : "Uređivanje",
"Could not create file" : "Datoteku nije moguće kreirati",
"Can't create document" : "Dokument nije moguće kreirati",
"Saved" : "Spremljeno",
"Apply" : "Potvrda",
"Wrong password. Please retry." : "Pogrešna lozinka. Molimo pokušajte ponovno",
"Password" : "Lozinka",
"OK" : "OK",
"Guest %s" : "Gost %s",
"This link has been expired or is never existed. Please contact the person who shared it with you for details." : "Ova veza je istekla ili nikad nije postojala. Za detalje, molimo kontaktirajte osobu kojaju je s vama podijelila."
},"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;"
}

@ -2,7 +2,6 @@ OC.L10N.register(
"richdocuments",
{
"Saving…" : "Mentés...",
"Saving..." : "Mentés...",
"All" : "Mind",
"Download this revision" : "Jelen verzió letöltése",
"Restore this revision" : "Jelen verzió visszaállítása",
@ -10,6 +9,10 @@ OC.L10N.register(
"More versions…" : "További változatok...",
"Just now" : "Épp most",
"Failed to revert the document to older version" : "Nem sikerült visszaállítani a dokumentumot a korábbi verzióra",
"Please enter the filename to store the document as." : "Kérlek add meg, hogy milyen néven legyen tárolva a dokumentum.",
"Save As" : "Mentés másként",
"New filename" : "Új fájlnév",
"Cancel" : "Mégsem",
"Save" : "Mentés",
"Loading documents…" : "Dokumentumok betöltése",
"Edit" : "Szerkesztés",
@ -27,12 +30,17 @@ OC.L10N.register(
"Saved" : "Elmentve!",
"Saved with error: Collabora Online should use the same protocol as the server installation." : "Mentve hibával: a Collabora Online-t ugyanazon protokollon kellene használni, mint a telepített szervert.",
"Collabora Online" : "Collabora Online",
"Open documentation" : "Dokumentáció megnyitása",
"Collabora Online server" : "Collabora Online kiszolgáló",
"URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client." : "A Collabora Online kiszolgáló URL-je (és portja), amely WOPI-ügyfélként lehetővé teszi a szerkesztés funkciót.",
"Apply" : "Alkalmaz",
"Restrict usage to specific groups" : "Használat korlátozása csoportra",
"Restrict edit to specific groups" : "Szerkesztés korlátozása csoportra",
"Use OOXML by default for new files" : "OOXML használata alapértelmezettként az új fájlokhoz",
"Enable access for external apps" : "Külső alkalmazások hozzáférésének engedélyezése",
"Add" : "Hozzáadás",
"Use Canonical webroot" : "Egyszerűsített webroot használata",
"Canonical webroot, in case there are multiple, for Collabora to use. Provide the one with least restrictions. Eg: Use non-shibbolized webroot if this instance is accessed by both shibbolized and non-shibbolized webroots. You can ignore this setting if only one webroot is used to access this instance." : "A rövidített webroot-ok közül, ha több van, azt használd ami a legkevesebb megkötést adja. Pl: ha van shibbolizált és nem shibbolizált elérés a nem shibbolizáltat válaszd. Ezt a beállítást figyelmen kívül hagyhatod, ha a webroot-odat csak egyféle módon lehet elérni.",
"Wrong password. Please retry." : "Hibás jelszó. Próbálkozzon újra!",
"Password" : "Jelszó",
"OK" : "OK",

@ -1,6 +1,5 @@
{ "translations": {
"Saving…" : "Mentés...",
"Saving..." : "Mentés...",
"All" : "Mind",
"Download this revision" : "Jelen verzió letöltése",
"Restore this revision" : "Jelen verzió visszaállítása",
@ -8,6 +7,10 @@
"More versions…" : "További változatok...",
"Just now" : "Épp most",
"Failed to revert the document to older version" : "Nem sikerült visszaállítani a dokumentumot a korábbi verzióra",
"Please enter the filename to store the document as." : "Kérlek add meg, hogy milyen néven legyen tárolva a dokumentum.",
"Save As" : "Mentés másként",
"New filename" : "Új fájlnév",
"Cancel" : "Mégsem",
"Save" : "Mentés",
"Loading documents…" : "Dokumentumok betöltése",
"Edit" : "Szerkesztés",
@ -25,12 +28,17 @@
"Saved" : "Elmentve!",
"Saved with error: Collabora Online should use the same protocol as the server installation." : "Mentve hibával: a Collabora Online-t ugyanazon protokollon kellene használni, mint a telepített szervert.",
"Collabora Online" : "Collabora Online",
"Open documentation" : "Dokumentáció megnyitása",
"Collabora Online server" : "Collabora Online kiszolgáló",
"URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client." : "A Collabora Online kiszolgáló URL-je (és portja), amely WOPI-ügyfélként lehetővé teszi a szerkesztés funkciót.",
"Apply" : "Alkalmaz",
"Restrict usage to specific groups" : "Használat korlátozása csoportra",
"Restrict edit to specific groups" : "Szerkesztés korlátozása csoportra",
"Use OOXML by default for new files" : "OOXML használata alapértelmezettként az új fájlokhoz",
"Enable access for external apps" : "Külső alkalmazások hozzáférésének engedélyezése",
"Add" : "Hozzáadás",
"Use Canonical webroot" : "Egyszerűsített webroot használata",
"Canonical webroot, in case there are multiple, for Collabora to use. Provide the one with least restrictions. Eg: Use non-shibbolized webroot if this instance is accessed by both shibbolized and non-shibbolized webroots. You can ignore this setting if only one webroot is used to access this instance." : "A rövidített webroot-ok közül, ha több van, azt használd ami a legkevesebb megkötést adja. Pl: ha van shibbolizált és nem shibbolizált elérés a nem shibbolizáltat válaszd. Ezt a beállítást figyelmen kívül hagyhatod, ha a webroot-odat csak egyféle módon lehet elérni.",
"Wrong password. Please retry." : "Hibás jelszó. Próbálkozzon újra!",
"Password" : "Jelszó",
"OK" : "OK",

@ -3,9 +3,6 @@ OC.L10N.register(
{
"Download this revision" : "Discargar iste revision",
"Restore this revision" : "Restaura iste revision",
"Latest revision" : "Revision plus recente",
"Just now" : "Justo ora",
"Failed to revert the document to older version" : "Il falleva a restaurar le documento a un version plus ancian",
"Save" : "Salveguardar",
"Edit" : "Modificar",
"Could not create file" : "Impossibile crear le file",

@ -1,9 +1,6 @@
{ "translations": {
"Download this revision" : "Discargar iste revision",
"Restore this revision" : "Restaura iste revision",
"Latest revision" : "Revision plus recente",
"Just now" : "Justo ora",
"Failed to revert the document to older version" : "Il falleva a restaurar le documento a un version plus ancian",
"Save" : "Salveguardar",
"Edit" : "Modificar",
"Could not create file" : "Impossibile crear le file",

@ -1,16 +0,0 @@
OC.L10N.register(
"richdocuments",
{
"Save" : "Simpan",
"Edit" : "Sunting",
"Could not create file" : "Tidak dapat membuat berkas",
"Can't create document" : "Tidak dapat membuat dokumen",
"Saved" : "Disimpan",
"Apply" : "Terapkan",
"Wrong password. Please retry." : "Sandi salah. Silakan ulangi.",
"Password" : "Kata Sandi",
"OK" : "Oke",
"Guest %s" : "Pengunjung %s",
"This link has been expired or is never existed. Please contact the person who shared it with you for details." : "Tautan ini sudah kadaluarsa atau tidak pernah ada. Silahkan hubungi orang yang berbagi dengan Anda untuk lebih rinci."
},
"nplurals=1; plural=0;");

@ -1,14 +0,0 @@
{ "translations": {
"Save" : "Simpan",
"Edit" : "Sunting",
"Could not create file" : "Tidak dapat membuat berkas",
"Can't create document" : "Tidak dapat membuat dokumen",
"Saved" : "Disimpan",
"Apply" : "Terapkan",
"Wrong password. Please retry." : "Sandi salah. Silakan ulangi.",
"Password" : "Kata Sandi",
"OK" : "Oke",
"Guest %s" : "Pengunjung %s",
"This link has been expired or is never existed. Please contact the person who shared it with you for details." : "Tautan ini sudah kadaluarsa atau tidak pernah ada. Silahkan hubungi orang yang berbagi dengan Anda untuk lebih rinci."
},"pluralForm" :"nplurals=1; plural=0;"
}

@ -2,14 +2,17 @@ OC.L10N.register(
"richdocuments",
{
"Saving…" : "Er að vista ...",
"Saving..." : "Er að vista ...",
"All" : "Allt",
"Download this revision" : "Sækja þessa útgáfu",
"Restore this revision" : "Endurheimta þessa útgáfu",
"Latest revision" : "Núverandi útgáfa",
"Latest revision" : "Nýjasta útgáfa",
"More versions…" : "Fleiri útgáfur…",
"Just now" : "Í þessum töluðu orðum",
"Failed to revert the document to older version" : "Mistókst að endurheimta skjalið sem eldri útgáfu",
"Please enter the filename to store the document as." : "Settu inn skráarheiti til að geyma þetta skjal undir.",
"Save As" : "Vista sem",
"New filename" : "Nýtt skráarheiti",
"Cancel" : "Hætta við",
"Save" : "Vista",
"Loading documents…" : "Hleð inn skjölum...",
"Edit" : "Breyta",
@ -27,12 +30,17 @@ OC.L10N.register(
"Saved" : "Vistað",
"Saved with error: Collabora Online should use the same protocol as the server installation." : "Vistað með villu: Collabora Online ætti að nota sama samskiptamáta og uppsetning þjónsins.",
"Collabora Online" : "Collabora Online",
"Open documentation" : "Opna hjálparskjöl",
"Collabora Online server" : "Collabora Online þjónn",
"URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client." : "URL-slóð (og gátt) Collabora Online þjónsins sem gefur út breytingaeigindi sem WOPI-biðlari.",
"Apply" : "Virkja",
"Restrict usage to specific groups" : "Takmarka notkun við tiltekna hópa",
"Restrict edit to specific groups" : "Takmarka breytingar við tiltekna hópa",
"Use OOXML by default for new files" : "Nota OOXML sjálfgefið fyrir nýjar skrár",
"Enable access for external apps" : "Virkja fyrir utanaðkomandi forrit",
"Enable access for external apps" : "Virkja aðgang fyrir utanaðkomandi forrit",
"Add" : "Bæta við",
"Use Canonical webroot" : "Nota sameinaða vefrót",
"Canonical webroot, in case there are multiple, for Collabora to use. Provide the one with least restrictions. Eg: Use non-shibbolized webroot if this instance is accessed by both shibbolized and non-shibbolized webroots. You can ignore this setting if only one webroot is used to access this instance." : "Sameinuð vefrót (aðalvefrót - canonical webroot), í því tilfelli þegar þær eru margar, vefrótin sem Collabora ætti að nota. Gefðu upp þá sem er með minnstar takmarkanir. Dæmi: Notaðu vefrót sem ekki styðst við Shibboleth (non-shibbolized webroot) ef þetta tilvik gefur aðgang bæði til shibbolized og non-shibbolized vefróta. Þú getur hunsað þessa stillingu ef aðeins ein vefrót er notuð til aðgangs að þessu tilviki.",
"Wrong password. Please retry." : "Rangt lykilorð. Reyndu aftur.",
"Password" : "Lykilorð",
"OK" : "Í lagi",

@ -1,13 +1,16 @@
{ "translations": {
"Saving…" : "Er að vista ...",
"Saving..." : "Er að vista ...",
"All" : "Allt",
"Download this revision" : "Sækja þessa útgáfu",
"Restore this revision" : "Endurheimta þessa útgáfu",
"Latest revision" : "Núverandi útgáfa",
"Latest revision" : "Nýjasta útgáfa",
"More versions…" : "Fleiri útgáfur…",
"Just now" : "Í þessum töluðu orðum",
"Failed to revert the document to older version" : "Mistókst að endurheimta skjalið sem eldri útgáfu",
"Please enter the filename to store the document as." : "Settu inn skráarheiti til að geyma þetta skjal undir.",
"Save As" : "Vista sem",
"New filename" : "Nýtt skráarheiti",
"Cancel" : "Hætta við",
"Save" : "Vista",
"Loading documents…" : "Hleð inn skjölum...",
"Edit" : "Breyta",
@ -25,12 +28,17 @@
"Saved" : "Vistað",
"Saved with error: Collabora Online should use the same protocol as the server installation." : "Vistað með villu: Collabora Online ætti að nota sama samskiptamáta og uppsetning þjónsins.",
"Collabora Online" : "Collabora Online",
"Open documentation" : "Opna hjálparskjöl",
"Collabora Online server" : "Collabora Online þjónn",
"URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client." : "URL-slóð (og gátt) Collabora Online þjónsins sem gefur út breytingaeigindi sem WOPI-biðlari.",
"Apply" : "Virkja",
"Restrict usage to specific groups" : "Takmarka notkun við tiltekna hópa",
"Restrict edit to specific groups" : "Takmarka breytingar við tiltekna hópa",
"Use OOXML by default for new files" : "Nota OOXML sjálfgefið fyrir nýjar skrár",
"Enable access for external apps" : "Virkja fyrir utanaðkomandi forrit",
"Enable access for external apps" : "Virkja aðgang fyrir utanaðkomandi forrit",
"Add" : "Bæta við",
"Use Canonical webroot" : "Nota sameinaða vefrót",
"Canonical webroot, in case there are multiple, for Collabora to use. Provide the one with least restrictions. Eg: Use non-shibbolized webroot if this instance is accessed by both shibbolized and non-shibbolized webroots. You can ignore this setting if only one webroot is used to access this instance." : "Sameinuð vefrót (aðalvefrót - canonical webroot), í því tilfelli þegar þær eru margar, vefrótin sem Collabora ætti að nota. Gefðu upp þá sem er með minnstar takmarkanir. Dæmi: Notaðu vefrót sem ekki styðst við Shibboleth (non-shibbolized webroot) ef þetta tilvik gefur aðgang bæði til shibbolized og non-shibbolized vefróta. Þú getur hunsað þessa stillingu ef aðeins ein vefrót er notuð til aðgangs að þessu tilviki.",
"Wrong password. Please retry." : "Rangt lykilorð. Reyndu aftur.",
"Password" : "Lykilorð",
"OK" : "Í lagi",

@ -2,7 +2,6 @@ OC.L10N.register(
"richdocuments",
{
"Saving…" : "Salvataggio in corso...",
"Saving..." : "Salvataggio in corso...",
"All" : "Tutti",
"Download this revision" : "Scarica questa revisione",
"Restore this revision" : "Ripristina questa revisione",
@ -10,6 +9,10 @@ OC.L10N.register(
"More versions…" : "Altre versioni...",
"Just now" : "In questo istante",
"Failed to revert the document to older version" : "Il ripristino del documento alla versione più datata non è riuscito",
"Please enter the filename to store the document as." : "Digita il nome del file con cui memorizzare il documento.",
"Save As" : "Salva come",
"New filename" : "Nuovo nome file",
"Cancel" : "Annulla",
"Save" : "Salva",
"Loading documents…" : "Caricamento documenti in corso...",
"Edit" : "Modifica",
@ -27,6 +30,7 @@ OC.L10N.register(
"Saved" : "Salvato",
"Saved with error: Collabora Online should use the same protocol as the server installation." : "Salvato con errore: Collabora Online dovrebbe utilizzare lo stesso protocollo dell'installazione del server.",
"Collabora Online" : "Collabora Online",
"Open documentation" : "Apri la documentazione",
"Collabora Online server" : "Server Collabora Online",
"URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client." : "L'URL (e la porta) del server Collabora Online che fornisce la funzionalità di modifica come un client WOPI.",
"Apply" : "Applica",
@ -35,6 +39,8 @@ OC.L10N.register(
"Use OOXML by default for new files" : "Utilizza OOXML in modo predefinito per i nuovi file",
"Enable access for external apps" : "Abilita l'accesso per le applicazioni esterne",
"Add" : "Aggiungi",
"Use Canonical webroot" : "Usa webroot canonica",
"Canonical webroot, in case there are multiple, for Collabora to use. Provide the one with least restrictions. Eg: Use non-shibbolized webroot if this instance is accessed by both shibbolized and non-shibbolized webroots. You can ignore this setting if only one webroot is used to access this instance." : "Webroot canonica che utilizzerà Collabora, in presenza di più webroot. Fornisci quella con minori restrizioni. Ad es.: usa una webroot senza shibboleth se l'accesso a questa istanza viene effettuato da webroot con e senza shibboleth. Puoi ignorare questa impostazione se viene utilizzata una sola webroot per accedere a questa istanza.",
"Wrong password. Please retry." : "Password errata. Riprova.",
"Password" : "Password",
"OK" : "OK",

@ -1,6 +1,5 @@
{ "translations": {
"Saving…" : "Salvataggio in corso...",
"Saving..." : "Salvataggio in corso...",
"All" : "Tutti",
"Download this revision" : "Scarica questa revisione",
"Restore this revision" : "Ripristina questa revisione",
@ -8,6 +7,10 @@
"More versions…" : "Altre versioni...",
"Just now" : "In questo istante",
"Failed to revert the document to older version" : "Il ripristino del documento alla versione più datata non è riuscito",
"Please enter the filename to store the document as." : "Digita il nome del file con cui memorizzare il documento.",
"Save As" : "Salva come",
"New filename" : "Nuovo nome file",
"Cancel" : "Annulla",
"Save" : "Salva",
"Loading documents…" : "Caricamento documenti in corso...",
"Edit" : "Modifica",
@ -25,6 +28,7 @@
"Saved" : "Salvato",
"Saved with error: Collabora Online should use the same protocol as the server installation." : "Salvato con errore: Collabora Online dovrebbe utilizzare lo stesso protocollo dell'installazione del server.",
"Collabora Online" : "Collabora Online",
"Open documentation" : "Apri la documentazione",
"Collabora Online server" : "Server Collabora Online",
"URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client." : "L'URL (e la porta) del server Collabora Online che fornisce la funzionalità di modifica come un client WOPI.",
"Apply" : "Applica",
@ -33,6 +37,8 @@
"Use OOXML by default for new files" : "Utilizza OOXML in modo predefinito per i nuovi file",
"Enable access for external apps" : "Abilita l'accesso per le applicazioni esterne",
"Add" : "Aggiungi",
"Use Canonical webroot" : "Usa webroot canonica",
"Canonical webroot, in case there are multiple, for Collabora to use. Provide the one with least restrictions. Eg: Use non-shibbolized webroot if this instance is accessed by both shibbolized and non-shibbolized webroots. You can ignore this setting if only one webroot is used to access this instance." : "Webroot canonica che utilizzerà Collabora, in presenza di più webroot. Fornisci quella con minori restrizioni. Ad es.: usa una webroot senza shibboleth se l'accesso a questa istanza viene effettuato da webroot con e senza shibboleth. Puoi ignorare questa impostazione se viene utilizzata una sola webroot per accedere a questa istanza.",
"Wrong password. Please retry." : "Password errata. Riprova.",
"Password" : "Password",
"OK" : "OK",

@ -2,14 +2,9 @@ OC.L10N.register(
"richdocuments",
{
"Saving…" : "保存中...",
"Saving..." : "保存中...",
"All" : "すべて",
"Download this revision" : "このリビジョンをダウンロード",
"Restore this revision" : "このリビジョンを復元",
"Latest revision" : "最新バージョン",
"More versions…" : "他のバージョン …",
"Just now" : "今",
"Failed to revert the document to older version" : "以前のバージョンに戻すことに失敗しました。",
"Save" : "保存",
"Loading documents…" : "ドキュメントを読込中...",
"Edit" : "編集",

@ -1,13 +1,8 @@
{ "translations": {
"Saving…" : "保存中...",
"Saving..." : "保存中...",
"All" : "すべて",
"Download this revision" : "このリビジョンをダウンロード",
"Restore this revision" : "このリビジョンを復元",
"Latest revision" : "最新バージョン",
"More versions…" : "他のバージョン …",
"Just now" : "今",
"Failed to revert the document to older version" : "以前のバージョンに戻すことに失敗しました。",
"Save" : "保存",
"Loading documents…" : "ドキュメントを読込中...",
"Edit" : "編集",

@ -2,43 +2,49 @@ OC.L10N.register(
"richdocuments",
{
"Saving…" : "მიმდინარეობს შენახვა…",
"Saving..." : "მიმდინარეობს შენახვა…",
"All" : "ყველა",
"Download this revision" : "ამ რევიზიის გადმოწერა",
"Download this revision" : "ამ რევიზიის ჩამოტვირთვა",
"Restore this revision" : "ამ რევიზიის აღდგენა",
"Latest revision" : "ბოლო რევიზია",
"More versions…" : "მეტი ვერსიები...",
"Just now" : "ამ წამს",
"Latest revision" : "ბოლო გადასინჯვა",
"More versions…" : "მეტი გადასინჯვები…",
"Just now" : "ახლა",
"Failed to revert the document to older version" : "დოკუმენტის ძველ ვერსიაზე დაბრუნება ვერ მოხერხდა",
"Please enter the filename to store the document as." : "დოკუმენტის შესანახად გთხოვთ შეიყვანოთ ფაილის სახელი.",
"Save As" : "შენახვა როგორც",
"New filename" : "ახალი ფაილის სახელი",
"Cancel" : "უარყოფა",
"Save" : "შენახვა",
"Loading documents…" : "დოკუემნტების ჩატვირთვა...",
"Loading documents…" : "დოკუმენტების ჩატვირთვა…",
"Edit" : "რედაქტირება",
"New Document" : "ახალი დოკუმენტი",
"New Spreadsheet" : "ახალი ცხრილები",
"New Spreadsheet" : "ახალი ცხრილი",
"New Presentation" : "ახალი პრეზენტაცია",
"Could not create file" : "ფაილი ვერ შეიქმნა",
"New Document.odt" : "ახალი დოკუმენტი.odt",
"New Spreadsheet.ods" : "ახალი ცხრილები.ods",
"New Spreadsheet.ods" : "ახალი ცხრილი.ods",
"New Presentation.odp" : "ახალი პრეზენტაცია.odp",
"New Document.docx" : "ახალი დოკუმენტი.docx",
"New Spreadsheet.xlsx" : "ახალი ცხრილები.xlsx",
"New Spreadsheet.xlsx" : "ახალი ცხრილი.xlsx",
"New Presentation.pptx" : "ახალი პრეზენტაცია.pptx",
"Can't create document" : "დოკუმენტი ვერ შეიქმნა",
"Saved" : "შენახულია",
"Saved with error: Collabora Online should use the same protocol as the server installation." : "შენახულია შეცდომით: Collabora Online უნდა იყენებდეს იგივე პროტოკოლს რომელსაც იყენებს სერვერის ინსტალაცია.",
"Saved with error: Collabora Online should use the same protocol as the server installation." : "შენახულია შეცდომით: Collabora Online უნდა იყენებდეს იგივე პროტოკოლს, რომელსაც იყენებს სერვერის ინსტალაცია.",
"Collabora Online" : "Collabora Online",
"Open documentation" : "ღია დოკუმენტაცია",
"Collabora Online server" : "Collabora Online სერვერი",
"URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client." : "URL (და პორტი) Collabora Online სერვერისა რომელიც უზრუნველყოფს WOPI client-ის მაგვარ ცვლილების ფუნქციონალს.",
"Apply" : "გამოყენება",
"Restrict usage to specific groups" : "მოხმარების აკრძალვა სპეციფიურ ჯგუფებზე",
"Restrict edit to specific groups" : "ცვლიების აკრძალვა სპეციფიურ ჯგუფებზე",
"Restrict usage to specific groups" : "მოხმარების სპეციფიურ ჯგუფებზე შეზღუდვა",
"Restrict edit to specific groups" : "ცვლიების სპეციფიურ ჯგუფებზე შეზღუდვა",
"Use OOXML by default for new files" : "ახალი ფაილებისთვის OOXML-ის საწყისად გამოყენება.",
"Enable access for external apps" : "დართეთ წვდომა გარე აპლიკაცებზე",
"Enable access for external apps" : "დართეთ წვდომა გარე აპლიკაცებზე",
"Add" : "დამატება",
"Use Canonical webroot" : "კანონიკური ვებრუტის მოხმარება",
"Canonical webroot, in case there are multiple, for Collabora to use. Provide the one with least restrictions. Eg: Use non-shibbolized webroot if this instance is accessed by both shibbolized and non-shibbolized webroots. You can ignore this setting if only one webroot is used to access this instance." : "კანონიკური ვებრუტი, იმ შემთხვევაში თუ ერთზე მეტია Collabora-ს მოქმედებისთვის. მოგვაწოდეთ ერთ-ერთი ყველაზე ნაკლები შეზღუდვებით. მაგ.: გამოიყენეთ არა-შიბოლიზირებული ვებრუტი თუ ამ ინსტანციაზე წვდომა ექნება შიბოლიზირებულ და არა-შიბოლიზირებულ ვებრუტებს. იმ შემთხვევაში, თუ ინსტანციაზე მხოლოდ ერთ ვებრუტს აქვს წვდომა, შეგიძლიათ არ მიაქციოთ ამ პარამეტრს ყურადღება.",
"Wrong password. Please retry." : "არასწორი პაროლი სცადეთ ახლიდან.",
"Password" : "პაროლი",
"OK" : "დიახ",
"Guest %s" : "სტუმარი %s",
"This link has been expired or is never existed. Please contact the person who shared it with you for details." : "ამ ბმულს გაუვიდა ვადა ან არც არსებობდა. დეტალებისთვის გთხოვთ დაუკავშირდეთ პიროვნებას ვინც გაგიზიარათ ეს."
"This link has been expired or is never existed. Please contact the person who shared it with you for details." : "ამ ბმულს ვადა გაუვიდა, ან არც არსებობდა. დეტალებისთვის გთხოვთ დაუკავშირდეთ პიროვნებას, ვინც გაგიზიარათ ეს."
},
"nplurals=1; plural=0;");

@ -1,42 +1,48 @@
{ "translations": {
"Saving…" : "მიმდინარეობს შენახვა…",
"Saving..." : "მიმდინარეობს შენახვა…",
"All" : "ყველა",
"Download this revision" : "ამ რევიზიის გადმოწერა",
"Download this revision" : "ამ რევიზიის ჩამოტვირთვა",
"Restore this revision" : "ამ რევიზიის აღდგენა",
"Latest revision" : "ბოლო რევიზია",
"More versions…" : "მეტი ვერსიები...",
"Just now" : "ამ წამს",
"Latest revision" : "ბოლო გადასინჯვა",
"More versions…" : "მეტი გადასინჯვები…",
"Just now" : "ახლა",
"Failed to revert the document to older version" : "დოკუმენტის ძველ ვერსიაზე დაბრუნება ვერ მოხერხდა",
"Please enter the filename to store the document as." : "დოკუმენტის შესანახად გთხოვთ შეიყვანოთ ფაილის სახელი.",
"Save As" : "შენახვა როგორც",
"New filename" : "ახალი ფაილის სახელი",
"Cancel" : "უარყოფა",
"Save" : "შენახვა",
"Loading documents…" : "დოკუემნტების ჩატვირთვა...",
"Loading documents…" : "დოკუმენტების ჩატვირთვა…",
"Edit" : "რედაქტირება",
"New Document" : "ახალი დოკუმენტი",
"New Spreadsheet" : "ახალი ცხრილები",
"New Spreadsheet" : "ახალი ცხრილი",
"New Presentation" : "ახალი პრეზენტაცია",
"Could not create file" : "ფაილი ვერ შეიქმნა",
"New Document.odt" : "ახალი დოკუმენტი.odt",
"New Spreadsheet.ods" : "ახალი ცხრილები.ods",
"New Spreadsheet.ods" : "ახალი ცხრილი.ods",
"New Presentation.odp" : "ახალი პრეზენტაცია.odp",
"New Document.docx" : "ახალი დოკუმენტი.docx",
"New Spreadsheet.xlsx" : "ახალი ცხრილები.xlsx",
"New Spreadsheet.xlsx" : "ახალი ცხრილი.xlsx",
"New Presentation.pptx" : "ახალი პრეზენტაცია.pptx",
"Can't create document" : "დოკუმენტი ვერ შეიქმნა",
"Saved" : "შენახულია",
"Saved with error: Collabora Online should use the same protocol as the server installation." : "შენახულია შეცდომით: Collabora Online უნდა იყენებდეს იგივე პროტოკოლს რომელსაც იყენებს სერვერის ინსტალაცია.",
"Saved with error: Collabora Online should use the same protocol as the server installation." : "შენახულია შეცდომით: Collabora Online უნდა იყენებდეს იგივე პროტოკოლს, რომელსაც იყენებს სერვერის ინსტალაცია.",
"Collabora Online" : "Collabora Online",
"Open documentation" : "ღია დოკუმენტაცია",
"Collabora Online server" : "Collabora Online სერვერი",
"URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client." : "URL (და პორტი) Collabora Online სერვერისა რომელიც უზრუნველყოფს WOPI client-ის მაგვარ ცვლილების ფუნქციონალს.",
"Apply" : "გამოყენება",
"Restrict usage to specific groups" : "მოხმარების აკრძალვა სპეციფიურ ჯგუფებზე",
"Restrict edit to specific groups" : "ცვლიების აკრძალვა სპეციფიურ ჯგუფებზე",
"Restrict usage to specific groups" : "მოხმარების სპეციფიურ ჯგუფებზე შეზღუდვა",
"Restrict edit to specific groups" : "ცვლიების სპეციფიურ ჯგუფებზე შეზღუდვა",
"Use OOXML by default for new files" : "ახალი ფაილებისთვის OOXML-ის საწყისად გამოყენება.",
"Enable access for external apps" : "დართეთ წვდომა გარე აპლიკაცებზე",
"Enable access for external apps" : "დართეთ წვდომა გარე აპლიკაცებზე",
"Add" : "დამატება",
"Use Canonical webroot" : "კანონიკური ვებრუტის მოხმარება",
"Canonical webroot, in case there are multiple, for Collabora to use. Provide the one with least restrictions. Eg: Use non-shibbolized webroot if this instance is accessed by both shibbolized and non-shibbolized webroots. You can ignore this setting if only one webroot is used to access this instance." : "კანონიკური ვებრუტი, იმ შემთხვევაში თუ ერთზე მეტია Collabora-ს მოქმედებისთვის. მოგვაწოდეთ ერთ-ერთი ყველაზე ნაკლები შეზღუდვებით. მაგ.: გამოიყენეთ არა-შიბოლიზირებული ვებრუტი თუ ამ ინსტანციაზე წვდომა ექნება შიბოლიზირებულ და არა-შიბოლიზირებულ ვებრუტებს. იმ შემთხვევაში, თუ ინსტანციაზე მხოლოდ ერთ ვებრუტს აქვს წვდომა, შეგიძლიათ არ მიაქციოთ ამ პარამეტრს ყურადღება.",
"Wrong password. Please retry." : "არასწორი პაროლი სცადეთ ახლიდან.",
"Password" : "პაროლი",
"OK" : "დიახ",
"Guest %s" : "სტუმარი %s",
"This link has been expired or is never existed. Please contact the person who shared it with you for details." : "ამ ბმულს გაუვიდა ვადა ან არც არსებობდა. დეტალებისთვის გთხოვთ დაუკავშირდეთ პიროვნებას ვინც გაგიზიარათ ეს."
"This link has been expired or is never existed. Please contact the person who shared it with you for details." : "ამ ბმულს ვადა გაუვიდა, ან არც არსებობდა. დეტალებისთვის გთხოვთ დაუკავშირდეთ პიროვნებას, ვინც გაგიზიარათ ეს."
},"pluralForm" :"nplurals=1; plural=0;"
}

@ -1,15 +0,0 @@
OC.L10N.register(
"richdocuments",
{
"Save" : "ಉಳಿಸಿ",
"Edit" : "ಸಂಪಾದಿಸು",
"Could not create file" : "ಕಡತ ರಚಿಸಲಾಗಲಿಲ್ಲ",
"Can't create document" : "ದಾಖಲೆಯನ್ನು ಸೃಷ್ಟಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ",
"Saved" : "ಉಳಿಸಿದ",
"Wrong password. Please retry." : "ತಪ್ಪಾದ ಗುಪ್ತಪದ. ಮರುಪ್ರಯತ್ನಿಸಿ.",
"Password" : "ಗುಪ್ತಪದ",
"OK" : "ಸರಿ",
"Guest %s" : "ಅತಿಥಿ %s",
"This link has been expired or is never existed. Please contact the person who shared it with you for details." : "ಈ ಅಂತರ್ಜಾಲ ಕೊಂಡಿಯ ಕಾಲಾವಧಿ ಮುಗಿದಿದೆ ಅಥವಾ ಅಸ್ತಿತ್ವದಲಿಲ್ಲ. ವಿವರಗಳಿಗಾಗಿ ನೀವು ಅದನ್ನು ಹಂಚಿಕೊಂಡ ವ್ಯಕ್ತಿಯನ್ನು ಸಂಪರ್ಕಿಸಿ."
},
"nplurals=1; plural=0;");

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save