├── CHANGELOG ├── CONTRIBUTING.md ├── COPYING ├── INSTALL.md ├── Makefile ├── README.md ├── RELEASE_MGMT.md ├── admin.php ├── ajax ├── deletestorage.php ├── restrictgroup.php ├── setautocreate.php ├── setemail.php └── setquota.php ├── appinfo ├── app.php ├── database.xml ├── info.xml ├── remote.php └── version ├── css └── mozilla_sync.css ├── docs ├── ADMIN.md ├── USER.md └── imgs │ ├── SetUpSyncAccountDetails.png │ ├── SetUpSyncOptions.png │ ├── SetUpSyncSettings.png │ ├── SetUpSyncStart.png │ ├── SetUpSyncTools.png │ ├── SyncAdmin.png │ ├── SyncUserWithData.png │ └── SyncUserWithoutData.png ├── js ├── admin.js ├── settings.js └── show_notification.js ├── l10n ├── .tx │ └── config ├── af_ZA.php ├── ar.js ├── ar.json ├── ar.php ├── ast.js ├── ast.json ├── ast.php ├── az.js ├── az.json ├── az.php ├── bg_BG.js ├── bg_BG.json ├── bg_BG.php ├── bn_BD.js ├── bn_BD.json ├── bn_BD.php ├── ca.js ├── ca.json ├── ca.php ├── cs_CZ.js ├── cs_CZ.json ├── cs_CZ.php ├── cy_GB.php ├── da.js ├── da.json ├── da.php ├── de.js ├── de.json ├── de.php ├── de_AT.js ├── de_AT.json ├── de_AT.php ├── de_DE.js ├── de_DE.json ├── de_DE.php ├── el.js ├── el.json ├── el.php ├── en@pirate.php ├── en_GB.js ├── en_GB.json ├── en_GB.php ├── eo.php ├── es.js ├── es.json ├── es.php ├── es_AR.js ├── es_AR.json ├── es_AR.php ├── es_CL.php ├── es_MX.php ├── et_EE.js ├── et_EE.json ├── et_EE.php ├── eu.js ├── eu.json ├── eu.php ├── fa.js ├── fa.json ├── fa.php ├── fi_FI.js ├── fi_FI.json ├── fi_FI.php ├── fr.js ├── fr.json ├── fr.php ├── gl.js ├── gl.json ├── gl.php ├── he.js ├── he.json ├── he.php ├── hi.php ├── hr.php ├── hu_HU.js ├── hu_HU.json ├── hu_HU.php ├── ia.php ├── id.js ├── id.json ├── id.php ├── is.js ├── is.json ├── is.php ├── it.js ├── it.json ├── it.php ├── ja.js ├── ja.json ├── ja.php ├── ka.php ├── ka_GE.php ├── km.php ├── ko.js ├── ko.json ├── ko.php ├── ku_IQ.php ├── lb.php ├── lt_LT.php ├── lv.php ├── mk.php ├── ms_MY.php ├── my_MM.php ├── nb_NO.js ├── nb_NO.json ├── nb_NO.php ├── nl.js ├── nl.json ├── nl.php ├── nn_NO.php ├── oc.js ├── oc.json ├── oc.php ├── pa.php ├── pl.js ├── pl.json ├── pl.php ├── pt_BR.js ├── pt_BR.json ├── pt_BR.php ├── pt_PT.js ├── pt_PT.json ├── pt_PT.php ├── ro.js ├── ro.json ├── ro.php ├── ru.js ├── ru.json ├── ru.php ├── ru_RU.php ├── si_LK.php ├── sk_SK.js ├── sk_SK.json ├── sk_SK.php ├── sl.js ├── sl.json ├── sl.php ├── sq.js ├── sq.json ├── sq.php ├── sr.js ├── sr.json ├── sr.php ├── sr@latin.php ├── sv.js ├── sv.json ├── sv.php ├── ta_LK.php ├── te.php ├── th_TH.js ├── th_TH.json ├── th_TH.php ├── tr.js ├── tr.json ├── tr.php ├── ug.php ├── uk.js ├── uk.json ├── uk.php ├── ur_PK.php ├── vi.php ├── xgettextfiles ├── zh_CN.js ├── zh_CN.json ├── zh_CN.php ├── zh_HK.php ├── zh_TW.js ├── zh_TW.json └── zh_TW.php ├── lib ├── inputdata.php ├── outputdata.php ├── service.php ├── storage.php ├── storageservice.php ├── urlparser.php ├── user.php ├── userservice.php └── utils.php ├── settings.php ├── templates ├── admin.php └── settings.php └── tests ├── inputdata.php ├── outputdata.php ├── storageservice.php ├── urlparser.php ├── user.php └── userservice.php /CHANGELOG: -------------------------------------------------------------------------------- 1 | v1.4: 2014-02-11 2 | * IMPORTANT: Incompatible with ownCloud 6.0.0! ownCloud 5.x and ownCloud 6.0.1 work fine. 3 | * Added compatibility for iOS Foxbrowser app 4 | * Added new interface and backend to store Sync email independently of ownCloud's recovery email 5 | * Use correct precision, scale decimal type for database 6 | * More robust URL parsing 7 | * More lightweight HTML layout 8 | * Less but better debug output on errors 9 | * Improved README 10 | 11 | v1.3.1: 2013-12-21 12 | * Database sortindex column fix 13 | * Fix last sync date on personal page 14 | * Updated translations 15 | 16 | v1.3: 2013-12-17 17 | * LDAP authentication works now 18 | * Show same usage/quota as Firefox browser 19 | * Feedback for changes in admin panel 20 | * Show installed app version in admin panel 21 | * DB backend updates and fixes 22 | * Updated Readme 23 | 24 | v1.2.4: 2013-12-14 25 | * Workaround for ownCloud database bug 26 | * Better debug output for invalid storage requests 27 | * Updated translations 28 | 29 | v1.2.3: 2013-12-13 30 | * Fix not null contraint in database 31 | * Updated translations 32 | 33 | v1.2.2: 2013-12-09 34 | * Fix quota bug in ownCloud 6 35 | * Change settings and admin page for ownCloud 6 36 | 37 | v1.2.1: 2013-12-08 38 | * Fix quota display in admin panel 39 | * Improved error logging 40 | * Updated translations 41 | 42 | v1.2: 2013-12-05 43 | * Restrict to group feature added to Admin Page 44 | * Quota feature added to Admin Page 45 | * Sync status added to Personal Page 46 | * Delete server storage added to Personal Page 47 | * Extended README, added manuals and documentation 48 | * Add debug output to ownCloud log 49 | * Remove PHP warnings from ownCloud log 50 | * Check for duplicate email addresses 51 | * Fix SQLite incompatability 52 | * Updated translations 53 | 54 | v1.1.1: 2013-11-17 55 | * Added support for LDAP user backend (issue #23) 56 | * Remove not-null constraint from ttl DB column 57 | * Updated README and INSTALL files 58 | * Updated translations 59 | 60 | v1.1: 2013-11-14 61 | * Added working support for Firefox on Android 62 | * ownCloud 6.0 compatible 63 | * Added support for quota and size queries 64 | * Added missing output formats 65 | * Omit unnecessary fields in response 66 | * Other bug fixes 67 | 68 | v1.0: 2013-03-16 69 | * Initial version developed by Michal Jaskurzynski 70 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | ## Submitting issues 2 | 3 | If you have questions about how to install or use ownCloud, please direct these to the [mailing list][mailinglist] or our [forum][forum]. We are also available on [IRC][irc]. 4 | 5 | ### Short version 6 | 7 | * The [**issue template can be found here**][template]. Please always use the issue template when reporting issues. 8 | 9 | ### Guidelines 10 | * Please search the existing issues first, it's likely that your issue was already reported or even fixed. 11 | - Go to one of the repositories, click "issues" and type any word in the top search/command bar. 12 | - You can also filter by appending e. g. "state:open" to the search string. 13 | - More info on [search syntax within github](https://help.github.com/articles/searching-issues) 14 | * This repository ([mozilla_sync](https://github.com/owncloud/mozilla_sync/issues)) is *only* for issues within the ownCloud mozilla_sync code. 15 | * __SECURITY__: Report any potential security bug to security@owncloud.com following our [security policy](https://owncloud.org/security/) instead of filing an issue in our bug tracker 16 | * Report the issue using our [template][template], it includes all the information we need to track down the issue. 17 | 18 | Help us to maximize the effort we can spend fixing issues and adding new features, by not reporting duplicate issues. 19 | 20 | [template]: https://raw.github.com/owncloud/core/master/issue_template.md 21 | [mailinglist]: https://mailman.owncloud.org/mailman/listinfo/owncloud 22 | [forum]: https://forum.owncloud.org/ 23 | [irc]: https://webchat.freenode.net/?channels=owncloud&uio=d4 24 | 25 | ### Contribute Code and translations 26 | Please check [core's contribution guidelines](https://github.com/owncloud/core/blob/master/CONTRIBUTING.md) for further information about contributing code and translations. 27 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | # ownCloud - Mozilla Sync 2 | # 3 | # @author Michal Jaskurzynski, Oliver Gasser 4 | # 5 | # This library is free software; you can redistribute it and/or 6 | # modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE 7 | # License as published by the Free Software Foundation; either 8 | # version 3 of the License, or any later version. 9 | # 10 | # This library is distributed in the hope that it will be useful, 11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | # GNU AFFERO GENERAL PUBLIC LICENSE for more details. 14 | # 15 | # You should have received a copy of the GNU Affero General Public 16 | # License along with this library. If not, see . 17 | 18 | # This makefile is for general project specific stuff like packaging a new 19 | # release for the app store and running php unittests which require core 20 | 21 | app_name=mozilla_sync 22 | build_directory=build/ 23 | package_name=$(build_directory)$(app_name) 24 | 25 | version=$(shell cat appinfo/version | tr -d '[:space:]') 26 | 27 | dist: 28 | git archive HEAD --format=zip --prefix=$(app_name)/ > $(package_name)-$(version).zip 29 | 30 | debug: 31 | git archive HEAD --format=zip --prefix=$(app_name)/ > $(package_name)-$(version)-debug.zip 32 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Mozilla Sync app 2 | ================ 3 | 4 | Simple ownCloud app integrating the Mozilla Sync API. 5 | It allows users to synchronize Firefox data (e.g. bookmarks, passwords, history,...) using their ownCloud server. 6 | 7 | ### Content 8 | 1. Installation 9 | 2. Manual 10 | 3. Helpful hints 11 | 1. Firefox on Android 12 | 2. LDAP 13 | 4. Maintainers 14 | 5. API 15 | 16 | Installation 17 | ------------ 18 | For install, re-/uninstall and upgrade instruction look at [Changing your Mozilla Sync installation](INSTALL.md). 19 | 20 | Manual 21 | ------ 22 | Information for Mozilla Sync users can be found in the [User Manual](docs/USER.md). Information for ownCloud admins can be found in the [Admin Manual](docs/ADMIN.md). 23 | 24 | Helpful hints 25 | ------------- 26 | 27 | ### Firefox on Android 28 | 29 | Older versions of Firefox on Android used only the ````RC4-SHA```` SSL cipher suite. This has been fixed and "TLS_DHE_RSA_WITH_AES_256_CBC_SHA" and "TLS_DHE_RSA_WITH_AES_128_CBC_SHA" have been added to Firefox 29. 30 | 31 | Mozilla has a document listing the [recommended TLS ciphers](https://wiki.mozilla.org/Security/Server_Side_TLS#Recommended_Ciphersuite). 32 | 33 | Firefox Sync on Android does not support SNI. A workaround is to disable it for the domain owncloud is using. 34 | Use this in your ```nginx.conf```: 35 | ``` 36 | listen 443 default_server ssl; 37 | ``` 38 | 39 | Additionally, if you are using a self-signed SSL certificate you need to import it to Android via: 40 | *Settings → Security → Install from storage*. Note that Android will only import self-signed certificates with the CA bit set. 41 | The import was successful when you see your certificate in *Settings → Security → Trusted credentials*. 42 | 43 | ### LDAP 44 | If you want to use Mozilla Sync with an LDAP backend, make sure that you enable email login. To do this set the LDAP user login filter in your admin panel to e.g. ```(|(uid=%uid)(mail=%uid))```. 45 | 46 | Furthermore, you need to set the special attribute ```Email``` in your LDAP configuration. See the [ownCloud manual](http://doc.owncloud.org/server/5.0/admin_manual/configuration/auth_ldap.html#special-attributes) for more information. 47 | 48 | Maintainers 49 | ----------- 50 | Mozilla Sync is currently maintained by [@ogasser](https://github.com/ogasser). 51 | It was originally developed and maintained by Michal Jaskurzynski ([@jaskoola](https://github.com/jaskoola)). 52 | 53 | API 54 | --- 55 | The Mozilla Sync API is documented on Mozilla's wiki: 56 | * [Sync Client Documentation](http://docs.services.mozilla.com/sync/index.html) 57 | * [The Life of a Sync](http://docs.services.mozilla.com/sync/lifeofasync.html) 58 | * [Global Storage Version 5](http://docs.services.mozilla.com/sync/storageformat5.html) 59 | * [Storage API v1.1](http://docs.services.mozilla.com/storage/apis-1.1.html) 60 | * [User API v1.0](https://docs.services.mozilla.com/reg/apis.html) 61 | -------------------------------------------------------------------------------- /RELEASE_MGMT.md: -------------------------------------------------------------------------------- 1 | Release Management 2 | ================== 3 | 4 | This document lists the things to do before uploading a new release to [apps.owncloud.com](http://apps.owncloud.com/content/show.php/Mozilla+Sync?content=161793): 5 | 6 | 1. Test whether new release works properly. 7 | 2. Merge new release branch into the *master* branch. 8 | 3. Read new language strings ```l10n.pl mozilla_sync read``` and add template to the *master* branch. 9 | 4. Wait until transifex pushes the translated strings to the *master* branch. 10 | 5. Add changes since last version to the [CHANGELOG](CHANGELOG). 11 | 6. Update version in ```appinfo/version```. 12 | 7. Update release date in [CHANGELOG](CHANGELOG). 13 | 8. ```make``` new version. 14 | 9. Upload new version to [apps.owncloud.com](http://apps.owncloud.com/content/show.php/Mozilla+Sync?content=161793). 15 | 10. Add ```git tag``` to the *master* branch. 16 | 17 | -------------------------------------------------------------------------------- /admin.php: -------------------------------------------------------------------------------- 1 | assign('mozillaSyncRestrictGroup', \OCA\mozilla_sync\User::getAuthorizedGroup()); 14 | $tmpl->assign('mozillaSyncQuota', \OCA\mozilla_sync\User::getQuota()); 15 | $tmpl->assign('mozillaSyncAutoCreateUser', \OCA\mozilla_sync\User::isAutoCreateUser()); 16 | 17 | return $tmpl->fetchPage(); 18 | 19 | /* vim: set ts=4 sw=4 tw=80 noet : */ 20 | 21 | -------------------------------------------------------------------------------- /ajax/deletestorage.php: -------------------------------------------------------------------------------- 1 | array( "message" => $l->t("Failed to delete storage") ))); 27 | } 28 | else { 29 | if (\OCA\mozilla_sync\User::deleteUser($syncId) === false) { 30 | // Send error message 31 | \OCP\JSON::error(array( "data" => array( "message" => $l->t("Failed to delete user") ))); 32 | } 33 | else { 34 | // Send success message 35 | \OCP\JSON::success(array( "data" => array( "message" => $l->t("Storage deleted") ))); 36 | } 37 | } 38 | } 39 | else { 40 | // Send error message 41 | \OCP\JSON::error(array( "data" => array( "message" => $l->t("User not found") ))); 42 | } 43 | 44 | /* vim: set ts=4 sw=4 tw=80 noet : */ 45 | -------------------------------------------------------------------------------- /ajax/restrictgroup.php: -------------------------------------------------------------------------------- 1 | array( "message" => $l->t("Restriction saved") ))); 33 | 34 | /* vim: set ts=4 sw=4 tw=80 noet : */ 35 | 36 | -------------------------------------------------------------------------------- /ajax/setautocreate.php: -------------------------------------------------------------------------------- 1 | array( "message" => $l->t("Invalid input") ))); 17 | 18 | } else { 19 | // Update settings values 20 | \OCA\mozilla_sync\User::setAutoCreateUser($autocreate); 21 | 22 | // Send success message 23 | if ( $autocreate ) { 24 | \OCP\JSON::success(array( "data" => array( "message" => $l->t("Auto create sync account enabled") ))); 25 | } else { 26 | \OCP\JSON::success(array( "data" => array( "message" => $l->t("Auto create sync account disabled") ))); 27 | } 28 | } 29 | 30 | /* vim: set ts=4 sw=4 tw=80 noet : */ 31 | -------------------------------------------------------------------------------- /ajax/setemail.php: -------------------------------------------------------------------------------- 1 | array( "message" => $l->t("Invalid input") ))); 25 | } else { 26 | // Update settings values 27 | \OCA\mozilla_sync\User::setEmail($email); 28 | 29 | // Send success message 30 | \OCP\JSON::success(array( "data" => array( "message" => $l->t("Sync email saved") ))); 31 | } 32 | 33 | /* vim: set ts=4 sw=4 tw=80 noet : */ 34 | -------------------------------------------------------------------------------- /ajax/setquota.php: -------------------------------------------------------------------------------- 1 | array( "message" => $l->t("Invalid input") ))); 25 | } else { 26 | // Update settings values 27 | \OCA\mozilla_sync\User::setQuota($quota); 28 | 29 | // Send success message 30 | \OCP\JSON::success(array( "data" => array( "message" => $l->t("Quota saved") ))); 31 | } 32 | 33 | /* vim: set ts=4 sw=4 tw=80 noet : */ 34 | -------------------------------------------------------------------------------- /appinfo/app.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | mozilla_sync 4 | Mozilla Sync 5 | Use your ownCloud server to synchronize your Firefox bookmarks, history, passwords, settings between multiple devices. Works for Firefox on Desktop and Firefox on Android. 6 | AGPL 7 | Michal Jaskurzynski, Oliver Gasser 8 | 4.93 9 | 10 | appinfo/remote.php 11 | 12 | 13 | -------------------------------------------------------------------------------- /appinfo/remote.php: -------------------------------------------------------------------------------- 1 | isValid()) { 21 | OCA\mozilla_sync\Utils::changeHttpStatus(404); 22 | exit(); 23 | } 24 | 25 | // Get service type based on URL and determine whether to start user or storage service 26 | $service = OCA\mozilla_sync\Utils::getServiceType(); 27 | 28 | if ($service === 'userapi') { 29 | // Send a timestamp header 30 | OCA\mozilla_sync\Utils::sendMozillaTimestampHeader(); 31 | $userService = new OCA\mozilla_sync\UserService($urlParser); 32 | $userService->run(); 33 | } else if ($service === 'storageapi') { 34 | // Note: Timestamp header will be sent later by storage API service 35 | $storageService = new OCA\mozilla_sync\StorageService($urlParser); 36 | $storageService->run(); 37 | } 38 | 39 | /* vim: set ts=4 sw=4 tw=80 noet : */ 40 | -------------------------------------------------------------------------------- /appinfo/version: -------------------------------------------------------------------------------- 1 | 1.4 2 | -------------------------------------------------------------------------------- /css/mozilla_sync.css: -------------------------------------------------------------------------------- 1 | #firstrun { width: 100%; position: absolute; top: 5em; left: 0; text-align: center; font-weight:bold; font-size:1.5em; color:#777; } 2 | #main { width: 100%; position: absolute; top: 5em; left: 5em; } -------------------------------------------------------------------------------- /docs/ADMIN.md: -------------------------------------------------------------------------------- 1 | Admin Manual 2 | ============ 3 | 4 | The admin settings for the Mozilla Sync app look like this: 5 | 6 | 7 | 8 | There are two settings: 9 | 10 | 1. *Restrict to group* controls the access to the Mozilla Sync app. 11 | 2. *Sync quota* limits the data that can be stored on the server per user. 12 | -------------------------------------------------------------------------------- /docs/USER.md: -------------------------------------------------------------------------------- 1 | User Manual 2 | =========== 3 | 4 | Before Sync set up 5 | ------------------ 6 | Before Sync is set up your personal settings in ownCloud will look like this: 7 | 8 | 9 | 10 | It shows your client configuration which has to be typed in when setting up Sync for the first time. 11 | 12 | After Sync set up 13 | ----------------- 14 | If you completed the Sync set up, the personal page will look like this: 15 | 16 | 17 | 18 | The new section *Sync Status* means that the set up succeeded and shows some additional data. 19 | Furthermore, you get the *Delete storage* button. This will remove all your data from the server and delete your Sync user. Deleting all the data will not inform your paired devices and they will be in an incosistent state. 20 | -------------------------------------------------------------------------------- /docs/imgs/SetUpSyncAccountDetails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud-archive/mozilla_sync/6b868e134c4635bd8a1b84e20aed9ed5d009a742/docs/imgs/SetUpSyncAccountDetails.png -------------------------------------------------------------------------------- /docs/imgs/SetUpSyncOptions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud-archive/mozilla_sync/6b868e134c4635bd8a1b84e20aed9ed5d009a742/docs/imgs/SetUpSyncOptions.png -------------------------------------------------------------------------------- /docs/imgs/SetUpSyncSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud-archive/mozilla_sync/6b868e134c4635bd8a1b84e20aed9ed5d009a742/docs/imgs/SetUpSyncSettings.png -------------------------------------------------------------------------------- /docs/imgs/SetUpSyncStart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud-archive/mozilla_sync/6b868e134c4635bd8a1b84e20aed9ed5d009a742/docs/imgs/SetUpSyncStart.png -------------------------------------------------------------------------------- /docs/imgs/SetUpSyncTools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud-archive/mozilla_sync/6b868e134c4635bd8a1b84e20aed9ed5d009a742/docs/imgs/SetUpSyncTools.png -------------------------------------------------------------------------------- /docs/imgs/SyncAdmin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud-archive/mozilla_sync/6b868e134c4635bd8a1b84e20aed9ed5d009a742/docs/imgs/SyncAdmin.png -------------------------------------------------------------------------------- /docs/imgs/SyncUserWithData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud-archive/mozilla_sync/6b868e134c4635bd8a1b84e20aed9ed5d009a742/docs/imgs/SyncUserWithData.png -------------------------------------------------------------------------------- /docs/imgs/SyncUserWithoutData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud-archive/mozilla_sync/6b868e134c4635bd8a1b84e20aed9ed5d009a742/docs/imgs/SyncUserWithoutData.png -------------------------------------------------------------------------------- /js/admin.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function(){ 2 | // restrict group ajax 3 | $('#restrictgroup,#groupselect').change(function() { 4 | $.post(OC.filePath('mozilla_sync', 'ajax', 'restrictgroup.php'), 5 | { restrictgroup: $('#restrictgroup[type=checkbox]').is(':checked'), 6 | groupselect: $('#groupselect').val()}, 7 | function(result){ 8 | showNotification(result.data.message); 9 | }); 10 | }); 11 | 12 | // quota ajax 13 | $('#syncquotainput').change(function() { 14 | var my_quota = $('#syncquotainput').val(); 15 | // Empty string is interpreted as quota zero 16 | if (my_quota === "") { 17 | my_quota = "0"; 18 | } 19 | $.post(OC.filePath('mozilla_sync', 'ajax', 'setquota.php'), 20 | { quota: my_quota }, 21 | function(result){ 22 | showNotification(result.data.message); 23 | }); 24 | 25 | }); 26 | 27 | // auto create ajax 28 | $('#msautocreate').change(function() { 29 | $.post(OC.filePath('mozilla_sync', 'ajax', 'setautocreate.php'), 30 | { autocreate: $('#msautocreate[type=checkbox]').is(':checked') }, 31 | function(result){ 32 | showNotification(result.data.message); 33 | }); 34 | }); 35 | }); 36 | -------------------------------------------------------------------------------- /js/settings.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function(){ 2 | // delete storage ajax 3 | $('#deletestorage').click(function() { 4 | $.post(OC.filePath('mozilla_sync','ajax','deletestorage.php'), {}, 5 | function(result){ 6 | if(result) { 7 | OC.Notification.show(result.data.message); 8 | } 9 | }); 10 | }); 11 | 12 | // sync email ajax 13 | $('#syncemailinput').change(function() { 14 | var my_email = $('#syncemailinput').val(); 15 | $.post(OC.filePath('mozilla_sync', 'ajax', 'setemail.php'), 16 | { email: my_email }, 17 | function(result){ 18 | showNotification(result.data.message); 19 | }); 20 | 21 | }); 22 | }); 23 | -------------------------------------------------------------------------------- /js/show_notification.js: -------------------------------------------------------------------------------- 1 | // Shows a notification and hides it after 3 seconds 2 | showNotification = function(text) { 3 | clearInterval(notification_timer); 4 | OC.Notification.hide(); 5 | OC.Notification.show(text); 6 | var notification_timer = setInterval(function() { 7 | OC.Notification.hide(); 8 | clearInterval(notification_timer); 9 | }, 3000); 10 | } 11 | -------------------------------------------------------------------------------- /l10n/.tx/config: -------------------------------------------------------------------------------- 1 | [main] 2 | host = https://www.transifex.com 3 | lang_map = ja_JP: ja 4 | 5 | 6 | [owncloud.mozilla_sync] 7 | file_filter = /mozilla_sync.po 8 | source_file = templates/mozilla_sync.pot 9 | source_lang = en 10 | type = PO 11 | 12 | -------------------------------------------------------------------------------- /l10n/af_ZA.php: -------------------------------------------------------------------------------- 1 | "Wagwoord" 3 | ); 4 | -------------------------------------------------------------------------------- /l10n/ar.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "mozilla_sync", 3 | { 4 | "Failed to delete storage" : "فشل في حذف وحدة التخزين", 5 | "Failed to delete user" : "فشل في ازالة المستخدم", 6 | "Storage deleted" : "حذف وحدة التخزين", 7 | "User not found" : "لم يتم العثور على المستخدم", 8 | "Restriction saved" : "تم حفظ التقييد", 9 | "Invalid input" : "مدخل غير صالح", 10 | "Sync email saved" : "تم حفظ مزامنة البريد الالكتروني", 11 | "Quota saved" : "تم حفظ Quota", 12 | "Mozilla Sync" : "مزامنة موزيلا", 13 | "Restrict to group" : "تقييد على مجموعة", 14 | "When activated, only members of this group can access Mozilla Sync." : "عند التفعيل,اعضاء المجموعة فقط يمكنهم الوصول الى مزامنة موزيلا ", 15 | "Sync quota" : "مزامنة quota", 16 | "Set the value to 0 for unlimited quota." : "ضع القيمة 0 لـ يصبح quota غير محدود.", 17 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." : "خطا! غير مسموح لك باستخدام مزامنة موزيلا! يجب ان تكون عضوا في هذه المجموعة %s", 18 | "To set up Mozilla Sync create a new Sync account in Firefox." : "لاعداد مزامنة موزيلا انشئ حساب مزامنة جديد باستخدام فايرفوكس.", 19 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." : "تم اعداد مزامنة موزيلا, الاجهزة الاضافية يمكن اضافتها عن طريق خدمة الاقتران أو بشكل يدوي.", 20 | "Has to be unique among all Sync users" : "يجب ان يكون فريد من بين كل مستخدمين المزامنة", 21 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." : "خطا! يوجد عنوان بريد الكتروني متكرر! عنوان البريد الالكتروني يجب ان يكون فريد لـ استخدام مزامنة موزيلا.", 22 | "Password:" : "كلمة المرور: ", 23 | "Use your ownCloud account password" : "استخدم كلمة المرور الخاصة بحسابك في ownCloud", 24 | "Sync Status" : "مزامنة الحالة.", 25 | "No data stored yet." : "لا يوجد بيانات محفوظة حالياً.", 26 | "Delete Sync data" : "حذف بيانات المزامنة", 27 | "Attention! This will delete all your Sync data on the server." : "انتباه! سوف يتم حذف جميع بيانات المزامنة في الخادم." 28 | }, 29 | "nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;"); 30 | -------------------------------------------------------------------------------- /l10n/ar.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Failed to delete storage" : "فشل في حذف وحدة التخزين", 3 | "Failed to delete user" : "فشل في ازالة المستخدم", 4 | "Storage deleted" : "حذف وحدة التخزين", 5 | "User not found" : "لم يتم العثور على المستخدم", 6 | "Restriction saved" : "تم حفظ التقييد", 7 | "Invalid input" : "مدخل غير صالح", 8 | "Sync email saved" : "تم حفظ مزامنة البريد الالكتروني", 9 | "Quota saved" : "تم حفظ Quota", 10 | "Mozilla Sync" : "مزامنة موزيلا", 11 | "Restrict to group" : "تقييد على مجموعة", 12 | "When activated, only members of this group can access Mozilla Sync." : "عند التفعيل,اعضاء المجموعة فقط يمكنهم الوصول الى مزامنة موزيلا ", 13 | "Sync quota" : "مزامنة quota", 14 | "Set the value to 0 for unlimited quota." : "ضع القيمة 0 لـ يصبح quota غير محدود.", 15 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." : "خطا! غير مسموح لك باستخدام مزامنة موزيلا! يجب ان تكون عضوا في هذه المجموعة %s", 16 | "To set up Mozilla Sync create a new Sync account in Firefox." : "لاعداد مزامنة موزيلا انشئ حساب مزامنة جديد باستخدام فايرفوكس.", 17 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." : "تم اعداد مزامنة موزيلا, الاجهزة الاضافية يمكن اضافتها عن طريق خدمة الاقتران أو بشكل يدوي.", 18 | "Has to be unique among all Sync users" : "يجب ان يكون فريد من بين كل مستخدمين المزامنة", 19 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." : "خطا! يوجد عنوان بريد الكتروني متكرر! عنوان البريد الالكتروني يجب ان يكون فريد لـ استخدام مزامنة موزيلا.", 20 | "Password:" : "كلمة المرور: ", 21 | "Use your ownCloud account password" : "استخدم كلمة المرور الخاصة بحسابك في ownCloud", 22 | "Sync Status" : "مزامنة الحالة.", 23 | "No data stored yet." : "لا يوجد بيانات محفوظة حالياً.", 24 | "Delete Sync data" : "حذف بيانات المزامنة", 25 | "Attention! This will delete all your Sync data on the server." : "انتباه! سوف يتم حذف جميع بيانات المزامنة في الخادم." 26 | },"pluralForm" :"nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;" 27 | } -------------------------------------------------------------------------------- /l10n/ar.php: -------------------------------------------------------------------------------- 1 | "فشل في حذف وحدة التخزين", 4 | "Failed to delete user" => "فشل في ازالة المستخدم", 5 | "Storage deleted" => "حذف وحدة التخزين", 6 | "User not found" => "لم يتم العثور على المستخدم", 7 | "Restriction saved" => "تم حفظ التقييد", 8 | "Invalid input" => "مدخل غير صالح", 9 | "Sync email saved" => "تم حفظ مزامنة البريد الالكتروني", 10 | "Quota saved" => "تم حفظ Quota", 11 | "Mozilla Sync" => "مزامنة موزيلا", 12 | "Restrict to group" => "تقييد على مجموعة", 13 | "When activated, only members of this group can access Mozilla Sync." => "عند التفعيل,اعضاء المجموعة فقط يمكنهم الوصول الى مزامنة موزيلا ", 14 | "Sync quota" => "مزامنة quota", 15 | "Set the value to 0 for unlimited quota." => "ضع القيمة 0 لـ يصبح quota غير محدود.", 16 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." => "خطا! غير مسموح لك باستخدام مزامنة موزيلا! يجب ان تكون عضوا في هذه المجموعة %s", 17 | "To set up Mozilla Sync create a new Sync account in Firefox." => "لاعداد مزامنة موزيلا انشئ حساب مزامنة جديد باستخدام فايرفوكس.", 18 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." => "تم اعداد مزامنة موزيلا, الاجهزة الاضافية يمكن اضافتها عن طريق خدمة الاقتران أو بشكل يدوي.", 19 | "Has to be unique among all Sync users" => "يجب ان يكون فريد من بين كل مستخدمين المزامنة", 20 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." => "خطا! يوجد عنوان بريد الكتروني متكرر! عنوان البريد الالكتروني يجب ان يكون فريد لـ استخدام مزامنة موزيلا.", 21 | "Password:" => "كلمة المرور: ", 22 | "Use your ownCloud account password" => "استخدم كلمة المرور الخاصة بحسابك في ownCloud", 23 | "Sync Status" => "مزامنة الحالة.", 24 | "No data stored yet." => "لا يوجد بيانات محفوظة حالياً.", 25 | "Delete Sync data" => "حذف بيانات المزامنة", 26 | "Attention! This will delete all your Sync data on the server." => "انتباه! سوف يتم حذف جميع بيانات المزامنة في الخادم." 27 | ); 28 | $PLURAL_FORMS = "nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;"; 29 | -------------------------------------------------------------------------------- /l10n/ast.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Failed to delete storage" : "Fallu al desaniciar almacenamientu", 3 | "Failed to delete user" : "Fallo al desaniciar al usuariu", 4 | "Storage deleted" : "Almacenamientu desaniciáu", 5 | "User not found" : "Usuariu non alcontráu", 6 | "Restriction saved" : "Restricción guardada", 7 | "Invalid input" : "Entrada inválida", 8 | "Auto create sync account enabled" : "Autocrear una cuenta sync habilitáu", 9 | "Auto create sync account disabled" : "Autocrear una cuenta sync desabilitáu", 10 | "Sync email saved" : "Sinc. de corréu-e guardada ", 11 | "Quota saved" : "Cuota guardada", 12 | "Mozilla Sync" : "Mozilla Sync", 13 | "Restrict to group" : "Restrinxir al grupu", 14 | "When activated, only members of this group can access Mozilla Sync." : "Cuando s'active, namái los miembros d'esti grupu puen acceder a Mozilla Sync.", 15 | "Sync quota" : "Sinc. cuota", 16 | "Set the value to 0 for unlimited quota." : "Afitar el valor 0 pa cuota illimitada.", 17 | "Auto create sync account" : "Autocrear una cuenta sync", 18 | "When activated, the Mozilla Sync registration API will be disabled and instead accounts will be auto created using a user's existing credentials" : "Cuando s'active, l'API de rexistru de Mozilla Sync deshabilitarase y en sustitución de cuentes s'autocrearán usando credenciales esistentes", 19 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." : "Fallu! Nun tienes permisu pa usar Mozilla Sync! Necesites ser miembru del grupu %s.", 20 | "To use Mozilla Sync enter the credentials in to Mozilla Sync client" : "Pa usar Mozilla Sync inxerte les credenciales nel cliente de Mozilla Sync", 21 | "To set up Mozilla Sync create a new Sync account in Firefox." : "Pa configurar Mozilla Sync, tienes de crear una cuenta sync en Firefox. ", 22 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." : "Configuróse Mozilla Sync, los preseos adicionales, tienen d'amestase vía serviciu d'empareyamientu de Mozilla o manualmente.", 23 | "Email:" : "Corréu:", 24 | "Has to be unique among all Sync users" : "Tien de ser única ente los usuarios de Sync", 25 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." : "¡Fallu! ¡Deteutáronse direiciones de corréu duplicaes! Les direiciones de corréu-e tienen de ser úniques pa que Mozilla Sync funcione.", 26 | "Password:" : "Contraseña:", 27 | "Use your ownCloud account password" : "Usa la to contraseña de ownCloud", 28 | "Server address:" : "Direición del sirvidor:", 29 | "Sync Status" : "Estáu de sinc.", 30 | "Last sync:" : "Cabera sincronización:", 31 | "Size of stored data:" : "Tamañu de los datos atroxaos:", 32 | "No data stored yet." : "Entá nun hai datos atroxaos", 33 | "Number of synced devices:" : "Númberu de preseos sincronizaos:", 34 | "Delete Sync data" : "Desaniciar datos de sinc.", 35 | "Attention! This will delete all your Sync data on the server." : "¡Atención! Esto desaniciará tolos tos datos de Sync nel sirvidor." 36 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 37 | } -------------------------------------------------------------------------------- /l10n/ast.php: -------------------------------------------------------------------------------- 1 | "Fallu al desaniciar almacenamientu", 4 | "Failed to delete user" => "Fallo al desaniciar al usuariu", 5 | "Storage deleted" => "Almacenamientu desaniciáu", 6 | "User not found" => "Usuariu non alcontráu", 7 | "Restriction saved" => "Restricción guardada", 8 | "Invalid input" => "Entrada inválida", 9 | "Auto create sync account enabled" => "Autocrear una cuenta sync habilitáu", 10 | "Auto create sync account disabled" => "Autocrear una cuenta sync desabilitáu", 11 | "Sync email saved" => "Sinc. de corréu-e guardada ", 12 | "Quota saved" => "Cuota guardada", 13 | "Mozilla Sync" => "Mozilla Sync", 14 | "Restrict to group" => "Restrinxir al grupu", 15 | "When activated, only members of this group can access Mozilla Sync." => "Cuando s'active, namái los miembros d'esti grupu puen acceder a Mozilla Sync.", 16 | "Sync quota" => "Sinc. cuota", 17 | "Set the value to 0 for unlimited quota." => "Afitar el valor 0 pa cuota illimitada.", 18 | "Auto create sync account" => "Autocrear una cuenta sync", 19 | "When activated, the Mozilla Sync registration API will be disabled and instead accounts will be auto created using a user's existing credentials" => "Cuando s'active, l'API de rexistru de Mozilla Sync deshabilitarase y en sustitución de cuentes s'autocrearán usando credenciales esistentes", 20 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." => "Fallu! Nun tienes permisu pa usar Mozilla Sync! Necesites ser miembru del grupu %s.", 21 | "To use Mozilla Sync enter the credentials in to Mozilla Sync client" => "Pa usar Mozilla Sync inxerte les credenciales nel cliente de Mozilla Sync", 22 | "To set up Mozilla Sync create a new Sync account in Firefox." => "Pa configurar Mozilla Sync, tienes de crear una cuenta sync en Firefox. ", 23 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." => "Configuróse Mozilla Sync, los preseos adicionales, tienen d'amestase vía serviciu d'empareyamientu de Mozilla o manualmente.", 24 | "Email:" => "Corréu:", 25 | "Has to be unique among all Sync users" => "Tien de ser única ente los usuarios de Sync", 26 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." => "¡Fallu! ¡Deteutáronse direiciones de corréu duplicaes! Les direiciones de corréu-e tienen de ser úniques pa que Mozilla Sync funcione.", 27 | "Password:" => "Contraseña:", 28 | "Use your ownCloud account password" => "Usa la to contraseña de ownCloud", 29 | "Server address:" => "Direición del sirvidor:", 30 | "Sync Status" => "Estáu de sinc.", 31 | "Last sync:" => "Cabera sincronización:", 32 | "Size of stored data:" => "Tamañu de los datos atroxaos:", 33 | "No data stored yet." => "Entá nun hai datos atroxaos", 34 | "Number of synced devices:" => "Númberu de preseos sincronizaos:", 35 | "Delete Sync data" => "Desaniciar datos de sinc.", 36 | "Attention! This will delete all your Sync data on the server." => "¡Atención! Esto desaniciará tolos tos datos de Sync nel sirvidor." 37 | ); 38 | $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 39 | -------------------------------------------------------------------------------- /l10n/bg_BG.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "mozilla_sync", 3 | { 4 | "Failed to delete storage" : "Неуспешно изтриване на дисковото пространство", 5 | "Failed to delete user" : "Неуспешно изтриване на потребителя", 6 | "Storage deleted" : "Дисковото пространство изтрито", 7 | "User not found" : "Потребителят не е открит", 8 | "Restriction saved" : "Ограничението запазено", 9 | "Invalid input" : "Невалидна информация", 10 | "Sync email saved" : "Sync имейлът запазен", 11 | "Quota saved" : "Квотата запазена", 12 | "Mozilla Sync" : "Mozilla Sync", 13 | "Restrict to group" : "Ограничи до група", 14 | "When activated, only members of this group can access Mozilla Sync." : "Когато е активирано, само членове на тази група ще имат достъп до Mozilla Sync.", 15 | "Sync quota" : "Sync квота", 16 | "Set the value to 0 for unlimited quota." : "Сложи 0 за неограничена квота.", 17 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." : "Грешка! Не ти е разрешено да използваш Mozilla Sync! Трябва да си член на групата %s.", 18 | "To set up Mozilla Sync create a new Sync account in Firefox." : "За да настроиш Mozilla Sync създай нов Sync профил във Firefox.", 19 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." : "Mozilla Synch е настроен, допълнителни устройсва могат да бъдат добавени чрез услугата за свързване на Mozilla или ръчно.", 20 | "Email:" : "Имейк:", 21 | "Has to be unique among all Sync users" : "Трябва да бъде уникално сред всички Sync потребители", 22 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." : "Грешка! Открит е повтарящ се имейл адрес! Имейл адресите трябва да са уникални, за да може Mozilla Sync да функционира.", 23 | "Password:" : "Парола:", 24 | "Use your ownCloud account password" : "Използвай паролата от своя ownCloud профил", 25 | "Server address:" : "Адрес на сървъра:", 26 | "Sync Status" : "Статус на Sync", 27 | "Last sync:" : "Последно синхронизиране:", 28 | "Size of stored data:" : "Размер на запазените данни:", 29 | "No data stored yet." : "Все още няма запазена информация.", 30 | "Number of synced devices:" : "Брой синхронизирани устройства:", 31 | "Delete Sync data" : "Изтрий Sync данните", 32 | "Attention! This will delete all your Sync data on the server." : "Внимание! Това ще изтрие всичките ти Sync данни на сървъра." 33 | }, 34 | "nplurals=2; plural=(n != 1);"); 35 | -------------------------------------------------------------------------------- /l10n/bg_BG.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Failed to delete storage" : "Неуспешно изтриване на дисковото пространство", 3 | "Failed to delete user" : "Неуспешно изтриване на потребителя", 4 | "Storage deleted" : "Дисковото пространство изтрито", 5 | "User not found" : "Потребителят не е открит", 6 | "Restriction saved" : "Ограничението запазено", 7 | "Invalid input" : "Невалидна информация", 8 | "Sync email saved" : "Sync имейлът запазен", 9 | "Quota saved" : "Квотата запазена", 10 | "Mozilla Sync" : "Mozilla Sync", 11 | "Restrict to group" : "Ограничи до група", 12 | "When activated, only members of this group can access Mozilla Sync." : "Когато е активирано, само членове на тази група ще имат достъп до Mozilla Sync.", 13 | "Sync quota" : "Sync квота", 14 | "Set the value to 0 for unlimited quota." : "Сложи 0 за неограничена квота.", 15 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." : "Грешка! Не ти е разрешено да използваш Mozilla Sync! Трябва да си член на групата %s.", 16 | "To set up Mozilla Sync create a new Sync account in Firefox." : "За да настроиш Mozilla Sync създай нов Sync профил във Firefox.", 17 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." : "Mozilla Synch е настроен, допълнителни устройсва могат да бъдат добавени чрез услугата за свързване на Mozilla или ръчно.", 18 | "Email:" : "Имейк:", 19 | "Has to be unique among all Sync users" : "Трябва да бъде уникално сред всички Sync потребители", 20 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." : "Грешка! Открит е повтарящ се имейл адрес! Имейл адресите трябва да са уникални, за да може Mozilla Sync да функционира.", 21 | "Password:" : "Парола:", 22 | "Use your ownCloud account password" : "Използвай паролата от своя ownCloud профил", 23 | "Server address:" : "Адрес на сървъра:", 24 | "Sync Status" : "Статус на Sync", 25 | "Last sync:" : "Последно синхронизиране:", 26 | "Size of stored data:" : "Размер на запазените данни:", 27 | "No data stored yet." : "Все още няма запазена информация.", 28 | "Number of synced devices:" : "Брой синхронизирани устройства:", 29 | "Delete Sync data" : "Изтрий Sync данните", 30 | "Attention! This will delete all your Sync data on the server." : "Внимание! Това ще изтрие всичките ти Sync данни на сървъра." 31 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 32 | } -------------------------------------------------------------------------------- /l10n/bg_BG.php: -------------------------------------------------------------------------------- 1 | "Неуспешно изтриване на дисковото пространство", 4 | "Failed to delete user" => "Неуспешно изтриване на потребителя", 5 | "Storage deleted" => "Дисковото пространство изтрито", 6 | "User not found" => "Потребителят не е открит", 7 | "Restriction saved" => "Ограничението запазено", 8 | "Invalid input" => "Невалидна информация", 9 | "Sync email saved" => "Sync имейлът запазен", 10 | "Quota saved" => "Квотата запазена", 11 | "Mozilla Sync" => "Mozilla Sync", 12 | "Restrict to group" => "Ограничи до група", 13 | "When activated, only members of this group can access Mozilla Sync." => "Когато е активирано, само членове на тази група ще имат достъп до Mozilla Sync.", 14 | "Sync quota" => "Sync квота", 15 | "Set the value to 0 for unlimited quota." => "Сложи 0 за неограничена квота.", 16 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." => "Грешка! Не ти е разрешено да използваш Mozilla Sync! Трябва да си член на групата %s.", 17 | "To set up Mozilla Sync create a new Sync account in Firefox." => "За да настроиш Mozilla Sync създай нов Sync профил във Firefox.", 18 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." => "Mozilla Synch е настроен, допълнителни устройсва могат да бъдат добавени чрез услугата за свързване на Mozilla или ръчно.", 19 | "Email:" => "Имейк:", 20 | "Has to be unique among all Sync users" => "Трябва да бъде уникално сред всички Sync потребители", 21 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." => "Грешка! Открит е повтарящ се имейл адрес! Имейл адресите трябва да са уникални, за да може Mozilla Sync да функционира.", 22 | "Password:" => "Парола:", 23 | "Use your ownCloud account password" => "Използвай паролата от своя ownCloud профил", 24 | "Server address:" => "Адрес на сървъра:", 25 | "Sync Status" => "Статус на Sync", 26 | "Last sync:" => "Последно синхронизиране:", 27 | "Size of stored data:" => "Размер на запазените данни:", 28 | "No data stored yet." => "Все още няма запазена информация.", 29 | "Number of synced devices:" => "Брой синхронизирани устройства:", 30 | "Delete Sync data" => "Изтрий Sync данните", 31 | "Attention! This will delete all your Sync data on the server." => "Внимание! Това ще изтрие всичките ти Sync данни на сървъра." 32 | ); 33 | $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 34 | -------------------------------------------------------------------------------- /l10n/bn_BD.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "mozilla_sync", 3 | { 4 | "Failed to delete storage" : "সংরক্ষণাগারে রক্ষিত ফাইলসমূহ মোছা গেলনা", 5 | "Failed to delete user" : "ব্যবহারকারী মুছে ফেলা ব্যার্থ হলো", 6 | "Storage deleted" : "সংরক্ষণাগার শুন্য ", 7 | "User not found" : "ব্যবহারকারী খুজে পাওয়া গেলনা", 8 | "Restriction saved" : "বাধা সংরক্ষণ করা হলো", 9 | "Invalid input" : "ইনপুট সঠিক নয়", 10 | "Sync email saved" : "সিঙ্ক ই-মেইল সংরক্ষন করা হয়েছে", 11 | "Quota saved" : "কোটা সংরক্ষণ করা হলো", 12 | "Mozilla Sync" : "মোজিলা সিংক", 13 | "Restrict to group" : "দল এ সীমাবদ্ধ রাখ", 14 | "When activated, only members of this group can access Mozilla Sync." : "চালু অবস্থায় কেবলমাত্র এই দলের সদস্যগণ মজিলা সিঙ্ক এ প্রবেশ করতে পারবেন", 15 | "Sync quota" : "সিঙ্ক কোটা", 16 | "Set the value to 0 for unlimited quota." : "সীমাহীন কোটা পেতে ভ্যাল্যু 0 নির্ধারণ করুন।", 17 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." : "সমস্যা! আপনি মজিলা সিঙ্ক ব্যাবহার করতে পারবেন না! আপনাকে %s দলের সদস্য হতে হবে।", 18 | "To set up Mozilla Sync create a new Sync account in Firefox." : "মজিলা সিঙ্ক সেটআপ করতে ফায়ারফক্সে একটি নতুন সিঙ্ক একাউন্ট করুন।", 19 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." : "মজিলা সিঙ্ক সেটআপ করা হয়েছে। মজিলা ডিভাইস পেয়ারিং সার্ভিস ব্যাবহার করে বা নিজে নিজে অতিরিক্ত ডিভাইস যুক্ত করা যাবে।", 20 | "Email:" : "ইমেইল:", 21 | "Has to be unique among all Sync users" : "সব সিঙ্ক ব্যাবহারকারীর মাঝে পৃথক হতে হবে", 22 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." : "সমস্যা! একইরকম ইমেইল ঠিকানা পাওয়া গেছে! মজিলা সিঙ্ক কর্মক্ষম হতে ইমেইল ঠিকানাগুলো পৃথক পৃথক হতেই হবে।", 23 | "Password:" : "কূটশব্দ:", 24 | "Use your ownCloud account password" : "আপনার ওউনক্লাউড কুটশব্দ ব্যাবহার করুন", 25 | "Server address:" : "সার্ভার ঠিকানা:", 26 | "Sync Status" : "সিঙ্ক এর অবস্থা", 27 | "Last sync:" : "সর্বশেষ সিঙ্ক:", 28 | "Size of stored data:" : "সংরক্ষিত ডাটার আকার:", 29 | "No data stored yet." : "এখনো কোন ডাটা সংরক্ষণ করা হয়নি।", 30 | "Number of synced devices:" : "সিঙ্ক করা ডিভাইসের সংখ্যা:", 31 | "Delete Sync data" : "সিঙ্কের ডাটা মোছ", 32 | "Attention! This will delete all your Sync data on the server." : "লক্ষ্য করুন!!! এটি সার্ভারে আপনার সব সিঙ্ক ডাটা মুছে ফেলবে।" 33 | }, 34 | "nplurals=2; plural=(n != 1);"); 35 | -------------------------------------------------------------------------------- /l10n/bn_BD.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Failed to delete storage" : "সংরক্ষণাগারে রক্ষিত ফাইলসমূহ মোছা গেলনা", 3 | "Failed to delete user" : "ব্যবহারকারী মুছে ফেলা ব্যার্থ হলো", 4 | "Storage deleted" : "সংরক্ষণাগার শুন্য ", 5 | "User not found" : "ব্যবহারকারী খুজে পাওয়া গেলনা", 6 | "Restriction saved" : "বাধা সংরক্ষণ করা হলো", 7 | "Invalid input" : "ইনপুট সঠিক নয়", 8 | "Sync email saved" : "সিঙ্ক ই-মেইল সংরক্ষন করা হয়েছে", 9 | "Quota saved" : "কোটা সংরক্ষণ করা হলো", 10 | "Mozilla Sync" : "মোজিলা সিংক", 11 | "Restrict to group" : "দল এ সীমাবদ্ধ রাখ", 12 | "When activated, only members of this group can access Mozilla Sync." : "চালু অবস্থায় কেবলমাত্র এই দলের সদস্যগণ মজিলা সিঙ্ক এ প্রবেশ করতে পারবেন", 13 | "Sync quota" : "সিঙ্ক কোটা", 14 | "Set the value to 0 for unlimited quota." : "সীমাহীন কোটা পেতে ভ্যাল্যু 0 নির্ধারণ করুন।", 15 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." : "সমস্যা! আপনি মজিলা সিঙ্ক ব্যাবহার করতে পারবেন না! আপনাকে %s দলের সদস্য হতে হবে।", 16 | "To set up Mozilla Sync create a new Sync account in Firefox." : "মজিলা সিঙ্ক সেটআপ করতে ফায়ারফক্সে একটি নতুন সিঙ্ক একাউন্ট করুন।", 17 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." : "মজিলা সিঙ্ক সেটআপ করা হয়েছে। মজিলা ডিভাইস পেয়ারিং সার্ভিস ব্যাবহার করে বা নিজে নিজে অতিরিক্ত ডিভাইস যুক্ত করা যাবে।", 18 | "Email:" : "ইমেইল:", 19 | "Has to be unique among all Sync users" : "সব সিঙ্ক ব্যাবহারকারীর মাঝে পৃথক হতে হবে", 20 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." : "সমস্যা! একইরকম ইমেইল ঠিকানা পাওয়া গেছে! মজিলা সিঙ্ক কর্মক্ষম হতে ইমেইল ঠিকানাগুলো পৃথক পৃথক হতেই হবে।", 21 | "Password:" : "কূটশব্দ:", 22 | "Use your ownCloud account password" : "আপনার ওউনক্লাউড কুটশব্দ ব্যাবহার করুন", 23 | "Server address:" : "সার্ভার ঠিকানা:", 24 | "Sync Status" : "সিঙ্ক এর অবস্থা", 25 | "Last sync:" : "সর্বশেষ সিঙ্ক:", 26 | "Size of stored data:" : "সংরক্ষিত ডাটার আকার:", 27 | "No data stored yet." : "এখনো কোন ডাটা সংরক্ষণ করা হয়নি।", 28 | "Number of synced devices:" : "সিঙ্ক করা ডিভাইসের সংখ্যা:", 29 | "Delete Sync data" : "সিঙ্কের ডাটা মোছ", 30 | "Attention! This will delete all your Sync data on the server." : "লক্ষ্য করুন!!! এটি সার্ভারে আপনার সব সিঙ্ক ডাটা মুছে ফেলবে।" 31 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 32 | } -------------------------------------------------------------------------------- /l10n/bn_BD.php: -------------------------------------------------------------------------------- 1 | "সংরক্ষণাগারে রক্ষিত ফাইলসমূহ মোছা গেলনা", 4 | "Failed to delete user" => "ব্যবহারকারী মুছে ফেলা ব্যার্থ হলো", 5 | "Storage deleted" => "সংরক্ষণাগার শুন্য ", 6 | "User not found" => "ব্যবহারকারী খুজে পাওয়া গেলনা", 7 | "Restriction saved" => "বাধা সংরক্ষণ করা হলো", 8 | "Invalid input" => "ইনপুট সঠিক নয়", 9 | "Sync email saved" => "সিঙ্ক ই-মেইল সংরক্ষন করা হয়েছে", 10 | "Quota saved" => "কোটা সংরক্ষণ করা হলো", 11 | "Mozilla Sync" => "মোজিলা সিংক", 12 | "Restrict to group" => "দল এ সীমাবদ্ধ রাখ", 13 | "When activated, only members of this group can access Mozilla Sync." => "চালু অবস্থায় কেবলমাত্র এই দলের সদস্যগণ মজিলা সিঙ্ক এ প্রবেশ করতে পারবেন", 14 | "Sync quota" => "সিঙ্ক কোটা", 15 | "Set the value to 0 for unlimited quota." => "সীমাহীন কোটা পেতে ভ্যাল্যু 0 নির্ধারণ করুন।", 16 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." => "সমস্যা! আপনি মজিলা সিঙ্ক ব্যাবহার করতে পারবেন না! আপনাকে %s দলের সদস্য হতে হবে।", 17 | "To set up Mozilla Sync create a new Sync account in Firefox." => "মজিলা সিঙ্ক সেটআপ করতে ফায়ারফক্সে একটি নতুন সিঙ্ক একাউন্ট করুন।", 18 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." => "মজিলা সিঙ্ক সেটআপ করা হয়েছে। মজিলা ডিভাইস পেয়ারিং সার্ভিস ব্যাবহার করে বা নিজে নিজে অতিরিক্ত ডিভাইস যুক্ত করা যাবে।", 19 | "Email:" => "ইমেইল:", 20 | "Has to be unique among all Sync users" => "সব সিঙ্ক ব্যাবহারকারীর মাঝে পৃথক হতে হবে", 21 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." => "সমস্যা! একইরকম ইমেইল ঠিকানা পাওয়া গেছে! মজিলা সিঙ্ক কর্মক্ষম হতে ইমেইল ঠিকানাগুলো পৃথক পৃথক হতেই হবে।", 22 | "Password:" => "কূটশব্দ:", 23 | "Use your ownCloud account password" => "আপনার ওউনক্লাউড কুটশব্দ ব্যাবহার করুন", 24 | "Server address:" => "সার্ভার ঠিকানা:", 25 | "Sync Status" => "সিঙ্ক এর অবস্থা", 26 | "Last sync:" => "সর্বশেষ সিঙ্ক:", 27 | "Size of stored data:" => "সংরক্ষিত ডাটার আকার:", 28 | "No data stored yet." => "এখনো কোন ডাটা সংরক্ষণ করা হয়নি।", 29 | "Number of synced devices:" => "সিঙ্ক করা ডিভাইসের সংখ্যা:", 30 | "Delete Sync data" => "সিঙ্কের ডাটা মোছ", 31 | "Attention! This will delete all your Sync data on the server." => "লক্ষ্য করুন!!! এটি সার্ভারে আপনার সব সিঙ্ক ডাটা মুছে ফেলবে।" 32 | ); 33 | $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 34 | -------------------------------------------------------------------------------- /l10n/cs_CZ.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "mozilla_sync", 3 | { 4 | "Failed to delete storage" : "Nelze smazat úložiště", 5 | "Failed to delete user" : "Nelze smazat uživatele", 6 | "Storage deleted" : "Úložiště smazáno", 7 | "User not found" : "Uživatel nebyl nalezen", 8 | "Restriction saved" : "Omezení uloženo", 9 | "Invalid input" : "Chybný vstup", 10 | "Auto create sync account enabled" : "Automatické vytváření účtu synchronizace povoleno", 11 | "Auto create sync account disabled" : "Automatické vytváření účtu synchronizace zakázáno", 12 | "Sync email saved" : "Email uložen", 13 | "Quota saved" : "Kvóta uložena", 14 | "Mozilla Sync" : "Mozilla Sync", 15 | "Restrict to group" : "Omezit na skupinu", 16 | "When activated, only members of this group can access Mozilla Sync." : "Po aktivaci mohou pouze členové této skupiny přistupovat k Mozilla Sync.", 17 | "Sync quota" : "Kvóta synchronizace", 18 | "Set the value to 0 for unlimited quota." : "Zadejte hodnotu 0 pro neomezenou kvótu.", 19 | "Auto create sync account" : "Automatické vytváření účtu synchronizace", 20 | "When activated, the Mozilla Sync registration API will be disabled and instead accounts will be auto created using a user's existing credentials" : "Pokud aktivováno, bude registrační API Mozilla Sync vypnuto a místo toho budou uživatelské účty vytvářeny automaticky s aktuálními přihlašovacími údaji.", 21 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." : "Chyba! Nemáte povoleno použít Mozilla Sync! Musíte být členem skupiny %s.", 22 | "To use Mozilla Sync enter the credentials in to Mozilla Sync client" : "Pro použití aplikace Mozilla Sync zadejte své přihlašovací údaje do klienta Mozilla Sync", 23 | "To set up Mozilla Sync create a new Sync account in Firefox." : "Pro nastavení Mozilla Sync vytvořte nový Sync účet ve Firefoxu.", 24 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." : "Mozilla Sync je nastaven. Další zařízení mohou být přidána přes službu párování zařízení (Mozilla) nebo ručně.", 25 | "Email:" : "Email:", 26 | "Has to be unique among all Sync users" : "Musí být jedinečný mezi všemi uživateli", 27 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." : "Chyba! Byla detekována duplicitní emailová adresa! Emailová adresa musí být unikátní pro použití Mozilla Sync.", 28 | "Password:" : "Heslo:", 29 | "Use your ownCloud account password" : "Použijte heslo svého ownCloud účtu", 30 | "Server address:" : "Adresa serveru:", 31 | "Sync Status" : "Stav synchronizace", 32 | "Last sync:" : "Poslední synchronizace:", 33 | "Size of stored data:" : "Velikost uložených dat:", 34 | "No data stored yet." : "Zatím nebyla uložena žádná data.", 35 | "Number of synced devices:" : "Počet synchronizovaných zařízení:", 36 | "Delete Sync data" : "Smazat data synchronizace", 37 | "Attention! This will delete all your Sync data on the server." : "Pozor! Toto smaže všechna vaše Sync data na serveru." 38 | }, 39 | "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"); 40 | -------------------------------------------------------------------------------- /l10n/cs_CZ.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Failed to delete storage" : "Nelze smazat úložiště", 3 | "Failed to delete user" : "Nelze smazat uživatele", 4 | "Storage deleted" : "Úložiště smazáno", 5 | "User not found" : "Uživatel nebyl nalezen", 6 | "Restriction saved" : "Omezení uloženo", 7 | "Invalid input" : "Chybný vstup", 8 | "Auto create sync account enabled" : "Automatické vytváření účtu synchronizace povoleno", 9 | "Auto create sync account disabled" : "Automatické vytváření účtu synchronizace zakázáno", 10 | "Sync email saved" : "Email uložen", 11 | "Quota saved" : "Kvóta uložena", 12 | "Mozilla Sync" : "Mozilla Sync", 13 | "Restrict to group" : "Omezit na skupinu", 14 | "When activated, only members of this group can access Mozilla Sync." : "Po aktivaci mohou pouze členové této skupiny přistupovat k Mozilla Sync.", 15 | "Sync quota" : "Kvóta synchronizace", 16 | "Set the value to 0 for unlimited quota." : "Zadejte hodnotu 0 pro neomezenou kvótu.", 17 | "Auto create sync account" : "Automatické vytváření účtu synchronizace", 18 | "When activated, the Mozilla Sync registration API will be disabled and instead accounts will be auto created using a user's existing credentials" : "Pokud aktivováno, bude registrační API Mozilla Sync vypnuto a místo toho budou uživatelské účty vytvářeny automaticky s aktuálními přihlašovacími údaji.", 19 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." : "Chyba! Nemáte povoleno použít Mozilla Sync! Musíte být členem skupiny %s.", 20 | "To use Mozilla Sync enter the credentials in to Mozilla Sync client" : "Pro použití aplikace Mozilla Sync zadejte své přihlašovací údaje do klienta Mozilla Sync", 21 | "To set up Mozilla Sync create a new Sync account in Firefox." : "Pro nastavení Mozilla Sync vytvořte nový Sync účet ve Firefoxu.", 22 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." : "Mozilla Sync je nastaven. Další zařízení mohou být přidána přes službu párování zařízení (Mozilla) nebo ručně.", 23 | "Email:" : "Email:", 24 | "Has to be unique among all Sync users" : "Musí být jedinečný mezi všemi uživateli", 25 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." : "Chyba! Byla detekována duplicitní emailová adresa! Emailová adresa musí být unikátní pro použití Mozilla Sync.", 26 | "Password:" : "Heslo:", 27 | "Use your ownCloud account password" : "Použijte heslo svého ownCloud účtu", 28 | "Server address:" : "Adresa serveru:", 29 | "Sync Status" : "Stav synchronizace", 30 | "Last sync:" : "Poslední synchronizace:", 31 | "Size of stored data:" : "Velikost uložených dat:", 32 | "No data stored yet." : "Zatím nebyla uložena žádná data.", 33 | "Number of synced devices:" : "Počet synchronizovaných zařízení:", 34 | "Delete Sync data" : "Smazat data synchronizace", 35 | "Attention! This will delete all your Sync data on the server." : "Pozor! Toto smaže všechna vaše Sync data na serveru." 36 | },"pluralForm" :"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;" 37 | } -------------------------------------------------------------------------------- /l10n/cs_CZ.php: -------------------------------------------------------------------------------- 1 | "Nelze smazat úložiště", 4 | "Failed to delete user" => "Nelze smazat uživatele", 5 | "Storage deleted" => "Úložiště smazáno", 6 | "User not found" => "Uživatel nebyl nalezen", 7 | "Restriction saved" => "Omezení uloženo", 8 | "Invalid input" => "Chybný vstup", 9 | "Auto create sync account enabled" => "Automatické vytváření účtu synchronizace povoleno", 10 | "Auto create sync account disabled" => "Automatické vytváření účtu synchronizace zakázáno", 11 | "Sync email saved" => "Email uložen", 12 | "Quota saved" => "Kvóta uložena", 13 | "Mozilla Sync" => "Mozilla Sync", 14 | "Restrict to group" => "Omezit na skupinu", 15 | "When activated, only members of this group can access Mozilla Sync." => "Po aktivaci mohou pouze členové této skupiny přistupovat k Mozilla Sync.", 16 | "Sync quota" => "Kvóta synchronizace", 17 | "Set the value to 0 for unlimited quota." => "Zadejte hodnotu 0 pro neomezenou kvótu.", 18 | "Auto create sync account" => "Automatické vytváření účtu synchronizace", 19 | "When activated, the Mozilla Sync registration API will be disabled and instead accounts will be auto created using a user's existing credentials" => "Pokud aktivováno, bude registrační API Mozilla Sync vypnuto a místo toho budou uživatelské účty vytvářeny automaticky s aktuálními přihlašovacími údaji.", 20 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." => "Chyba! Nemáte povoleno použít Mozilla Sync! Musíte být členem skupiny %s.", 21 | "To use Mozilla Sync enter the credentials in to Mozilla Sync client" => "Pro použití aplikace Mozilla Sync zadejte své přihlašovací údaje do klienta Mozilla Sync", 22 | "To set up Mozilla Sync create a new Sync account in Firefox." => "Pro nastavení Mozilla Sync vytvořte nový Sync účet ve Firefoxu.", 23 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." => "Mozilla Sync je nastaven. Další zařízení mohou být přidána přes službu párování zařízení (Mozilla) nebo ručně.", 24 | "Email:" => "Email:", 25 | "Has to be unique among all Sync users" => "Musí být jedinečný mezi všemi uživateli", 26 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." => "Chyba! Byla detekována duplicitní emailová adresa! Emailová adresa musí být unikátní pro použití Mozilla Sync.", 27 | "Password:" => "Heslo:", 28 | "Use your ownCloud account password" => "Použijte heslo svého ownCloud účtu", 29 | "Server address:" => "Adresa serveru:", 30 | "Sync Status" => "Stav synchronizace", 31 | "Last sync:" => "Poslední synchronizace:", 32 | "Size of stored data:" => "Velikost uložených dat:", 33 | "No data stored yet." => "Zatím nebyla uložena žádná data.", 34 | "Number of synced devices:" => "Počet synchronizovaných zařízení:", 35 | "Delete Sync data" => "Smazat data synchronizace", 36 | "Attention! This will delete all your Sync data on the server." => "Pozor! Toto smaže všechna vaše Sync data na serveru." 37 | ); 38 | $PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; 39 | -------------------------------------------------------------------------------- /l10n/cy_GB.php: -------------------------------------------------------------------------------- 1 | "Cyfrinair:" 4 | ); 5 | $PLURAL_FORMS = "nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"; 6 | -------------------------------------------------------------------------------- /l10n/da.php: -------------------------------------------------------------------------------- 1 | "Kunne ikke slette lager", 4 | "Failed to delete user" => "Kunne ikke slette bruger", 5 | "Storage deleted" => "Lager slettet", 6 | "User not found" => "Bruger ikke fundet", 7 | "Restriction saved" => "Restriktion gemt", 8 | "Invalid input" => "Ugyldigt input", 9 | "Auto create sync account enabled" => "Automatisk oprettelse af synkroniseringskonto er slået til", 10 | "Auto create sync account disabled" => "Automatisk oprettelse af synkroniseringskonto er slået fra", 11 | "Sync email saved" => "E-mail til synkronisering blev gemt", 12 | "Quota saved" => "Kvota blev gemt", 13 | "Mozilla Sync" => "Mozilla Sync", 14 | "Restrict to group" => "Begræns til gruppe", 15 | "When activated, only members of this group can access Mozilla Sync." => "Når dette er aktivieret er det kun medlemmer af denne gruppe, der kan anvende Mozilla Sync.", 16 | "Sync quota" => "Sync-kvota", 17 | "Set the value to 0 for unlimited quota." => "Angiv værdien til 0 for at ophæve kvota.", 18 | "Auto create sync account" => "Automatisk oprettelse af synkroniseringskonto", 19 | "When activated, the Mozilla Sync registration API will be disabled and instead accounts will be auto created using a user's existing credentials" => "Når denne er slået til, så vil tilmeldings-API'et for Mozilla Sync blive slået fra, og konti vil i stedet blive oprettet automatisk med brug af brugerens eksisterende adgangsoplysninger.", 20 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." => "Fejl! Du har ikke tilladelse til at anvende Mozilla Sync! Du skal være medlem af gruppen %s.", 21 | "To use Mozilla Sync enter the credentials in to Mozilla Sync client" => "For at bruge Mozilla Sync, så angiv adgangsoplysninger i Mozilla Sync-klienten.", 22 | "To set up Mozilla Sync create a new Sync account in Firefox." => "For at sætte Mozilla Sync op, skal du først oprette en konto i Firefox.", 23 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." => "Mozilla Sync er sat op. Yderligere enheder kan tilføjes via Mozillas tjeneste til parring af enheder eller foretages manuelt.", 24 | "Email:" => "E-mail:", 25 | "Has to be unique among all Sync users" => "Skal være unik blandt alle Sync-brugere", 26 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." => "Fejl! Sammenfald i e-mail adresser blev fundet. E-mail-adresser skal være unikke for at Mozilla Sync kan fungere.", 27 | "Password:" => "Kodeord:", 28 | "Use your ownCloud account password" => "Brug kodeordet til din ownCloud konto", 29 | "Server address:" => "Serveraddresse:", 30 | "Sync Status" => "Synkroniseringsstatus", 31 | "Last sync:" => "Seneste synk.:", 32 | "Size of stored data:" => "Størrelse af lagrede data:", 33 | "No data stored yet." => "Ingen data gemt endnu.", 34 | "Number of synced devices:" => "Antal synkroniserede enheder:", 35 | "Delete Sync data" => "Slet Synkroniseringsdata", 36 | "Attention! This will delete all your Sync data on the server." => "Advarsel! Dette vil dette vil slette alle Synckroniseringsdata på serveren." 37 | ); 38 | $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 39 | -------------------------------------------------------------------------------- /l10n/de_AT.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "mozilla_sync", 3 | { 4 | "Failed to delete storage" : "Fehler beim Löschen des Speichers", 5 | "Failed to delete user" : "Fehler beim Löschen des Nutzers", 6 | "Storage deleted" : "Speicher gelöscht", 7 | "User not found" : "Nutzer nicht gefunden", 8 | "Restriction saved" : "Einschränkung gespeichert", 9 | "Invalid input" : "Ungültige Eingabe", 10 | "Sync email saved" : "E-Mail Adresse zur Synchronisation gespeichert", 11 | "Quota saved" : "Kontigent gespeichert", 12 | "Mozilla Sync" : "Mozilla-Sync", 13 | "Restrict to group" : "Auf Gruppe beschränken", 14 | "When activated, only members of this group can access Mozilla Sync." : "Wenn aktiviert, können nur Gruppenmitglieder dieser Gruppe auf Mozilla-Sync zugreifen.", 15 | "Sync quota" : "Kontingent zur Synchronisation", 16 | "Set the value to 0 for unlimited quota." : "Den Wert auf 0 setzen für ein unbegrenztes Kontingent.", 17 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." : "Fehler! Du bist zur Nutzung von Mozilla-Sync nicht berechtigt! Du musst Mitglied der %s Gruppe sein.", 18 | "To use Mozilla Sync enter the credentials in to Mozilla Sync client" : "Um Mozilla Sync nutzen zu können, geben sie die Anmeldedaten im Mozilla Sync Client ein", 19 | "To set up Mozilla Sync create a new Sync account in Firefox." : "Für Mozilla-Sync muss ein neues Synchronisationskonto in Firefox eingerichtet werden.", 20 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." : "Mozilla-Sync ist eingerichtet. Zusätzliche Geräte können manuell oder über den Mozilla Gerätepaarungsservice hinzugefügt werden.", 21 | "Email:" : "Email:", 22 | "Has to be unique among all Sync users" : "Dies muss über alle Synchronisationsnutzer hinweg einzigartig sein", 23 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." : "Fehler! Doppelte E-Mail Adresse gefunden! E-Mail Adressen müssen für Mozilla-Sync eindeutig sein.", 24 | "Password:" : "Passwort:", 25 | "Use your ownCloud account password" : "Benutze dein ownCloud Benutzerkonto-Passwort", 26 | "Server address:" : "Server Adresse:", 27 | "Sync Status" : "Synchronisation-Status", 28 | "Last sync:" : "Letzte Synchronisierung:", 29 | "Size of stored data:" : "Größe der gespeichertden Daten:", 30 | "No data stored yet." : "Keine Daten bisher gespeichert.", 31 | "Number of synced devices:" : "Anzahl der synchronisierten Geräte: ", 32 | "Delete Sync data" : "Synchronisationsdaten löschen", 33 | "Attention! This will delete all your Sync data on the server." : "Achtung! Dies wird alle deine Synchronisationsdaten auf dem Server löschen." 34 | }, 35 | "nplurals=2; plural=(n != 1);"); 36 | -------------------------------------------------------------------------------- /l10n/de_AT.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Failed to delete storage" : "Fehler beim Löschen des Speichers", 3 | "Failed to delete user" : "Fehler beim Löschen des Nutzers", 4 | "Storage deleted" : "Speicher gelöscht", 5 | "User not found" : "Nutzer nicht gefunden", 6 | "Restriction saved" : "Einschränkung gespeichert", 7 | "Invalid input" : "Ungültige Eingabe", 8 | "Sync email saved" : "E-Mail Adresse zur Synchronisation gespeichert", 9 | "Quota saved" : "Kontigent gespeichert", 10 | "Mozilla Sync" : "Mozilla-Sync", 11 | "Restrict to group" : "Auf Gruppe beschränken", 12 | "When activated, only members of this group can access Mozilla Sync." : "Wenn aktiviert, können nur Gruppenmitglieder dieser Gruppe auf Mozilla-Sync zugreifen.", 13 | "Sync quota" : "Kontingent zur Synchronisation", 14 | "Set the value to 0 for unlimited quota." : "Den Wert auf 0 setzen für ein unbegrenztes Kontingent.", 15 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." : "Fehler! Du bist zur Nutzung von Mozilla-Sync nicht berechtigt! Du musst Mitglied der %s Gruppe sein.", 16 | "To use Mozilla Sync enter the credentials in to Mozilla Sync client" : "Um Mozilla Sync nutzen zu können, geben sie die Anmeldedaten im Mozilla Sync Client ein", 17 | "To set up Mozilla Sync create a new Sync account in Firefox." : "Für Mozilla-Sync muss ein neues Synchronisationskonto in Firefox eingerichtet werden.", 18 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." : "Mozilla-Sync ist eingerichtet. Zusätzliche Geräte können manuell oder über den Mozilla Gerätepaarungsservice hinzugefügt werden.", 19 | "Email:" : "Email:", 20 | "Has to be unique among all Sync users" : "Dies muss über alle Synchronisationsnutzer hinweg einzigartig sein", 21 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." : "Fehler! Doppelte E-Mail Adresse gefunden! E-Mail Adressen müssen für Mozilla-Sync eindeutig sein.", 22 | "Password:" : "Passwort:", 23 | "Use your ownCloud account password" : "Benutze dein ownCloud Benutzerkonto-Passwort", 24 | "Server address:" : "Server Adresse:", 25 | "Sync Status" : "Synchronisation-Status", 26 | "Last sync:" : "Letzte Synchronisierung:", 27 | "Size of stored data:" : "Größe der gespeichertden Daten:", 28 | "No data stored yet." : "Keine Daten bisher gespeichert.", 29 | "Number of synced devices:" : "Anzahl der synchronisierten Geräte: ", 30 | "Delete Sync data" : "Synchronisationsdaten löschen", 31 | "Attention! This will delete all your Sync data on the server." : "Achtung! Dies wird alle deine Synchronisationsdaten auf dem Server löschen." 32 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 33 | } -------------------------------------------------------------------------------- /l10n/de_AT.php: -------------------------------------------------------------------------------- 1 | "Fehler beim Löschen des Speichers", 4 | "Failed to delete user" => "Fehler beim Löschen des Nutzers", 5 | "Storage deleted" => "Speicher gelöscht", 6 | "User not found" => "Nutzer nicht gefunden", 7 | "Restriction saved" => "Einschränkung gespeichert", 8 | "Invalid input" => "Ungültige Eingabe", 9 | "Sync email saved" => "E-Mail Adresse zur Synchronisation gespeichert", 10 | "Quota saved" => "Kontigent gespeichert", 11 | "Mozilla Sync" => "Mozilla-Sync", 12 | "Restrict to group" => "Auf Gruppe beschränken", 13 | "When activated, only members of this group can access Mozilla Sync." => "Wenn aktiviert, können nur Gruppenmitglieder dieser Gruppe auf Mozilla-Sync zugreifen.", 14 | "Sync quota" => "Kontingent zur Synchronisation", 15 | "Set the value to 0 for unlimited quota." => "Den Wert auf 0 setzen für ein unbegrenztes Kontingent.", 16 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." => "Fehler! Du bist zur Nutzung von Mozilla-Sync nicht berechtigt! Du musst Mitglied der %s Gruppe sein.", 17 | "To use Mozilla Sync enter the credentials in to Mozilla Sync client" => "Um Mozilla Sync nutzen zu können, geben sie die Anmeldedaten im Mozilla Sync Client ein", 18 | "To set up Mozilla Sync create a new Sync account in Firefox." => "Für Mozilla-Sync muss ein neues Synchronisationskonto in Firefox eingerichtet werden.", 19 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." => "Mozilla-Sync ist eingerichtet. Zusätzliche Geräte können manuell oder über den Mozilla Gerätepaarungsservice hinzugefügt werden.", 20 | "Email:" => "Email:", 21 | "Has to be unique among all Sync users" => "Dies muss über alle Synchronisationsnutzer hinweg einzigartig sein", 22 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." => "Fehler! Doppelte E-Mail Adresse gefunden! E-Mail Adressen müssen für Mozilla-Sync eindeutig sein.", 23 | "Password:" => "Passwort:", 24 | "Use your ownCloud account password" => "Benutze dein ownCloud Benutzerkonto-Passwort", 25 | "Server address:" => "Server Adresse:", 26 | "Sync Status" => "Synchronisation-Status", 27 | "Last sync:" => "Letzte Synchronisierung:", 28 | "Size of stored data:" => "Größe der gespeichertden Daten:", 29 | "No data stored yet." => "Keine Daten bisher gespeichert.", 30 | "Number of synced devices:" => "Anzahl der synchronisierten Geräte: ", 31 | "Delete Sync data" => "Synchronisationsdaten löschen", 32 | "Attention! This will delete all your Sync data on the server." => "Achtung! Dies wird alle deine Synchronisationsdaten auf dem Server löschen." 33 | ); 34 | $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 35 | -------------------------------------------------------------------------------- /l10n/en@pirate.php: -------------------------------------------------------------------------------- 1 | "Secret Code" 3 | ); 4 | -------------------------------------------------------------------------------- /l10n/en_GB.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "mozilla_sync", 3 | { 4 | "Failed to delete storage" : "Failed to delete storage", 5 | "Failed to delete user" : "Failed to delete user", 6 | "Storage deleted" : "Storage deleted", 7 | "User not found" : "User not found", 8 | "Restriction saved" : "Restriction saved", 9 | "Invalid input" : "Invalid input", 10 | "Auto create sync account enabled" : "Auto create sync account enabled", 11 | "Auto create sync account disabled" : "Auto create sync account disabled", 12 | "Sync email saved" : "Sync email saved", 13 | "Quota saved" : "Quota saved", 14 | "Mozilla Sync" : "Mozilla Sync", 15 | "Restrict to group" : "Restrict to group", 16 | "When activated, only members of this group can access Mozilla Sync." : "When activated, only members of this group can access Mozilla Sync.", 17 | "Sync quota" : "Sync quota", 18 | "Set the value to 0 for unlimited quota." : "Set the value to 0 for unlimited quota.", 19 | "Auto create sync account" : "Auto create sync account", 20 | "When activated, the Mozilla Sync registration API will be disabled and instead accounts will be auto created using a user's existing credentials" : "When activated, the Mozilla Sync registration API will be disabled and instead accounts will be auto created using a user's existing credentials", 21 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." : "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group.", 22 | "To use Mozilla Sync enter the credentials in to Mozilla Sync client" : "To use Mozilla Sync enter the credentials into Mozilla Sync client", 23 | "To set up Mozilla Sync create a new Sync account in Firefox." : "To set up Mozilla Sync create a new Sync account in Firefox.", 24 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." : "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually.", 25 | "Email:" : "Email:", 26 | "Has to be unique among all Sync users" : "Has to be unique amongst all Sync users", 27 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." : "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work.", 28 | "Password:" : "Password:", 29 | "Use your ownCloud account password" : "Use your ownCloud account password", 30 | "Server address:" : "Server address:", 31 | "Sync Status" : "Sync Status", 32 | "Last sync:" : "Last sync:", 33 | "Size of stored data:" : "Size of stored data:", 34 | "No data stored yet." : "No data stored yet.", 35 | "Number of synced devices:" : "Number of synced devices:", 36 | "Delete Sync data" : "Delete Sync data", 37 | "Attention! This will delete all your Sync data on the server." : "Attention! This will delete all your Sync data on the server." 38 | }, 39 | "nplurals=2; plural=(n != 1);"); 40 | -------------------------------------------------------------------------------- /l10n/en_GB.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Failed to delete storage" : "Failed to delete storage", 3 | "Failed to delete user" : "Failed to delete user", 4 | "Storage deleted" : "Storage deleted", 5 | "User not found" : "User not found", 6 | "Restriction saved" : "Restriction saved", 7 | "Invalid input" : "Invalid input", 8 | "Auto create sync account enabled" : "Auto create sync account enabled", 9 | "Auto create sync account disabled" : "Auto create sync account disabled", 10 | "Sync email saved" : "Sync email saved", 11 | "Quota saved" : "Quota saved", 12 | "Mozilla Sync" : "Mozilla Sync", 13 | "Restrict to group" : "Restrict to group", 14 | "When activated, only members of this group can access Mozilla Sync." : "When activated, only members of this group can access Mozilla Sync.", 15 | "Sync quota" : "Sync quota", 16 | "Set the value to 0 for unlimited quota." : "Set the value to 0 for unlimited quota.", 17 | "Auto create sync account" : "Auto create sync account", 18 | "When activated, the Mozilla Sync registration API will be disabled and instead accounts will be auto created using a user's existing credentials" : "When activated, the Mozilla Sync registration API will be disabled and instead accounts will be auto created using a user's existing credentials", 19 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." : "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group.", 20 | "To use Mozilla Sync enter the credentials in to Mozilla Sync client" : "To use Mozilla Sync enter the credentials into Mozilla Sync client", 21 | "To set up Mozilla Sync create a new Sync account in Firefox." : "To set up Mozilla Sync create a new Sync account in Firefox.", 22 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." : "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually.", 23 | "Email:" : "Email:", 24 | "Has to be unique among all Sync users" : "Has to be unique amongst all Sync users", 25 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." : "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work.", 26 | "Password:" : "Password:", 27 | "Use your ownCloud account password" : "Use your ownCloud account password", 28 | "Server address:" : "Server address:", 29 | "Sync Status" : "Sync Status", 30 | "Last sync:" : "Last sync:", 31 | "Size of stored data:" : "Size of stored data:", 32 | "No data stored yet." : "No data stored yet.", 33 | "Number of synced devices:" : "Number of synced devices:", 34 | "Delete Sync data" : "Delete Sync data", 35 | "Attention! This will delete all your Sync data on the server." : "Attention! This will delete all your Sync data on the server." 36 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 37 | } -------------------------------------------------------------------------------- /l10n/en_GB.php: -------------------------------------------------------------------------------- 1 | "Failed to delete storage", 4 | "Failed to delete user" => "Failed to delete user", 5 | "Storage deleted" => "Storage deleted", 6 | "User not found" => "User not found", 7 | "Restriction saved" => "Restriction saved", 8 | "Invalid input" => "Invalid input", 9 | "Auto create sync account enabled" => "Auto create sync account enabled", 10 | "Auto create sync account disabled" => "Auto create sync account disabled", 11 | "Sync email saved" => "Sync email saved", 12 | "Quota saved" => "Quota saved", 13 | "Mozilla Sync" => "Mozilla Sync", 14 | "Restrict to group" => "Restrict to group", 15 | "When activated, only members of this group can access Mozilla Sync." => "When activated, only members of this group can access Mozilla Sync.", 16 | "Sync quota" => "Sync quota", 17 | "Set the value to 0 for unlimited quota." => "Set the value to 0 for unlimited quota.", 18 | "Auto create sync account" => "Auto create sync account", 19 | "When activated, the Mozilla Sync registration API will be disabled and instead accounts will be auto created using a user's existing credentials" => "When activated, the Mozilla Sync registration API will be disabled and instead accounts will be auto created using a user's existing credentials", 20 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." => "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group.", 21 | "To use Mozilla Sync enter the credentials in to Mozilla Sync client" => "To use Mozilla Sync enter the credentials into Mozilla Sync client", 22 | "To set up Mozilla Sync create a new Sync account in Firefox." => "To set up Mozilla Sync create a new Sync account in Firefox.", 23 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." => "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually.", 24 | "Email:" => "Email:", 25 | "Has to be unique among all Sync users" => "Has to be unique amongst all Sync users", 26 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." => "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work.", 27 | "Password:" => "Password:", 28 | "Use your ownCloud account password" => "Use your ownCloud account password", 29 | "Server address:" => "Server address:", 30 | "Sync Status" => "Sync Status", 31 | "Last sync:" => "Last sync:", 32 | "Size of stored data:" => "Size of stored data:", 33 | "No data stored yet." => "No data stored yet.", 34 | "Number of synced devices:" => "Number of synced devices:", 35 | "Delete Sync data" => "Delete Sync data", 36 | "Attention! This will delete all your Sync data on the server." => "Attention! This will delete all your Sync data on the server." 37 | ); 38 | $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 39 | -------------------------------------------------------------------------------- /l10n/eo.php: -------------------------------------------------------------------------------- 1 | "Malsukcesis forigo de memorilo", 4 | "Failed to delete user" => "Malsukcesis forigo de uzanto", 5 | "Storage deleted" => "La memorilo foriĝis", 6 | "User not found" => "Uzanto ne troviĝis", 7 | "Invalid input" => "La enigo ne validas", 8 | "Quota saved" => "La kvoto konserviĝis", 9 | "Mozilla Sync" => "Mozilo Sync", 10 | "Sync quota" => "Sinkronigi kvoton", 11 | "Email:" => "Retpoŝto:", 12 | "Has to be unique among all Sync users" => "Ĝi devas ununuri inter ĉiuj uzantoj de Sync", 13 | "Password:" => "Pasvorto:", 14 | "Use your ownCloud account password" => "Uzi la pasvorton de via konto de ownCloud", 15 | "Server address:" => "Servila adreso:", 16 | "Sync Status" => "Stato de sinkronigo", 17 | "Last sync:" => "Lasta sinkronigo:", 18 | "Size of stored data:" => "Grando de memorata datumaro:", 19 | "No data stored yet." => "Neniu datumo enmemoriĝis ankoraŭ.", 20 | "Number of synced devices:" => "Kiamo de sinkronigitaj aparatoj:" 21 | ); 22 | $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 23 | -------------------------------------------------------------------------------- /l10n/es_AR.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "mozilla_sync", 3 | { 4 | "Failed to delete storage" : "No se pudo borrar el almacenamiento", 5 | "Failed to delete user" : "No se pudo borrar el usuario", 6 | "Storage deleted" : "Almacenamiento borrado", 7 | "User not found" : "No se pudo encontrar el usuario", 8 | "Restriction saved" : "Guardado con restricciones", 9 | "Invalid input" : "Contenido inválido", 10 | "Sync email saved" : "Correo Sync guardado", 11 | "Quota saved" : "Cuota guardada", 12 | "Mozilla Sync" : "Sincronización Mozilla", 13 | "Restrict to group" : "Restringir a grupo", 14 | "When activated, only members of this group can access Mozilla Sync." : "Cuan está activo, solo miembros de este grupo pueden acceder a Mozilla Sync.", 15 | "Sync quota" : "Cuota de sincronización", 16 | "Set the value to 0 for unlimited quota." : "Establecer el valor a 0 para cuota ilimitada. ", 17 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." : "¡Error! ¡No estás permitido usar Mozilla Sync! Debés ser miembro del grupo %s.", 18 | "To set up Mozilla Sync create a new Sync account in Firefox." : "Para configurar Mozilla Sync se debe crear una nueva cuenta Sync en Firefox.", 19 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." : "Mozilla Sync está configurado, dispositivos adicionales pueden agregarse usando el servicio de paridad de dispositivos de Mozilla o manualmente.", 20 | "Has to be unique among all Sync users" : "Deber ser único entre todos los usuarios Sync", 21 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." : "¡Error! ¡Dirección de correo duplicado! Para que Mozilla Sync funcione, las direcciones de correo deben ser úncias.", 22 | "Password:" : "Contraseña:", 23 | "Use your ownCloud account password" : "Usá tu contraseña de ownCloud", 24 | "Sync Status" : "Estado de la sincronización", 25 | "No data stored yet." : "Todavía no hay datos almacenados.", 26 | "Delete Sync data" : "Borrar los datos de sincronización", 27 | "Attention! This will delete all your Sync data on the server." : "¡Atención! Esto borrará todos sus datos Sync del servidor." 28 | }, 29 | "nplurals=2; plural=(n != 1);"); 30 | -------------------------------------------------------------------------------- /l10n/es_AR.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Failed to delete storage" : "No se pudo borrar el almacenamiento", 3 | "Failed to delete user" : "No se pudo borrar el usuario", 4 | "Storage deleted" : "Almacenamiento borrado", 5 | "User not found" : "No se pudo encontrar el usuario", 6 | "Restriction saved" : "Guardado con restricciones", 7 | "Invalid input" : "Contenido inválido", 8 | "Sync email saved" : "Correo Sync guardado", 9 | "Quota saved" : "Cuota guardada", 10 | "Mozilla Sync" : "Sincronización Mozilla", 11 | "Restrict to group" : "Restringir a grupo", 12 | "When activated, only members of this group can access Mozilla Sync." : "Cuan está activo, solo miembros de este grupo pueden acceder a Mozilla Sync.", 13 | "Sync quota" : "Cuota de sincronización", 14 | "Set the value to 0 for unlimited quota." : "Establecer el valor a 0 para cuota ilimitada. ", 15 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." : "¡Error! ¡No estás permitido usar Mozilla Sync! Debés ser miembro del grupo %s.", 16 | "To set up Mozilla Sync create a new Sync account in Firefox." : "Para configurar Mozilla Sync se debe crear una nueva cuenta Sync en Firefox.", 17 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." : "Mozilla Sync está configurado, dispositivos adicionales pueden agregarse usando el servicio de paridad de dispositivos de Mozilla o manualmente.", 18 | "Has to be unique among all Sync users" : "Deber ser único entre todos los usuarios Sync", 19 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." : "¡Error! ¡Dirección de correo duplicado! Para que Mozilla Sync funcione, las direcciones de correo deben ser úncias.", 20 | "Password:" : "Contraseña:", 21 | "Use your ownCloud account password" : "Usá tu contraseña de ownCloud", 22 | "Sync Status" : "Estado de la sincronización", 23 | "No data stored yet." : "Todavía no hay datos almacenados.", 24 | "Delete Sync data" : "Borrar los datos de sincronización", 25 | "Attention! This will delete all your Sync data on the server." : "¡Atención! Esto borrará todos sus datos Sync del servidor." 26 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 27 | } -------------------------------------------------------------------------------- /l10n/es_AR.php: -------------------------------------------------------------------------------- 1 | "No se pudo borrar el almacenamiento", 4 | "Failed to delete user" => "No se pudo borrar el usuario", 5 | "Storage deleted" => "Almacenamiento borrado", 6 | "User not found" => "No se pudo encontrar el usuario", 7 | "Restriction saved" => "Guardado con restricciones", 8 | "Invalid input" => "Contenido inválido", 9 | "Sync email saved" => "Correo Sync guardado", 10 | "Quota saved" => "Cuota guardada", 11 | "Mozilla Sync" => "Sincronización Mozilla", 12 | "Restrict to group" => "Restringir a grupo", 13 | "When activated, only members of this group can access Mozilla Sync." => "Cuan está activo, solo miembros de este grupo pueden acceder a Mozilla Sync.", 14 | "Sync quota" => "Cuota de sincronización", 15 | "Set the value to 0 for unlimited quota." => "Establecer el valor a 0 para cuota ilimitada. ", 16 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." => "¡Error! ¡No estás permitido usar Mozilla Sync! Debés ser miembro del grupo %s.", 17 | "To set up Mozilla Sync create a new Sync account in Firefox." => "Para configurar Mozilla Sync se debe crear una nueva cuenta Sync en Firefox.", 18 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." => "Mozilla Sync está configurado, dispositivos adicionales pueden agregarse usando el servicio de paridad de dispositivos de Mozilla o manualmente.", 19 | "Has to be unique among all Sync users" => "Deber ser único entre todos los usuarios Sync", 20 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." => "¡Error! ¡Dirección de correo duplicado! Para que Mozilla Sync funcione, las direcciones de correo deben ser úncias.", 21 | "Password:" => "Contraseña:", 22 | "Use your ownCloud account password" => "Usá tu contraseña de ownCloud", 23 | "Sync Status" => "Estado de la sincronización", 24 | "No data stored yet." => "Todavía no hay datos almacenados.", 25 | "Delete Sync data" => "Borrar los datos de sincronización", 26 | "Attention! This will delete all your Sync data on the server." => "¡Atención! Esto borrará todos sus datos Sync del servidor." 27 | ); 28 | $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 29 | -------------------------------------------------------------------------------- /l10n/es_CL.php: -------------------------------------------------------------------------------- 1 | "Clave" 3 | ); 4 | -------------------------------------------------------------------------------- /l10n/es_MX.php: -------------------------------------------------------------------------------- 1 | "Falló en borrar el almacén", 4 | "Failed to delete user" => "Falló al borrar un usuario", 5 | "Storage deleted" => "Almacen borrado", 6 | "User not found" => "Usuario no encontrado", 7 | "Restriction saved" => "Restricción guardada", 8 | "Invalid input" => "Entrada inválida", 9 | "Quota saved" => "Cuota salvada", 10 | "Mozilla Sync" => "Servicio de sincronización de Mozilla", 11 | "Restrict to group" => "Restringir al grupo", 12 | "When activated, only members of this group can access Mozilla Sync." => "Cuando se active, solamente miembros de este grupo podrán acceder a Mozilla Sync.", 13 | "Sync quota" => "Cúota Sync", 14 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." => "¡Error! ¡No tiene permiso para usar Mozilla Sync! Necesita ser miembro del grupo %s.", 15 | "To set up Mozilla Sync create a new Sync account in Firefox." => "Para configurar Mozilla Sync, debe crear una cuenta sync en Firefox.", 16 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." => "Mozilla Sync está configurado, los dispositivos adicionales, deben ser añadidos via servicio de emparejamiento de Mozilla o manualmente.", 17 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." => "¡Error! ¡Se han detectado direcciones de correo electrónico duplicadas! Las direcciones de correo electrónico deben ser únicas para que Mozilla Sync funcione.", 18 | "Use your ownCloud account password" => "Use su contraseña de ownCloud", 19 | "No data stored yet." => "Aún no hay datos almacenados.", 20 | "Attention! This will delete all your Sync data on the server." => "Atención!, esto borrara todos los datos sincronizados en el servidor." 21 | ); 22 | $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 23 | -------------------------------------------------------------------------------- /l10n/et_EE.php: -------------------------------------------------------------------------------- 1 | "Andmehoidla kustutamine ebaõnnestus", 4 | "Failed to delete user" => "Kasutaja kustutamine ebaõnnestus", 5 | "Storage deleted" => "Andmehoidla kustutatud", 6 | "User not found" => "Kasutajat ei leitud", 7 | "Restriction saved" => "Piirang salvestatud", 8 | "Invalid input" => "Vigane sisend", 9 | "Auto create sync account enabled" => "Sünkroniseerimiskonto automaatne loomine on lubatud", 10 | "Auto create sync account disabled" => "Sünkroniseerimiskonto automaatne loomine on keelatud", 11 | "Sync email saved" => "Sync e-mail salvestatud", 12 | "Quota saved" => "Mahupiirang salvestatud", 13 | "Mozilla Sync" => "Mozilla sünkroniseerimine", 14 | "Restrict to group" => "Piira grupile", 15 | "When activated, only members of this group can access Mozilla Sync." => "Kui on aktiveeritud, siis ainult grupi liikmed pääsevad ligi Mozilla Sync-ile.", 16 | "Sync quota" => "Sync mahupiirang", 17 | "Set the value to 0 for unlimited quota." => "Piiramatu kvoodi seadistuseks määra väärtuseks 0.", 18 | "Auto create sync account" => "Loo sünkroniseerimiskonto automaatselt", 19 | "When activated, the Mozilla Sync registration API will be disabled and instead accounts will be auto created using a user's existing credentials" => "Kui see on aktiveeritud, siis Mozilla Sync registreerumise API on välja lülitatud ja kontode loomise asemel kasutatakse kasutaja olemasolevaid kasutaja andmeid", 20 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." => "Viga! Sul pole lubatud kasutada Mozilla Sync-i! Sa peaksid olema %s grupi liige.", 21 | "To use Mozilla Sync enter the credentials in to Mozilla Sync client" => "Mozilla Synci kasutamiseks sisesta Mozilla Synci klienti oma kasutajaandmed", 22 | "To set up Mozilla Sync create a new Sync account in Firefox." => "Seadistamaks Mozilla Sync-i loo Firefoxis uus Sync konto.", 23 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." => "Mozilla Sync on seadistatud, lisaseadmeid saab lisada käsitsi või kasutades Mozilla seadmete sidumisteenust.", 24 | "Email:" => "E-post:", 25 | "Has to be unique among all Sync users" => "Peab olema unikaalne üle kõigi Sync kasutajate", 26 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." => "Viga! Leitud dubleeritav e-posti aadress! Mozilla Sync toimimiseks peavad E-posti aadressid olema unikaalsed. ", 27 | "Password:" => "Parool:", 28 | "Use your ownCloud account password" => "Kasuta oma ownCloudi konto parooli", 29 | "Server address:" => "Serveri aadress:", 30 | "Sync Status" => "Sünkroniseeringu staatus", 31 | "Last sync:" => "Viimane sünkroniseerimine:", 32 | "Size of stored data:" => "Salvestatud andmete maht:", 33 | "No data stored yet." => "Andmeid pole veel talletatud.", 34 | "Number of synced devices:" => "Sünkroniseeritud seadmete arv:", 35 | "Delete Sync data" => "Kustuta Sync andmed", 36 | "Attention! This will delete all your Sync data on the server." => "Tähelepanu! See eemaldab serverist kõik sinu sünkroniseeritavad andmed." 37 | ); 38 | $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 39 | -------------------------------------------------------------------------------- /l10n/eu.php: -------------------------------------------------------------------------------- 1 | "Ezin izan da biltegiratzea ezabatu", 4 | "Failed to delete user" => "Ezin izan da erabiltzailea ezabatu", 5 | "Storage deleted" => "Biltegiratzea ezabatu da", 6 | "User not found" => "Ez da erabiltzailea aurkitu", 7 | "Restriction saved" => "Murrizketa gordeta", 8 | "Invalid input" => "Baliogabeko sarrera", 9 | "Auto create sync account enabled" => "sync kontua automatikoki sortzea gaituta", 10 | "Auto create sync account disabled" => "sync kontua automatikoki sortzea ez-gaituta", 11 | "Sync email saved" => "Sync eposta gorde da", 12 | "Quota saved" => "Kuota gorde da", 13 | "Mozilla Sync" => "Mozilla Sync", 14 | "Restrict to group" => "Mugatu taldera", 15 | "When activated, only members of this group can access Mozilla Sync." => "Gaitutakoan, bakarrik talde honetako partaideak erabili ahal izango dute Mozilla Sync.", 16 | "Sync quota" => "Sinkronizazio kuota", 17 | "Set the value to 0 for unlimited quota." => "Ezarri 0 balioa mugarik gabeko kuota ezartzeko.", 18 | "Auto create sync account" => "Automatikoki sortu sync kontua", 19 | "When activated, the Mozilla Sync registration API will be disabled and instead accounts will be auto created using a user's existing credentials" => "Hau gaitutakoan, Mozilla Sync erregistro APIa desgaituko da eta bere ordez erabiltzailearen uneko krendentzialak erabiliz kontuak automatikoki sortuko dira", 20 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." => "Errorea! Ez zaude Mozilla Sync erabiltzeko baimenduta! %s taldearen partaidea izan behar zara.", 21 | "To use Mozilla Sync enter the credentials in to Mozilla Sync client" => "Mozilla Sync erabiltzeko sartu kredentzialak Mozilla Sync bezeroan", 22 | "To set up Mozilla Sync create a new Sync account in Firefox." => "Mozilla Sync erabiltzeko sortu Sync kontu berria Firefoxen.", 23 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." => "Mozilla Sync konfiguratuta dago, gailu gehiago Mozilla gailu parekatze zerbitzuarekin edo eskuz gehi daitezke.", 24 | "Email:" => "E-posta:", 25 | "Has to be unique among all Sync users" => "Sync erabiltzaile guztien artean bakarra izan behar da", 26 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." => "Errorea! Bikoiztutako e-posta helbideak aurkitu dira! E-posta helbideak bakarrak izan behar dira Mozilla Syncek funtziona dezan.", 27 | "Password:" => "Pasahitza:", 28 | "Use your ownCloud account password" => "Erabili zure ownCloud kontuko pasahitza", 29 | "Server address:" => "Zerbitzariaren helbidea:", 30 | "Sync Status" => "Syncen Egoera", 31 | "Last sync:" => "Azkenengo sinkronizazioa:", 32 | "Size of stored data:" => "Gordetako datuen tamaina:", 33 | "No data stored yet." => "Oraindik ez da daturik gorde.", 34 | "Number of synced devices:" => "Sinkronizatutako gailu kopurua", 35 | "Delete Sync data" => "Ezabatu Syncen datuak", 36 | "Attention! This will delete all your Sync data on the server." => "Kontuz! Honek zerbitzarian sinkronizatutako datu guztiak ezabatuko ditu." 37 | ); 38 | $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 39 | -------------------------------------------------------------------------------- /l10n/fa.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "mozilla_sync", 3 | { 4 | "Failed to delete storage" : "خطا در حذف مخزن", 5 | "Failed to delete user" : "خطا در حذف کاربر", 6 | "Storage deleted" : "مخزن (استوریج) حذف شد", 7 | "User not found" : "کاربر یافت نشد", 8 | "Restriction saved" : "محدودیت ذخیره شد", 9 | "Invalid input" : "مقدار ورودی نامعتبر است", 10 | "Sync email saved" : "همگام سازی ایمیل ذخیره شد", 11 | "Quota saved" : "سهمیه ذخیره شد", 12 | "Mozilla Sync" : "همگام سازی موزیلا", 13 | "Restrict to group" : "محدود کردن به گروه", 14 | "Sync quota" : "سهمیه همگام سازی", 15 | "Set the value to 0 for unlimited quota." : "تنظیم مقدار به 0 برای سهمیه نامحدود", 16 | "Email:" : "ایمیل:", 17 | "Has to be unique among all Sync users" : "می بایست بین تمام کاربران همگام سازی یکتا باشد", 18 | "Password:" : "رمز عبور:", 19 | "Use your ownCloud account password" : "استفاده از رمز عبور حساب کارب ownCloud خود", 20 | "Server address:" : "آدرس سرور:", 21 | "Sync Status" : "وضعیت همگام سازی", 22 | "Last sync:" : "آخرین همگام سازی", 23 | "Size of stored data:" : "سایز داده ذخیره شده:", 24 | "No data stored yet." : "هنوز داده ای ذخیره نشده است.", 25 | "Number of synced devices:" : "تعداد دستگاه های همگام شده:", 26 | "Delete Sync data" : "پاک کردن داده همگام شده", 27 | "Attention! This will delete all your Sync data on the server." : "توجه! با این کار تمام داده های همگام سازی شده در سرور حذف خواهند شد." 28 | }, 29 | "nplurals=1; plural=0;"); 30 | -------------------------------------------------------------------------------- /l10n/fa.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Failed to delete storage" : "خطا در حذف مخزن", 3 | "Failed to delete user" : "خطا در حذف کاربر", 4 | "Storage deleted" : "مخزن (استوریج) حذف شد", 5 | "User not found" : "کاربر یافت نشد", 6 | "Restriction saved" : "محدودیت ذخیره شد", 7 | "Invalid input" : "مقدار ورودی نامعتبر است", 8 | "Sync email saved" : "همگام سازی ایمیل ذخیره شد", 9 | "Quota saved" : "سهمیه ذخیره شد", 10 | "Mozilla Sync" : "همگام سازی موزیلا", 11 | "Restrict to group" : "محدود کردن به گروه", 12 | "Sync quota" : "سهمیه همگام سازی", 13 | "Set the value to 0 for unlimited quota." : "تنظیم مقدار به 0 برای سهمیه نامحدود", 14 | "Email:" : "ایمیل:", 15 | "Has to be unique among all Sync users" : "می بایست بین تمام کاربران همگام سازی یکتا باشد", 16 | "Password:" : "رمز عبور:", 17 | "Use your ownCloud account password" : "استفاده از رمز عبور حساب کارب ownCloud خود", 18 | "Server address:" : "آدرس سرور:", 19 | "Sync Status" : "وضعیت همگام سازی", 20 | "Last sync:" : "آخرین همگام سازی", 21 | "Size of stored data:" : "سایز داده ذخیره شده:", 22 | "No data stored yet." : "هنوز داده ای ذخیره نشده است.", 23 | "Number of synced devices:" : "تعداد دستگاه های همگام شده:", 24 | "Delete Sync data" : "پاک کردن داده همگام شده", 25 | "Attention! This will delete all your Sync data on the server." : "توجه! با این کار تمام داده های همگام سازی شده در سرور حذف خواهند شد." 26 | },"pluralForm" :"nplurals=1; plural=0;" 27 | } -------------------------------------------------------------------------------- /l10n/fa.php: -------------------------------------------------------------------------------- 1 | "خطا در حذف مخزن", 4 | "Failed to delete user" => "خطا در حذف کاربر", 5 | "Storage deleted" => "مخزن (استوریج) حذف شد", 6 | "User not found" => "کاربر یافت نشد", 7 | "Restriction saved" => "محدودیت ذخیره شد", 8 | "Invalid input" => "مقدار ورودی نامعتبر است", 9 | "Sync email saved" => "همگام سازی ایمیل ذخیره شد", 10 | "Quota saved" => "سهمیه ذخیره شد", 11 | "Mozilla Sync" => "همگام سازی موزیلا", 12 | "Restrict to group" => "محدود کردن به گروه", 13 | "Sync quota" => "سهمیه همگام سازی", 14 | "Set the value to 0 for unlimited quota." => "تنظیم مقدار به 0 برای سهمیه نامحدود", 15 | "Email:" => "ایمیل:", 16 | "Has to be unique among all Sync users" => "می بایست بین تمام کاربران همگام سازی یکتا باشد", 17 | "Password:" => "رمز عبور:", 18 | "Use your ownCloud account password" => "استفاده از رمز عبور حساب کارب ownCloud خود", 19 | "Server address:" => "آدرس سرور:", 20 | "Sync Status" => "وضعیت همگام سازی", 21 | "Last sync:" => "آخرین همگام سازی", 22 | "Size of stored data:" => "سایز داده ذخیره شده:", 23 | "No data stored yet." => "هنوز داده ای ذخیره نشده است.", 24 | "Number of synced devices:" => "تعداد دستگاه های همگام شده:", 25 | "Delete Sync data" => "پاک کردن داده همگام شده", 26 | "Attention! This will delete all your Sync data on the server." => "توجه! با این کار تمام داده های همگام سازی شده در سرور حذف خواهند شد." 27 | ); 28 | $PLURAL_FORMS = "nplurals=1; plural=0;"; 29 | -------------------------------------------------------------------------------- /l10n/fi_FI.php: -------------------------------------------------------------------------------- 1 | "Tallennustilan poistaminen epäonnistui", 4 | "Failed to delete user" => "Käyttäjän poistaminen epäonnistui", 5 | "Storage deleted" => "Tallennustila poistettu", 6 | "User not found" => "Käyttäjää ei löytynyt", 7 | "Restriction saved" => "Rajoitus tallennettu", 8 | "Invalid input" => "Virheellinen syöte", 9 | "Auto create sync account enabled" => "Automaattinen sync-tilin luonti käytössä", 10 | "Auto create sync account disabled" => "Automaattinen sync-tilin luonti pois käytöstä", 11 | "Sync email saved" => "Sync-sähköposti tallennettu", 12 | "Quota saved" => "Kiintiö tallennettu", 13 | "Mozilla Sync" => "Mozilla Sync", 14 | "Restrict to group" => "Rajoita ryhmään", 15 | "When activated, only members of this group can access Mozilla Sync." => "Kun käytössä, vain tämän ryhmän jäsenet voivat käyttää Mozilla Syncia.", 16 | "Sync quota" => "Sync-kiintiö", 17 | "Set the value to 0 for unlimited quota." => "Aseta arvoksi 0 määrittääksesi rajoittamattoman kiintiön.", 18 | "Auto create sync account" => "Luo automaattisesti sync-tili", 19 | "When activated, the Mozilla Sync registration API will be disabled and instead accounts will be auto created using a user's existing credentials" => "Kun käytössä, Mozilla Syncin rekisteröintirajapinta poistetaan käytöstä ja tilit luodaan automaattisesti käyttäen käyttäjän olemassa olevia tilitietoja", 20 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." => "Virhe! Oikeutesi eivät riitä Mozillan synkronointipalvelun käyttöön. Käyttöä varten tarvitaan ryhmän %s jäsenyys.", 21 | "To use Mozilla Sync enter the credentials in to Mozilla Sync client" => "Käyttääksesi Mozilla Syncia, anna tilitiedot Mozilla Sync -asiakassovellukseen", 22 | "To set up Mozilla Sync create a new Sync account in Firefox." => "Luo uusi Sync-tili Firefoxissa käyttääksesi Mozillan synkronointipalvelua.", 23 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." => "Mozilla Syncin asetukset on tehty. Lisälaitteita on mahdollista liittää Mozillan laiteparituspalvelun kautta tai manuaalisesti.", 24 | "Email:" => "Sähköposti:", 25 | "Has to be unique among all Sync users" => "Täytyy olla yksilöllinen kaikkien Sync-käyttäjien kesken", 26 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." => "Virhe! Havaittiin päällekkäinen sähköpostiosoite! Sähköpostiosoitteiden tulee olla yksilöllisiä, jotta Mozilla Sync toimii.", 27 | "Password:" => "Salasana:", 28 | "Use your ownCloud account password" => "Käytä ownCloud-tilisi salasanaa", 29 | "Server address:" => "Palvelimen osoite:", 30 | "Sync Status" => "Synkronoinnin tila", 31 | "Last sync:" => "Viimeisin synkronointi:", 32 | "Size of stored data:" => "Tallennetun tiedon koko:", 33 | "No data stored yet." => "Tietoja ei ole vielä tallennettu.", 34 | "Number of synced devices:" => "Synkronoitujen laitteiden määrä:", 35 | "Delete Sync data" => "Poista Sync-tiedot", 36 | "Attention! This will delete all your Sync data on the server." => "Huomio! Tämä poistaa kaikki synkronointitietosi palvelimelta." 37 | ); 38 | $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 39 | -------------------------------------------------------------------------------- /l10n/he.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "mozilla_sync", 3 | { 4 | "Failed to delete storage" : "מחיקת מקום אחסון נכשלה", 5 | "Failed to delete user" : "מחיקת משתמש נכשלה", 6 | "Storage deleted" : "מקום אחסון נמחק", 7 | "User not found" : "משתמש לא אותר", 8 | "Restriction saved" : "הגבלה נשמרה", 9 | "Invalid input" : "קלט לא חוקי", 10 | "Auto create sync account enabled" : "יצירה אוטומטית של חשבון סנכרון מאופשרת", 11 | "Auto create sync account disabled" : "יצירה אוטומטית של חשבון סנכרון מנוטרלת", 12 | "Sync email saved" : "סנכרון דואר אלקטרוני נשמר", 13 | "Quota saved" : "הגבלת מכסה נשמרה", 14 | "Mozilla Sync" : "סנכון מוזילה", 15 | "Restrict to group" : "מוגבל לקבוצה", 16 | "When activated, only members of this group can access Mozilla Sync." : "כאשר מופעל, רק חברים בקבוצה זו יכולים להכנס לסנכרון מוזילה.", 17 | "Sync quota" : "הגבלת מכסת סנכרון", 18 | "Set the value to 0 for unlimited quota." : "קביעת הערך ל- 0 מעידה על מכסה לא מוגבלת", 19 | "Auto create sync account" : "יצירה אוטומטית של חשבון סנכרון", 20 | "When activated, the Mozilla Sync registration API will be disabled and instead accounts will be auto created using a user's existing credentials" : "כאשר מופעל, רישום API של סנכרון מוזילה יהיה מנוטרל ולחילופין חשבונות יבצרו באופן אוטומטי על בסיס אישורי משתמש קיימים", 21 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." : "שגיאה! סנכרון מוזילה לא מאופשר עבורך! כדי לבצע סנכון יש צורך להיות שייך לקבוצה %s.", 22 | "To use Mozilla Sync enter the credentials in to Mozilla Sync client" : "לצורך שימוש במרכז סנכרון מוזילה יש צורך להכניס את האישורים אל לקוח סנכרון מוזילה", 23 | "To set up Mozilla Sync create a new Sync account in Firefox." : "כדי להגדיר סנכרון מוזילה יש ליצור חשבון סנכרון חדש בפיירפוקס.", 24 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." : "סנכרון מוזילה מוגדר, ניתן לחבר התקנים נוספים על בסיס שירות צימוד ההתקנים של מוזילה או באופן ידני.", 25 | "Email:" : "דואר אלקטרוני:", 26 | "Has to be unique among all Sync users" : "חייב להיות יחודי בין כל משתמשי הסנכרון", 27 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." : "שגיאה! התגלו כתובות דואר אלקטרוני כפולות! כתובות דואר אלקטרוני חייבות להיות יחודיות בסנכרון מוזילה כדי לעבוד.", 28 | "Password:" : "סיסמא:", 29 | "Use your ownCloud account password" : "השתמש בסיסמת חשבון ה- ownCloud שלך", 30 | "Server address:" : "כתובת שרת:", 31 | "Sync Status" : "מצב סנכרון", 32 | "Last sync:" : "סנכרון אחרון:", 33 | "Size of stored data:" : "גודל מידע מאוחסן:", 34 | "No data stored yet." : "אין עדיין מידע מאוחסן.", 35 | "Number of synced devices:" : "מספר התקנים מסונכרנים:", 36 | "Delete Sync data" : "מחיקת מידע סנכרון", 37 | "Attention! This will delete all your Sync data on the server." : "זהירות! המשך ימחק את כל המידע המסונכרן שלך מהשרת." 38 | }, 39 | "nplurals=2; plural=(n != 1);"); 40 | -------------------------------------------------------------------------------- /l10n/he.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Failed to delete storage" : "מחיקת מקום אחסון נכשלה", 3 | "Failed to delete user" : "מחיקת משתמש נכשלה", 4 | "Storage deleted" : "מקום אחסון נמחק", 5 | "User not found" : "משתמש לא אותר", 6 | "Restriction saved" : "הגבלה נשמרה", 7 | "Invalid input" : "קלט לא חוקי", 8 | "Auto create sync account enabled" : "יצירה אוטומטית של חשבון סנכרון מאופשרת", 9 | "Auto create sync account disabled" : "יצירה אוטומטית של חשבון סנכרון מנוטרלת", 10 | "Sync email saved" : "סנכרון דואר אלקטרוני נשמר", 11 | "Quota saved" : "הגבלת מכסה נשמרה", 12 | "Mozilla Sync" : "סנכון מוזילה", 13 | "Restrict to group" : "מוגבל לקבוצה", 14 | "When activated, only members of this group can access Mozilla Sync." : "כאשר מופעל, רק חברים בקבוצה זו יכולים להכנס לסנכרון מוזילה.", 15 | "Sync quota" : "הגבלת מכסת סנכרון", 16 | "Set the value to 0 for unlimited quota." : "קביעת הערך ל- 0 מעידה על מכסה לא מוגבלת", 17 | "Auto create sync account" : "יצירה אוטומטית של חשבון סנכרון", 18 | "When activated, the Mozilla Sync registration API will be disabled and instead accounts will be auto created using a user's existing credentials" : "כאשר מופעל, רישום API של סנכרון מוזילה יהיה מנוטרל ולחילופין חשבונות יבצרו באופן אוטומטי על בסיס אישורי משתמש קיימים", 19 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." : "שגיאה! סנכרון מוזילה לא מאופשר עבורך! כדי לבצע סנכון יש צורך להיות שייך לקבוצה %s.", 20 | "To use Mozilla Sync enter the credentials in to Mozilla Sync client" : "לצורך שימוש במרכז סנכרון מוזילה יש צורך להכניס את האישורים אל לקוח סנכרון מוזילה", 21 | "To set up Mozilla Sync create a new Sync account in Firefox." : "כדי להגדיר סנכרון מוזילה יש ליצור חשבון סנכרון חדש בפיירפוקס.", 22 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." : "סנכרון מוזילה מוגדר, ניתן לחבר התקנים נוספים על בסיס שירות צימוד ההתקנים של מוזילה או באופן ידני.", 23 | "Email:" : "דואר אלקטרוני:", 24 | "Has to be unique among all Sync users" : "חייב להיות יחודי בין כל משתמשי הסנכרון", 25 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." : "שגיאה! התגלו כתובות דואר אלקטרוני כפולות! כתובות דואר אלקטרוני חייבות להיות יחודיות בסנכרון מוזילה כדי לעבוד.", 26 | "Password:" : "סיסמא:", 27 | "Use your ownCloud account password" : "השתמש בסיסמת חשבון ה- ownCloud שלך", 28 | "Server address:" : "כתובת שרת:", 29 | "Sync Status" : "מצב סנכרון", 30 | "Last sync:" : "סנכרון אחרון:", 31 | "Size of stored data:" : "גודל מידע מאוחסן:", 32 | "No data stored yet." : "אין עדיין מידע מאוחסן.", 33 | "Number of synced devices:" : "מספר התקנים מסונכרנים:", 34 | "Delete Sync data" : "מחיקת מידע סנכרון", 35 | "Attention! This will delete all your Sync data on the server." : "זהירות! המשך ימחק את כל המידע המסונכרן שלך מהשרת." 36 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 37 | } -------------------------------------------------------------------------------- /l10n/he.php: -------------------------------------------------------------------------------- 1 | "מחיקת מקום אחסון נכשלה", 4 | "Failed to delete user" => "מחיקת משתמש נכשלה", 5 | "Storage deleted" => "מקום אחסון נמחק", 6 | "User not found" => "משתמש לא אותר", 7 | "Restriction saved" => "הגבלה נשמרה", 8 | "Invalid input" => "קלט לא חוקי", 9 | "Auto create sync account enabled" => "יצירה אוטומטית של חשבון סנכרון מאופשרת", 10 | "Auto create sync account disabled" => "יצירה אוטומטית של חשבון סנכרון מנוטרלת", 11 | "Sync email saved" => "סנכרון דואר אלקטרוני נשמר", 12 | "Quota saved" => "הגבלת מכסה נשמרה", 13 | "Mozilla Sync" => "סנכון מוזילה", 14 | "Restrict to group" => "מוגבל לקבוצה", 15 | "When activated, only members of this group can access Mozilla Sync." => "כאשר מופעל, רק חברים בקבוצה זו יכולים להכנס לסנכרון מוזילה.", 16 | "Sync quota" => "הגבלת מכסת סנכרון", 17 | "Set the value to 0 for unlimited quota." => "קביעת הערך ל- 0 מעידה על מכסה לא מוגבלת", 18 | "Auto create sync account" => "יצירה אוטומטית של חשבון סנכרון", 19 | "When activated, the Mozilla Sync registration API will be disabled and instead accounts will be auto created using a user's existing credentials" => "כאשר מופעל, רישום API של סנכרון מוזילה יהיה מנוטרל ולחילופין חשבונות יבצרו באופן אוטומטי על בסיס אישורי משתמש קיימים", 20 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." => "שגיאה! סנכרון מוזילה לא מאופשר עבורך! כדי לבצע סנכון יש צורך להיות שייך לקבוצה %s.", 21 | "To use Mozilla Sync enter the credentials in to Mozilla Sync client" => "לצורך שימוש במרכז סנכרון מוזילה יש צורך להכניס את האישורים אל לקוח סנכרון מוזילה", 22 | "To set up Mozilla Sync create a new Sync account in Firefox." => "כדי להגדיר סנכרון מוזילה יש ליצור חשבון סנכרון חדש בפיירפוקס.", 23 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." => "סנכרון מוזילה מוגדר, ניתן לחבר התקנים נוספים על בסיס שירות צימוד ההתקנים של מוזילה או באופן ידני.", 24 | "Email:" => "דואר אלקטרוני:", 25 | "Has to be unique among all Sync users" => "חייב להיות יחודי בין כל משתמשי הסנכרון", 26 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." => "שגיאה! התגלו כתובות דואר אלקטרוני כפולות! כתובות דואר אלקטרוני חייבות להיות יחודיות בסנכרון מוזילה כדי לעבוד.", 27 | "Password:" => "סיסמא:", 28 | "Use your ownCloud account password" => "השתמש בסיסמת חשבון ה- ownCloud שלך", 29 | "Server address:" => "כתובת שרת:", 30 | "Sync Status" => "מצב סנכרון", 31 | "Last sync:" => "סנכרון אחרון:", 32 | "Size of stored data:" => "גודל מידע מאוחסן:", 33 | "No data stored yet." => "אין עדיין מידע מאוחסן.", 34 | "Number of synced devices:" => "מספר התקנים מסונכרנים:", 35 | "Delete Sync data" => "מחיקת מידע סנכרון", 36 | "Attention! This will delete all your Sync data on the server." => "זהירות! המשך ימחק את כל המידע המסונכרן שלך מהשרת." 37 | ); 38 | $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 39 | -------------------------------------------------------------------------------- /l10n/hi.php: -------------------------------------------------------------------------------- 1 | "पासवर्ड" 3 | ); 4 | -------------------------------------------------------------------------------- /l10n/hr.php: -------------------------------------------------------------------------------- 1 | "Lozinka:" 4 | ); 5 | $PLURAL_FORMS = "nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;"; 6 | -------------------------------------------------------------------------------- /l10n/ia.php: -------------------------------------------------------------------------------- 1 | "E-posta", 3 | "Password" => "Contrasigno" 4 | ); 5 | -------------------------------------------------------------------------------- /l10n/id.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "mozilla_sync", 3 | { 4 | "Failed to delete storage" : "Gagal menghapus penyimpanan", 5 | "Failed to delete user" : "Gagal menghapus pengguna", 6 | "Storage deleted" : "Penyimpanan dihapus", 7 | "User not found" : "Pengguna tidak ditemukan", 8 | "Restriction saved" : "Batasan disimpan", 9 | "Invalid input" : "Masukkan tidak sah", 10 | "Auto create sync account enabled" : "Pembuatan otomatis akun sync diaktifkan", 11 | "Auto create sync account disabled" : "Pembuatan otomatis akun sync dinonaktifkan", 12 | "Sync email saved" : "Email Sync disimpan", 13 | "Quota saved" : "Kuota disimpan", 14 | "Mozilla Sync" : "Mozilla Sync", 15 | "Restrict to group" : "Batasi ke grup", 16 | "When activated, only members of this group can access Mozilla Sync." : "Ketika diaktifkan, hanya anggota grup ini yang dapat mengakses Mozilla Sync.", 17 | "Sync quota" : "Kuota Sync", 18 | "Set the value to 0 for unlimited quota." : "Setel nilai ke 0 untuk kuota tidak terbatas.", 19 | "Auto create sync account" : "Buat akun sync otomatis", 20 | "When activated, the Mozilla Sync registration API will be disabled and instead accounts will be auto created using a user's existing credentials" : "Ketika diaktifkan, API registrasi Mozilla Sync akan dinonaktifkan dan sebagai gantinya, akun akan dibuat secara otomatis menggunakan kredensial pengguna yang sudah ada.", 21 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." : "Kesalahan! Anda tidak diizinkan untuk menggunakan Mozilla Sync! Anda harus menjadi anggota dari grup %s.", 22 | "To use Mozilla Sync enter the credentials in to Mozilla Sync client" : "Untuk menggunakan Mozilla Sync, masukkan kredensial ke dalam klien Mozilla Sync", 23 | "To set up Mozilla Sync create a new Sync account in Firefox." : "Untuk membuat Mozilla Sync, buat akun Sync baru di Firefox.", 24 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." : "Mozilla Sync telah disetel, piranti tambahan dapat ditambahkan via layanan pasangan piranti Mozilla.", 25 | "Email:" : "Email:", 26 | "Has to be unique among all Sync users" : "Harus unik di antara semua pengguna Sync", 27 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." : "Kesalahan! Duplikasi alamat email terdeteksi! Alamat email harus unik agar Mozilla Sync dapat bekerja.", 28 | "Password:" : "Sandi:", 29 | "Use your ownCloud account password" : "Gunakan sandi akun ownCloud Anda", 30 | "Server address:" : "Alamat server:", 31 | "Sync Status" : "Status Sync", 32 | "Last sync:" : "Sinkronisasi terakhir:", 33 | "Size of stored data:" : "Ukuran data tersimpan:", 34 | "No data stored yet." : "Tidak ada data yang disimpan.", 35 | "Number of synced devices:" : "Jumlah piranti yang disinkronisasi:", 36 | "Delete Sync data" : "Hapus data Sync", 37 | "Attention! This will delete all your Sync data on the server." : "Perhatian! Ini akan menghapus semua data Sync Anda pada server." 38 | }, 39 | "nplurals=1; plural=0;"); 40 | -------------------------------------------------------------------------------- /l10n/id.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Failed to delete storage" : "Gagal menghapus penyimpanan", 3 | "Failed to delete user" : "Gagal menghapus pengguna", 4 | "Storage deleted" : "Penyimpanan dihapus", 5 | "User not found" : "Pengguna tidak ditemukan", 6 | "Restriction saved" : "Batasan disimpan", 7 | "Invalid input" : "Masukkan tidak sah", 8 | "Auto create sync account enabled" : "Pembuatan otomatis akun sync diaktifkan", 9 | "Auto create sync account disabled" : "Pembuatan otomatis akun sync dinonaktifkan", 10 | "Sync email saved" : "Email Sync disimpan", 11 | "Quota saved" : "Kuota disimpan", 12 | "Mozilla Sync" : "Mozilla Sync", 13 | "Restrict to group" : "Batasi ke grup", 14 | "When activated, only members of this group can access Mozilla Sync." : "Ketika diaktifkan, hanya anggota grup ini yang dapat mengakses Mozilla Sync.", 15 | "Sync quota" : "Kuota Sync", 16 | "Set the value to 0 for unlimited quota." : "Setel nilai ke 0 untuk kuota tidak terbatas.", 17 | "Auto create sync account" : "Buat akun sync otomatis", 18 | "When activated, the Mozilla Sync registration API will be disabled and instead accounts will be auto created using a user's existing credentials" : "Ketika diaktifkan, API registrasi Mozilla Sync akan dinonaktifkan dan sebagai gantinya, akun akan dibuat secara otomatis menggunakan kredensial pengguna yang sudah ada.", 19 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." : "Kesalahan! Anda tidak diizinkan untuk menggunakan Mozilla Sync! Anda harus menjadi anggota dari grup %s.", 20 | "To use Mozilla Sync enter the credentials in to Mozilla Sync client" : "Untuk menggunakan Mozilla Sync, masukkan kredensial ke dalam klien Mozilla Sync", 21 | "To set up Mozilla Sync create a new Sync account in Firefox." : "Untuk membuat Mozilla Sync, buat akun Sync baru di Firefox.", 22 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." : "Mozilla Sync telah disetel, piranti tambahan dapat ditambahkan via layanan pasangan piranti Mozilla.", 23 | "Email:" : "Email:", 24 | "Has to be unique among all Sync users" : "Harus unik di antara semua pengguna Sync", 25 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." : "Kesalahan! Duplikasi alamat email terdeteksi! Alamat email harus unik agar Mozilla Sync dapat bekerja.", 26 | "Password:" : "Sandi:", 27 | "Use your ownCloud account password" : "Gunakan sandi akun ownCloud Anda", 28 | "Server address:" : "Alamat server:", 29 | "Sync Status" : "Status Sync", 30 | "Last sync:" : "Sinkronisasi terakhir:", 31 | "Size of stored data:" : "Ukuran data tersimpan:", 32 | "No data stored yet." : "Tidak ada data yang disimpan.", 33 | "Number of synced devices:" : "Jumlah piranti yang disinkronisasi:", 34 | "Delete Sync data" : "Hapus data Sync", 35 | "Attention! This will delete all your Sync data on the server." : "Perhatian! Ini akan menghapus semua data Sync Anda pada server." 36 | },"pluralForm" :"nplurals=1; plural=0;" 37 | } -------------------------------------------------------------------------------- /l10n/id.php: -------------------------------------------------------------------------------- 1 | "Gagal menghapus penyimpanan", 4 | "Failed to delete user" => "Gagal menghapus pengguna", 5 | "Storage deleted" => "Penyimpanan dihapus", 6 | "User not found" => "Pengguna tidak ditemukan", 7 | "Restriction saved" => "Batasan disimpan", 8 | "Invalid input" => "Masukkan tidak sah", 9 | "Auto create sync account enabled" => "Pembuatan otomatis akun sync diaktifkan", 10 | "Auto create sync account disabled" => "Pembuatan otomatis akun sync dinonaktifkan", 11 | "Sync email saved" => "Email Sync disimpan", 12 | "Quota saved" => "Kuota disimpan", 13 | "Mozilla Sync" => "Mozilla Sync", 14 | "Restrict to group" => "Batasi ke grup", 15 | "When activated, only members of this group can access Mozilla Sync." => "Ketika diaktifkan, hanya anggota grup ini yang dapat mengakses Mozilla Sync.", 16 | "Sync quota" => "Kuota Sync", 17 | "Set the value to 0 for unlimited quota." => "Setel nilai ke 0 untuk kuota tidak terbatas.", 18 | "Auto create sync account" => "Buat akun sync otomatis", 19 | "When activated, the Mozilla Sync registration API will be disabled and instead accounts will be auto created using a user's existing credentials" => "Ketika diaktifkan, API registrasi Mozilla Sync akan dinonaktifkan dan sebagai gantinya, akun akan dibuat secara otomatis menggunakan kredensial pengguna yang sudah ada.", 20 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." => "Kesalahan! Anda tidak diizinkan untuk menggunakan Mozilla Sync! Anda harus menjadi anggota dari grup %s.", 21 | "To use Mozilla Sync enter the credentials in to Mozilla Sync client" => "Untuk menggunakan Mozilla Sync, masukkan kredensial ke dalam klien Mozilla Sync", 22 | "To set up Mozilla Sync create a new Sync account in Firefox." => "Untuk membuat Mozilla Sync, buat akun Sync baru di Firefox.", 23 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." => "Mozilla Sync telah disetel, piranti tambahan dapat ditambahkan via layanan pasangan piranti Mozilla.", 24 | "Email:" => "Email:", 25 | "Has to be unique among all Sync users" => "Harus unik di antara semua pengguna Sync", 26 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." => "Kesalahan! Duplikasi alamat email terdeteksi! Alamat email harus unik agar Mozilla Sync dapat bekerja.", 27 | "Password:" => "Sandi:", 28 | "Use your ownCloud account password" => "Gunakan sandi akun ownCloud Anda", 29 | "Server address:" => "Alamat server:", 30 | "Sync Status" => "Status Sync", 31 | "Last sync:" => "Sinkronisasi terakhir:", 32 | "Size of stored data:" => "Ukuran data tersimpan:", 33 | "No data stored yet." => "Tidak ada data yang disimpan.", 34 | "Number of synced devices:" => "Jumlah piranti yang disinkronisasi:", 35 | "Delete Sync data" => "Hapus data Sync", 36 | "Attention! This will delete all your Sync data on the server." => "Perhatian! Ini akan menghapus semua data Sync Anda pada server." 37 | ); 38 | $PLURAL_FORMS = "nplurals=1; plural=0;"; 39 | -------------------------------------------------------------------------------- /l10n/is.php: -------------------------------------------------------------------------------- 1 | "Tókst ekki að eyða gagnageymslu", 4 | "Failed to delete user" => "Tókst ekki að eyða notanda", 5 | "Storage deleted" => "Geymslu eytt", 6 | "User not found" => "Notandi fannst ekki", 7 | "Restriction saved" => "Takmörkun vistuð", 8 | "Invalid input" => "Ógilt inntak", 9 | "Auto create sync account enabled" => "Sjálfvirk stofnun samstillingaraðgangs virk", 10 | "Auto create sync account disabled" => "Sjálfvirk stofnun samstillingaraðgangs óvirk", 11 | "Sync email saved" => "Tölvupóstur samstillingar vistaður", 12 | "Quota saved" => "Kvóti vistaður", 13 | "Mozilla Sync" => "Mozilla samstilling", 14 | "Restrict to group" => "Takmarka við hóp", 15 | "When activated, only members of this group can access Mozilla Sync." => "Þegar þetta er virkjað, geta einungis meðlimir þessa hóps haft aðgang að Mozilla Sync samstillingu.", 16 | "Sync quota" => "Kvóti samstillingar", 17 | "Set the value to 0 for unlimited quota." => "Settu gildið á 0 fyrir ótakmarkaðan kvóta.", 18 | "Auto create sync account" => "Sjálfvirk stofnun samstillingaraðgangs", 19 | "When activated, the Mozilla Sync registration API will be disabled and instead accounts will be auto created using a user's existing credentials" => "Þegar þetta er virkjað, er Mozilla Sync skráningar-API-ið gert óvirkt og verða aðgangar í staðinn útbúnir sjálfvirkt með því að nota fyrirliggjandi auðkenni notanda", 20 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." => "Villar! Þú hefur ekki leyfi til að nota Mozilla Sync samstillingu! Þú verður að vera meðlimur %s hópsins.", 21 | "To use Mozilla Sync enter the credentials in to Mozilla Sync client" => "Til að nota Mozilla Sync samstillingu, settu auðkennin þín inn í Mozilla Sync forritið", 22 | "To set up Mozilla Sync create a new Sync account in Firefox." => "Til að setja upp Mozilla Sync búðu til nýjan samstillingaraðgang í Firefox.", 23 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." => "Mozilla Sync samstilling er uppsett, hægt er að bæta við tækjum með tækjapörunarþjónustu Mozilla eða að gera það handvirkt.", 24 | "Email:" => "Tölvupóstfang:", 25 | "Has to be unique among all Sync users" => "Verður að vera sérstakt fyrir alla notendur samstillingar", 26 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." => "Villa! Tvítekin netföng fundust! Tölvupóstföng verða að vera einstök til að Mozilla Sync virki.", 27 | "Password:" => "Lykilorð:", 28 | "Use your ownCloud account password" => "Notaðu ownCloud lykilorðið þitt", 29 | "Server address:" => "Server address:", 30 | "Sync Status" => "Staða samstillingar", 31 | "Last sync:" => "Síðasta samstilling:", 32 | "Size of stored data:" => "Stærð geymdra gagna:", 33 | "No data stored yet." => "Engin gögn geymd ennþá.", 34 | "Number of synced devices:" => "Fjöldi samstilltra tækja:", 35 | "Delete Sync data" => "Eyða samstillingargögnum", 36 | "Attention! This will delete all your Sync data on the server." => "Aðvörun! Þetta mun eyða öllum samstillingargögnum þínum af þjóninum." 37 | ); 38 | $PLURAL_FORMS = "nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);"; 39 | -------------------------------------------------------------------------------- /l10n/it.php: -------------------------------------------------------------------------------- 1 | "Eliminazione archiviazione non riuscita", 4 | "Failed to delete user" => "Eliminazione utente non riuscita", 5 | "Storage deleted" => "Archiviazione eliminata", 6 | "User not found" => "Utente non trovato", 7 | "Restriction saved" => "Restrizione salvata", 8 | "Invalid input" => "Inserimento non valido", 9 | "Auto create sync account enabled" => "Creazione automatica account sync abilitata", 10 | "Auto create sync account disabled" => "Creazione automatica account sync disabilitata", 11 | "Sync email saved" => "Email Sync salvata", 12 | "Quota saved" => "Quota salvata", 13 | "Mozilla Sync" => "Mozilla Sync", 14 | "Restrict to group" => "Limita al gruppo", 15 | "When activated, only members of this group can access Mozilla Sync." => "Se attivata, solo i membri di questo gruppo possono accedere a Mozilla Sync.", 16 | "Sync quota" => "Sincronizza quota", 17 | "Set the value to 0 for unlimited quota." => "Imposta il valore a 0 per una quota illimitata.", 18 | "Auto create sync account" => "Creazione automatica account sync", 19 | "When activated, the Mozilla Sync registration API will be disabled and instead accounts will be auto created using a user's existing credentials" => "Se attivata, l'API di registrazione di Mozilla Sync sarà disabilitata e gli account saranno invece creati automaticamente utilizzando le credenziali esistenti dell'utente", 20 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." => "Errore. Non sei autorizzato ad utilizzare Mozilla Sync. Devi essere membro del gruppo %s.", 21 | "To use Mozilla Sync enter the credentials in to Mozilla Sync client" => "Per utilizzare Mozilla Sync, digita le credenziali nel client Mozilla Sync", 22 | "To set up Mozilla Sync create a new Sync account in Firefox." => "Per configurare Mozilla Sync, crea un nuovo account Sync in Firefox.", 23 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." => "Mozilla Sync è configurato, altri dispositivi possono essere aggiunti tramite il servizio di pairing di Mozilla o manualmente.", 24 | "Email:" => "Email:", 25 | "Has to be unique among all Sync users" => "Deve essere unico tra tutti gli utenti di Sync", 26 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." => "Errore. Indirizzo di posta duplicato trovato. L'indirizzo email deve essere unico per funzionare con Mozilla Sync.", 27 | "Password:" => "Password:", 28 | "Use your ownCloud account password" => "Usa la tua password di ownCloud", 29 | "Server address:" => "Indirizzo del server:", 30 | "Sync Status" => "Stato di Sync", 31 | "Last sync:" => "Ultima sincronizzazione:", 32 | "Size of stored data:" => "Dimensione dei dati archiviati:", 33 | "No data stored yet." => "Ancora nessun dato archiviato.", 34 | "Number of synced devices:" => "Numero di dispositivi sincronizzati:", 35 | "Delete Sync data" => "Elimina dati di Sync", 36 | "Attention! This will delete all your Sync data on the server." => "Attenzione! Ciò eliminerà tutti i tuoi dati di sincronizzazione dal server." 37 | ); 38 | $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 39 | -------------------------------------------------------------------------------- /l10n/ja.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "mozilla_sync", 3 | { 4 | "Failed to delete storage" : "ストレージの削除に失敗しました", 5 | "Failed to delete user" : "ユーザーの削除に失敗しました", 6 | "Storage deleted" : "ストレージを削除しました", 7 | "User not found" : "ユーザーが見つかりません", 8 | "Restriction saved" : "使用制限を保存", 9 | "Invalid input" : "不正な入力", 10 | "Auto create sync account enabled" : "同期アカウントを有効状態で自動作成", 11 | "Auto create sync account disabled" : "同期アカウントを無効状態で自動作成", 12 | "Sync email saved" : "同期用メールアドレスを保存しました", 13 | "Quota saved" : "クォータを保存しました", 14 | "Mozilla Sync" : "Mozilla Sync", 15 | "Restrict to group" : "グループに制限する", 16 | "When activated, only members of this group can access Mozilla Sync." : "有効にした場合、このグループのメンバーのみMozilla Syncにアクセスできます。", 17 | "Sync quota" : "クォータ同期", 18 | "Set the value to 0 for unlimited quota." : "値を0に設定すると容量は無制限になります。", 19 | "Auto create sync account" : "同期アカウントを自動作成", 20 | "When activated, the Mozilla Sync registration API will be disabled and instead accounts will be auto created using a user's existing credentials" : "有効にした場合、Mozilla Syncアカウントは今のユーザー権限で自動的に作成されますが、Mozilla 同期APIは無効になります。", 21 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." : "エラー! Mozilla Syncの使用許可がありません。グループ %s のメンバーになる必要があります。 ", 22 | "To use Mozilla Sync enter the credentials in to Mozilla Sync client" : "Mozilla Syncを利用するには、Mozilla Sync クライアントに同期権限を入力してください。", 23 | "To set up Mozilla Sync create a new Sync account in Firefox." : "Mozilla Syncを設定するには、新しいSyncアカウントをFirefox で作成してください。", 24 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." : "Mozilla Syncは、セットアップされました。Mozillaのデバイスペアリングサービスか、手動でデバイスを追加することができます。", 25 | "Email:" : "メール:", 26 | "Has to be unique among all Sync users" : "同期を利用しているすべてのユーザー内で一意ある必要があります", 27 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." : "エラー! 複数のメールアドレスが登録されています! Mozilla Syncを使用するには、メールアドレスが一意である必要があります。", 28 | "Password:" : "パスワード:", 29 | "Use your ownCloud account password" : "ownCloudのアカウントのパスワードを使用してください:", 30 | "Server address:" : "サーバーアドレス:", 31 | "Sync Status" : "同期状態", 32 | "Last sync:" : "最終同期:", 33 | "Size of stored data:" : "保存データ容量:", 34 | "No data stored yet." : "データがありません", 35 | "Number of synced devices:" : "同期済デバイス数:", 36 | "Delete Sync data" : "同期情報削除", 37 | "Attention! This will delete all your Sync data on the server." : "注意!サーバーに同期したデータをすべて削除します。" 38 | }, 39 | "nplurals=1; plural=0;"); 40 | -------------------------------------------------------------------------------- /l10n/ja.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Failed to delete storage" : "ストレージの削除に失敗しました", 3 | "Failed to delete user" : "ユーザーの削除に失敗しました", 4 | "Storage deleted" : "ストレージを削除しました", 5 | "User not found" : "ユーザーが見つかりません", 6 | "Restriction saved" : "使用制限を保存", 7 | "Invalid input" : "不正な入力", 8 | "Auto create sync account enabled" : "同期アカウントを有効状態で自動作成", 9 | "Auto create sync account disabled" : "同期アカウントを無効状態で自動作成", 10 | "Sync email saved" : "同期用メールアドレスを保存しました", 11 | "Quota saved" : "クォータを保存しました", 12 | "Mozilla Sync" : "Mozilla Sync", 13 | "Restrict to group" : "グループに制限する", 14 | "When activated, only members of this group can access Mozilla Sync." : "有効にした場合、このグループのメンバーのみMozilla Syncにアクセスできます。", 15 | "Sync quota" : "クォータ同期", 16 | "Set the value to 0 for unlimited quota." : "値を0に設定すると容量は無制限になります。", 17 | "Auto create sync account" : "同期アカウントを自動作成", 18 | "When activated, the Mozilla Sync registration API will be disabled and instead accounts will be auto created using a user's existing credentials" : "有効にした場合、Mozilla Syncアカウントは今のユーザー権限で自動的に作成されますが、Mozilla 同期APIは無効になります。", 19 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." : "エラー! Mozilla Syncの使用許可がありません。グループ %s のメンバーになる必要があります。 ", 20 | "To use Mozilla Sync enter the credentials in to Mozilla Sync client" : "Mozilla Syncを利用するには、Mozilla Sync クライアントに同期権限を入力してください。", 21 | "To set up Mozilla Sync create a new Sync account in Firefox." : "Mozilla Syncを設定するには、新しいSyncアカウントをFirefox で作成してください。", 22 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." : "Mozilla Syncは、セットアップされました。Mozillaのデバイスペアリングサービスか、手動でデバイスを追加することができます。", 23 | "Email:" : "メール:", 24 | "Has to be unique among all Sync users" : "同期を利用しているすべてのユーザー内で一意ある必要があります", 25 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." : "エラー! 複数のメールアドレスが登録されています! Mozilla Syncを使用するには、メールアドレスが一意である必要があります。", 26 | "Password:" : "パスワード:", 27 | "Use your ownCloud account password" : "ownCloudのアカウントのパスワードを使用してください:", 28 | "Server address:" : "サーバーアドレス:", 29 | "Sync Status" : "同期状態", 30 | "Last sync:" : "最終同期:", 31 | "Size of stored data:" : "保存データ容量:", 32 | "No data stored yet." : "データがありません", 33 | "Number of synced devices:" : "同期済デバイス数:", 34 | "Delete Sync data" : "同期情報削除", 35 | "Attention! This will delete all your Sync data on the server." : "注意!サーバーに同期したデータをすべて削除します。" 36 | },"pluralForm" :"nplurals=1; plural=0;" 37 | } -------------------------------------------------------------------------------- /l10n/ja.php: -------------------------------------------------------------------------------- 1 | "ストレージの削除に失敗しました", 4 | "Failed to delete user" => "ユーザーの削除に失敗しました", 5 | "Storage deleted" => "ストレージを削除しました", 6 | "User not found" => "ユーザーが見つかりません", 7 | "Restriction saved" => "使用制限を保存", 8 | "Invalid input" => "不正な入力", 9 | "Auto create sync account enabled" => "同期アカウントを有効状態で自動作成", 10 | "Auto create sync account disabled" => "同期アカウントを無効状態で自動作成", 11 | "Sync email saved" => "同期用メールアドレスを保存しました", 12 | "Quota saved" => "クォータを保存しました", 13 | "Mozilla Sync" => "Mozilla Sync", 14 | "Restrict to group" => "グループに制限する", 15 | "When activated, only members of this group can access Mozilla Sync." => "有効にした場合、このグループのメンバーのみMozilla Syncにアクセスできます。", 16 | "Sync quota" => "クォータ同期", 17 | "Set the value to 0 for unlimited quota." => "値を0に設定すると容量は無制限になります。", 18 | "Auto create sync account" => "同期アカウントを自動作成", 19 | "When activated, the Mozilla Sync registration API will be disabled and instead accounts will be auto created using a user's existing credentials" => "有効にした場合、Mozilla Syncアカウントは今のユーザー権限で自動的に作成されますが、Mozilla 同期APIは無効になります。", 20 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." => "エラー! Mozilla Syncの使用許可がありません。グループ %s のメンバーになる必要があります。 ", 21 | "To use Mozilla Sync enter the credentials in to Mozilla Sync client" => "Mozilla Syncを利用するには、Mozilla Sync クライアントに同期権限を入力してください。", 22 | "To set up Mozilla Sync create a new Sync account in Firefox." => "Mozilla Syncを設定するには、新しいSyncアカウントをFirefox で作成してください。", 23 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." => "Mozilla Syncは、セットアップされました。Mozillaのデバイスペアリングサービスか、手動でデバイスを追加することができます。", 24 | "Email:" => "メール:", 25 | "Has to be unique among all Sync users" => "同期を利用しているすべてのユーザー内で一意ある必要があります", 26 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." => "エラー! 複数のメールアドレスが登録されています! Mozilla Syncを使用するには、メールアドレスが一意である必要があります。", 27 | "Password:" => "パスワード:", 28 | "Use your ownCloud account password" => "ownCloudのアカウントのパスワードを使用してください:", 29 | "Server address:" => "サーバーアドレス:", 30 | "Sync Status" => "同期状態", 31 | "Last sync:" => "最終同期:", 32 | "Size of stored data:" => "保存データ容量:", 33 | "No data stored yet." => "データがありません", 34 | "Number of synced devices:" => "同期済デバイス数:", 35 | "Delete Sync data" => "同期情報削除", 36 | "Attention! This will delete all your Sync data on the server." => "注意!サーバーに同期したデータをすべて削除します。" 37 | ); 38 | $PLURAL_FORMS = "nplurals=1; plural=0;"; 39 | -------------------------------------------------------------------------------- /l10n/ka.php: -------------------------------------------------------------------------------- 1 | "პაროლი" 4 | ); 5 | $PLURAL_FORMS = "nplurals=1; plural=0;"; 6 | -------------------------------------------------------------------------------- /l10n/ka_GE.php: -------------------------------------------------------------------------------- 1 | "პაროლი:" 4 | ); 5 | $PLURAL_FORMS = "nplurals=1; plural=0;"; 6 | -------------------------------------------------------------------------------- /l10n/km.php: -------------------------------------------------------------------------------- 1 | "លុប​ឃ្លាំង​ផ្ទុក​មិន​បាន​សម្រេច", 4 | "Failed to delete user" => "លុប​អ្នក​ប្រើ​មិន​បាន​សម្រេច", 5 | "Storage deleted" => "បាន​លុប​ឃ្លាំង​ផ្ទុក", 6 | "User not found" => "រក​មិន​ឃើញ​អ្នក​ប្រើ", 7 | "Invalid input" => "ការ​បញ្ចូល មិន​ត្រឹម​ត្រូវ", 8 | "Quota saved" => "បាន​រក្សា​ទុក​បរិមាណ​កំណត់", 9 | "Mozilla Sync" => "Mozilla Sync", 10 | "Email:" => "អ៊ីមែល៖", 11 | "Password:" => "ពាក្យ​សម្ងាត់៖", 12 | "Use your ownCloud account password" => "ប្រើ​ពាក្យ​សម្ងាត់​គណនី ownCloud របស់​អ្នក", 13 | "Server address:" => "អាសយដ្ឋាន​ម៉ាស៊ីន​បម្រើ៖", 14 | "Size of stored data:" => "ទំហំ​ទិន្នន័យ​ដែល​បាន​រក្សាទុក៖" 15 | ); 16 | $PLURAL_FORMS = "nplurals=1; plural=0;"; 17 | -------------------------------------------------------------------------------- /l10n/ko.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "mozilla_sync", 3 | { 4 | "Failed to delete storage" : "저장소를 삭제할 수 없음", 5 | "Failed to delete user" : "사용자를 삭제할 수 없음", 6 | "Storage deleted" : "저장소 삭제됨", 7 | "User not found" : "사용자를 찾을 수 없음", 8 | "Restriction saved" : "접근 제한 저장됨", 9 | "Invalid input" : "잘못된 입력", 10 | "Auto create sync account enabled" : "자동으로 동기화 계정 만들기 활성화됨", 11 | "Auto create sync account disabled" : "자동으로 동기화 계정 만들기 비활성화됨", 12 | "Sync email saved" : "이메일 동기화 저장됨", 13 | "Quota saved" : "할당량 저장됨", 14 | "Mozilla Sync" : "Mozilla Sync", 15 | "Restrict to group" : "그룹으로 제한", 16 | "When activated, only members of this group can access Mozilla Sync." : "사용하면 이 그룹 구성원만 Mozilla Sync에 접근할 수 있습니다.", 17 | "Sync quota" : "동기화 할당량", 18 | "Set the value to 0 for unlimited quota." : "할당량 제한을 해제하려면 0으로 설정하십시오.", 19 | "Auto create sync account" : "자동으로 동기화 계정 만들기", 20 | "When activated, the Mozilla Sync registration API will be disabled and instead accounts will be auto created using a user's existing credentials" : "활성화하면 Mozilla Sync 등록 API를 비활성화하고 사용자 계정 정보를 사용하여 자동으로 계정을 생성합니다", 21 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." : "오류! Mozilla Sync를 사용할 수 없습니다! %s 그룹의 구성원이어야 합니다.", 22 | "To use Mozilla Sync enter the credentials in to Mozilla Sync client" : "Mozilla Sync를 사용하려면 Mozilla Sync 클라이언트에 인증 정보를 입력하십시오", 23 | "To set up Mozilla Sync create a new Sync account in Firefox." : "Mozilla Sync를 사용하려면 Firefox에서 새로운 Sync 계정을 설정하십시오.", 24 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." : "Mozilla Sync를 설정하였고, 장치를 추가하려면 Mozilla의 장치 페어링 서비스를 사용하거나 수동으로 추가하십시오.", 25 | "Email:" : "이메일:", 26 | "Has to be unique among all Sync users" : "모든 Sync 사용자마다 달라야 함", 27 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." : "오류! 중복된 이메일 주소입니다! Mozilla Sync를 사용하려면 유일한 이메일 주소를 사용해야 합니다.", 28 | "Password:" : "암호:", 29 | "Use your ownCloud account password" : "ownCloud 계정 암호 사용", 30 | "Server address:" : "서버 주소:", 31 | "Sync Status" : "동기화 상태", 32 | "Last sync:" : "마지막 동기화:", 33 | "Size of stored data:" : "저장된 데이터 크기:", 34 | "No data stored yet." : "데이터가 저장되지 않았습니다.", 35 | "Number of synced devices:" : "동기화하는 장치 개수:", 36 | "Delete Sync data" : "동기화 데이터 삭제", 37 | "Attention! This will delete all your Sync data on the server." : "알림! 서버에 저장된 모든 동기화 데이터를 삭제합니다." 38 | }, 39 | "nplurals=1; plural=0;"); 40 | -------------------------------------------------------------------------------- /l10n/ko.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Failed to delete storage" : "저장소를 삭제할 수 없음", 3 | "Failed to delete user" : "사용자를 삭제할 수 없음", 4 | "Storage deleted" : "저장소 삭제됨", 5 | "User not found" : "사용자를 찾을 수 없음", 6 | "Restriction saved" : "접근 제한 저장됨", 7 | "Invalid input" : "잘못된 입력", 8 | "Auto create sync account enabled" : "자동으로 동기화 계정 만들기 활성화됨", 9 | "Auto create sync account disabled" : "자동으로 동기화 계정 만들기 비활성화됨", 10 | "Sync email saved" : "이메일 동기화 저장됨", 11 | "Quota saved" : "할당량 저장됨", 12 | "Mozilla Sync" : "Mozilla Sync", 13 | "Restrict to group" : "그룹으로 제한", 14 | "When activated, only members of this group can access Mozilla Sync." : "사용하면 이 그룹 구성원만 Mozilla Sync에 접근할 수 있습니다.", 15 | "Sync quota" : "동기화 할당량", 16 | "Set the value to 0 for unlimited quota." : "할당량 제한을 해제하려면 0으로 설정하십시오.", 17 | "Auto create sync account" : "자동으로 동기화 계정 만들기", 18 | "When activated, the Mozilla Sync registration API will be disabled and instead accounts will be auto created using a user's existing credentials" : "활성화하면 Mozilla Sync 등록 API를 비활성화하고 사용자 계정 정보를 사용하여 자동으로 계정을 생성합니다", 19 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." : "오류! Mozilla Sync를 사용할 수 없습니다! %s 그룹의 구성원이어야 합니다.", 20 | "To use Mozilla Sync enter the credentials in to Mozilla Sync client" : "Mozilla Sync를 사용하려면 Mozilla Sync 클라이언트에 인증 정보를 입력하십시오", 21 | "To set up Mozilla Sync create a new Sync account in Firefox." : "Mozilla Sync를 사용하려면 Firefox에서 새로운 Sync 계정을 설정하십시오.", 22 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." : "Mozilla Sync를 설정하였고, 장치를 추가하려면 Mozilla의 장치 페어링 서비스를 사용하거나 수동으로 추가하십시오.", 23 | "Email:" : "이메일:", 24 | "Has to be unique among all Sync users" : "모든 Sync 사용자마다 달라야 함", 25 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." : "오류! 중복된 이메일 주소입니다! Mozilla Sync를 사용하려면 유일한 이메일 주소를 사용해야 합니다.", 26 | "Password:" : "암호:", 27 | "Use your ownCloud account password" : "ownCloud 계정 암호 사용", 28 | "Server address:" : "서버 주소:", 29 | "Sync Status" : "동기화 상태", 30 | "Last sync:" : "마지막 동기화:", 31 | "Size of stored data:" : "저장된 데이터 크기:", 32 | "No data stored yet." : "데이터가 저장되지 않았습니다.", 33 | "Number of synced devices:" : "동기화하는 장치 개수:", 34 | "Delete Sync data" : "동기화 데이터 삭제", 35 | "Attention! This will delete all your Sync data on the server." : "알림! 서버에 저장된 모든 동기화 데이터를 삭제합니다." 36 | },"pluralForm" :"nplurals=1; plural=0;" 37 | } -------------------------------------------------------------------------------- /l10n/ko.php: -------------------------------------------------------------------------------- 1 | "저장소를 삭제할 수 없음", 4 | "Failed to delete user" => "사용자를 삭제할 수 없음", 5 | "Storage deleted" => "저장소 삭제됨", 6 | "User not found" => "사용자를 찾을 수 없음", 7 | "Restriction saved" => "접근 제한 저장됨", 8 | "Invalid input" => "잘못된 입력", 9 | "Auto create sync account enabled" => "자동으로 동기화 계정 만들기 활성화됨", 10 | "Auto create sync account disabled" => "자동으로 동기화 계정 만들기 비활성화됨", 11 | "Sync email saved" => "이메일 동기화 저장됨", 12 | "Quota saved" => "할당량 저장됨", 13 | "Mozilla Sync" => "Mozilla Sync", 14 | "Restrict to group" => "그룹으로 제한", 15 | "When activated, only members of this group can access Mozilla Sync." => "사용하면 이 그룹 구성원만 Mozilla Sync에 접근할 수 있습니다.", 16 | "Sync quota" => "동기화 할당량", 17 | "Set the value to 0 for unlimited quota." => "할당량 제한을 해제하려면 0으로 설정하십시오.", 18 | "Auto create sync account" => "자동으로 동기화 계정 만들기", 19 | "When activated, the Mozilla Sync registration API will be disabled and instead accounts will be auto created using a user's existing credentials" => "활성화하면 Mozilla Sync 등록 API를 비활성화하고 사용자 계정 정보를 사용하여 자동으로 계정을 생성합니다", 20 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." => "오류! Mozilla Sync를 사용할 수 없습니다! %s 그룹의 구성원이어야 합니다.", 21 | "To use Mozilla Sync enter the credentials in to Mozilla Sync client" => "Mozilla Sync를 사용하려면 Mozilla Sync 클라이언트에 인증 정보를 입력하십시오", 22 | "To set up Mozilla Sync create a new Sync account in Firefox." => "Mozilla Sync를 사용하려면 Firefox에서 새로운 Sync 계정을 설정하십시오.", 23 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." => "Mozilla Sync를 설정하였고, 장치를 추가하려면 Mozilla의 장치 페어링 서비스를 사용하거나 수동으로 추가하십시오.", 24 | "Email:" => "이메일:", 25 | "Has to be unique among all Sync users" => "모든 Sync 사용자마다 달라야 함", 26 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." => "오류! 중복된 이메일 주소입니다! Mozilla Sync를 사용하려면 유일한 이메일 주소를 사용해야 합니다.", 27 | "Password:" => "암호:", 28 | "Use your ownCloud account password" => "ownCloud 계정 암호 사용", 29 | "Server address:" => "서버 주소:", 30 | "Sync Status" => "동기화 상태", 31 | "Last sync:" => "마지막 동기화:", 32 | "Size of stored data:" => "저장된 데이터 크기:", 33 | "No data stored yet." => "데이터가 저장되지 않았습니다.", 34 | "Number of synced devices:" => "동기화하는 장치 개수:", 35 | "Delete Sync data" => "동기화 데이터 삭제", 36 | "Attention! This will delete all your Sync data on the server." => "알림! 서버에 저장된 모든 동기화 데이터를 삭제합니다." 37 | ); 38 | $PLURAL_FORMS = "nplurals=1; plural=0;"; 39 | -------------------------------------------------------------------------------- /l10n/ku_IQ.php: -------------------------------------------------------------------------------- 1 | "ئیمه‌یل", 3 | "Password" => "وشەی تێپەربو", 4 | "Server address" => "ناونیشانی ڕاژه" 5 | ); 6 | -------------------------------------------------------------------------------- /l10n/lb.php: -------------------------------------------------------------------------------- 1 | "Passwuert:" 4 | ); 5 | $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 6 | -------------------------------------------------------------------------------- /l10n/lt_LT.php: -------------------------------------------------------------------------------- 1 | "Nepavyko ištrinti vartotojo", 4 | "User not found" => "Vartotojas nerastas", 5 | "Mozilla Sync" => "Mozilla Sync", 6 | "Password:" => "Slaptažodis:", 7 | "Sync Status" => "Sinchronizacijos būsena" 8 | ); 9 | $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);"; 10 | -------------------------------------------------------------------------------- /l10n/lv.php: -------------------------------------------------------------------------------- 1 | "Mozilla sinhronizēšanas pakalpojums", 4 | "Password:" => "Parole:", 5 | "Use your ownCloud account password" => "Izmantojiet jūsu ownCloud konta paroli" 6 | ); 7 | $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"; 8 | -------------------------------------------------------------------------------- /l10n/mk.php: -------------------------------------------------------------------------------- 1 | "Неуспешно бришење на податоците", 4 | "Failed to delete user" => "Неуспешно бришење на корисник", 5 | "Storage deleted" => "Податоците се избришани", 6 | "User not found" => "Корисникот не е најден", 7 | "Invalid input" => "Неправилен внес", 8 | "Quota saved" => "Квотата е снимена", 9 | "Mozilla Sync" => "Мозила синхронизација", 10 | "Restrict to group" => "Ограничи на група", 11 | "Email:" => "Електронска пошта:", 12 | "Password:" => "Лозинка:", 13 | "Use your ownCloud account password" => "Користи го твојота лозинка за ownCloud", 14 | "Server address:" => "Адреса на серверот:", 15 | "Sync Status" => "Статус на синхронизација", 16 | "Last sync:" => "Последен пат синхронизирано:", 17 | "Size of stored data:" => "Големина на снимените податоци:", 18 | "Number of synced devices:" => "Број на синхронизирани уреди:" 19 | ); 20 | $PLURAL_FORMS = "nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;"; 21 | -------------------------------------------------------------------------------- /l10n/ms_MY.php: -------------------------------------------------------------------------------- 1 | "Kata laluan:" 4 | ); 5 | $PLURAL_FORMS = "nplurals=1; plural=0;"; 6 | -------------------------------------------------------------------------------- /l10n/my_MM.php: -------------------------------------------------------------------------------- 1 | "စကားဝှက်" 3 | ); 4 | -------------------------------------------------------------------------------- /l10n/nb_NO.php: -------------------------------------------------------------------------------- 1 | "Klarte ikke å slette lageret", 4 | "Failed to delete user" => "Klarte ikke å slette bruker", 5 | "Storage deleted" => "Lageret ble slettet", 6 | "User not found" => "Fant ikke bruker", 7 | "Restriction saved" => "Begrensning lagret", 8 | "Invalid input" => "Ugyldige inndata", 9 | "Auto create sync account enabled" => "Automatisk oppretting av synkroniseringskonto er aktivert", 10 | "Auto create sync account disabled" => "Automatisk oppretting av synkroniseringskonto er deaktivert", 11 | "Sync email saved" => "E-post for Sync lagret", 12 | "Quota saved" => "Kvote ble lagret", 13 | "Mozilla Sync" => "Mozilla Sync", 14 | "Restrict to group" => "Begrens til gruppe", 15 | "When activated, only members of this group can access Mozilla Sync." => "Hvis aktivert kan bare medlemmer av denne gruppen bruke Mozilla Sync.", 16 | "Sync quota" => "Kvote for Mozilla Sync", 17 | "Set the value to 0 for unlimited quota." => "Sett verdien til 0 for ubegrenset kvote.", 18 | "Auto create sync account" => "Automatisk oppretting av synkroniseringskonto", 19 | "When activated, the Mozilla Sync registration API will be disabled and instead accounts will be auto created using a user's existing credentials" => "Hvis aktivert vil Mozilla Sync registrerings-API bli deaktivert og i stedet vil kontoer bli opprettet automatisk med brukerens eksisterende brukernavn og passord", 20 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." => "Feil! Du har ikke lov til å bruke Mozilla Sync! Du må være medlem av gruppen %s.", 21 | "To use Mozilla Sync enter the credentials in to Mozilla Sync client" => "Legg inn brukernavn og passord i Mozilla Sync-klienten for å bruke Mozilla Sync", 22 | "To set up Mozilla Sync create a new Sync account in Firefox." => "Opprett en ny Sync-konto i Firefox for å sette opp Mozilla Sync.", 23 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." => "Mozilla Sync er satt opp. Flere enheter kan legges til via Mozillas tjeneste for paring av enheter eller de kan legges til manuelt.", 24 | "Email:" => "Epost:", 25 | "Has to be unique among all Sync users" => "Må være unik blant alle brukere av Mozilla Sync", 26 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." => "Feil! Duplikat av e-postadresse ble oppdaget! E-postadresser må være unike for at Mozilla Sync skal virke.", 27 | "Password:" => "Passord:", 28 | "Use your ownCloud account password" => "Bruk passordet for ownCloud-kontoen din", 29 | "Server address:" => "Server-adresse:", 30 | "Sync Status" => "Synkroniseringsstatus", 31 | "Last sync:" => "Siste synkronisering:", 32 | "Size of stored data:" => "Størrelse på lagrede data:", 33 | "No data stored yet." => "Ingen data lagret ennå.", 34 | "Number of synced devices:" => "Antall synkroniserte enheter:", 35 | "Delete Sync data" => "Slett synkroniseringsdata", 36 | "Attention! This will delete all your Sync data on the server." => "Obs! Dette vil slette alle dine synkroniseringsdata på serveren." 37 | ); 38 | $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 39 | -------------------------------------------------------------------------------- /l10n/nl.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "mozilla_sync", 3 | { 4 | "Failed to delete storage" : "Kon opslag niet verwijderen", 5 | "Failed to delete user" : "Kon gebruiker niet verwijderen", 6 | "Storage deleted" : "Opslag verwijderd", 7 | "User not found" : "Gebruiker niet gevonden", 8 | "Restriction saved" : "Beperking opgeslagen", 9 | "Invalid input" : "Ongeldige invoer", 10 | "Auto create sync account enabled" : "Automatisch creëren sync account ingeschakeld", 11 | "Auto create sync account disabled" : "Automatisch creëren sync account uitgeschakeld", 12 | "Sync email saved" : "Sync e-mail opgeslagen", 13 | "Quota saved" : "Quota opgeslagen", 14 | "Mozilla Sync" : "Mozilla Sync", 15 | "Restrict to group" : "Beperk tot groep", 16 | "When activated, only members of this group can access Mozilla Sync." : "Wanneer geactiveerd, kunnen alleen leden van deze groep Mozilla Sync gebruiken.", 17 | "Sync quota" : "Sync quota", 18 | "Set the value to 0 for unlimited quota." : "Stel de waarde op 0 voor onbeperkt gebruik.", 19 | "Auto create sync account" : "Automatisch creëren sync account", 20 | "When activated, the Mozilla Sync registration API will be disabled and instead accounts will be auto created using a user's existing credentials" : "Wanneer ingeschakeld wordt de Mozille Sync registratie API niet gebruikt en worden accounts automatisch gecreëerd, gebruikmakend van de bestaande inloggegevens van de gebruiker", 21 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." : "Fout! U mag Mozilla Sync niet gebruiken. U moet lid zijn van de %s groep.", 22 | "To use Mozilla Sync enter the credentials in to Mozilla Sync client" : "Voer de inloggegevens in in de Mozilla Sync client om Mozilla Sync te gebruiken", 23 | "To set up Mozilla Sync create a new Sync account in Firefox." : "Om Mozilla Sync te laten werken moet u een nieuw Sync account maken in Firefox.", 24 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." : "Mozilla Sync is ingesteld. Extra apparaten kunnen via Mozilla's koppelservice of handmatig worden toegevoegd.", 25 | "Email:" : "E-mail:", 26 | "Has to be unique among all Sync users" : "Moet uniek zijn onder alle Sync gebruikers", 27 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." : "Fout! Er is een dubbel e-mailadres gevonden. E-mailadressen moeten uniek zijn om Mozilla Sync te laten werken,", 28 | "Password:" : "Wachtwoord:", 29 | "Use your ownCloud account password" : "Gebruik uw ownCloud wachtwoord", 30 | "Server address:" : "Serveradres:", 31 | "Sync Status" : "Synchronisatiestatus", 32 | "Last sync:" : "Laatste sync:", 33 | "Size of stored data:" : "Omvang opgeslagen data:", 34 | "No data stored yet." : "Nog geen data opgeslagen.", 35 | "Number of synced devices:" : "Aantal gesynchroniseerde apparaten:", 36 | "Delete Sync data" : "Verwijderen Sync data", 37 | "Attention! This will delete all your Sync data on the server." : "Let op! Dit verwijdert al uw Sync data op de server." 38 | }, 39 | "nplurals=2; plural=(n != 1);"); 40 | -------------------------------------------------------------------------------- /l10n/nl.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Failed to delete storage" : "Kon opslag niet verwijderen", 3 | "Failed to delete user" : "Kon gebruiker niet verwijderen", 4 | "Storage deleted" : "Opslag verwijderd", 5 | "User not found" : "Gebruiker niet gevonden", 6 | "Restriction saved" : "Beperking opgeslagen", 7 | "Invalid input" : "Ongeldige invoer", 8 | "Auto create sync account enabled" : "Automatisch creëren sync account ingeschakeld", 9 | "Auto create sync account disabled" : "Automatisch creëren sync account uitgeschakeld", 10 | "Sync email saved" : "Sync e-mail opgeslagen", 11 | "Quota saved" : "Quota opgeslagen", 12 | "Mozilla Sync" : "Mozilla Sync", 13 | "Restrict to group" : "Beperk tot groep", 14 | "When activated, only members of this group can access Mozilla Sync." : "Wanneer geactiveerd, kunnen alleen leden van deze groep Mozilla Sync gebruiken.", 15 | "Sync quota" : "Sync quota", 16 | "Set the value to 0 for unlimited quota." : "Stel de waarde op 0 voor onbeperkt gebruik.", 17 | "Auto create sync account" : "Automatisch creëren sync account", 18 | "When activated, the Mozilla Sync registration API will be disabled and instead accounts will be auto created using a user's existing credentials" : "Wanneer ingeschakeld wordt de Mozille Sync registratie API niet gebruikt en worden accounts automatisch gecreëerd, gebruikmakend van de bestaande inloggegevens van de gebruiker", 19 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." : "Fout! U mag Mozilla Sync niet gebruiken. U moet lid zijn van de %s groep.", 20 | "To use Mozilla Sync enter the credentials in to Mozilla Sync client" : "Voer de inloggegevens in in de Mozilla Sync client om Mozilla Sync te gebruiken", 21 | "To set up Mozilla Sync create a new Sync account in Firefox." : "Om Mozilla Sync te laten werken moet u een nieuw Sync account maken in Firefox.", 22 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." : "Mozilla Sync is ingesteld. Extra apparaten kunnen via Mozilla's koppelservice of handmatig worden toegevoegd.", 23 | "Email:" : "E-mail:", 24 | "Has to be unique among all Sync users" : "Moet uniek zijn onder alle Sync gebruikers", 25 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." : "Fout! Er is een dubbel e-mailadres gevonden. E-mailadressen moeten uniek zijn om Mozilla Sync te laten werken,", 26 | "Password:" : "Wachtwoord:", 27 | "Use your ownCloud account password" : "Gebruik uw ownCloud wachtwoord", 28 | "Server address:" : "Serveradres:", 29 | "Sync Status" : "Synchronisatiestatus", 30 | "Last sync:" : "Laatste sync:", 31 | "Size of stored data:" : "Omvang opgeslagen data:", 32 | "No data stored yet." : "Nog geen data opgeslagen.", 33 | "Number of synced devices:" : "Aantal gesynchroniseerde apparaten:", 34 | "Delete Sync data" : "Verwijderen Sync data", 35 | "Attention! This will delete all your Sync data on the server." : "Let op! Dit verwijdert al uw Sync data op de server." 36 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 37 | } -------------------------------------------------------------------------------- /l10n/nl.php: -------------------------------------------------------------------------------- 1 | "Kon opslag niet verwijderen", 4 | "Failed to delete user" => "Kon gebruiker niet verwijderen", 5 | "Storage deleted" => "Opslag verwijderd", 6 | "User not found" => "Gebruiker niet gevonden", 7 | "Restriction saved" => "Beperking opgeslagen", 8 | "Invalid input" => "Ongeldige invoer", 9 | "Auto create sync account enabled" => "Automatisch creëren sync account ingeschakeld", 10 | "Auto create sync account disabled" => "Automatisch creëren sync account uitgeschakeld", 11 | "Sync email saved" => "Sync e-mail opgeslagen", 12 | "Quota saved" => "Quota opgeslagen", 13 | "Mozilla Sync" => "Mozilla Sync", 14 | "Restrict to group" => "Beperk tot groep", 15 | "When activated, only members of this group can access Mozilla Sync." => "Wanneer geactiveerd, kunnen alleen leden van deze groep Mozilla Sync gebruiken.", 16 | "Sync quota" => "Sync quota", 17 | "Set the value to 0 for unlimited quota." => "Stel de waarde op 0 voor onbeperkt gebruik.", 18 | "Auto create sync account" => "Automatisch creëren sync account", 19 | "When activated, the Mozilla Sync registration API will be disabled and instead accounts will be auto created using a user's existing credentials" => "Wanneer ingeschakeld wordt de Mozille Sync registratie API niet gebruikt en worden accounts automatisch gecreëerd, gebruikmakend van de bestaande inloggegevens van de gebruiker", 20 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." => "Fout! U mag Mozilla Sync niet gebruiken. U moet lid zijn van de %s groep.", 21 | "To use Mozilla Sync enter the credentials in to Mozilla Sync client" => "Voer de inloggegevens in in de Mozilla Sync client om Mozilla Sync te gebruiken", 22 | "To set up Mozilla Sync create a new Sync account in Firefox." => "Om Mozilla Sync te laten werken moet u een nieuw Sync account maken in Firefox.", 23 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." => "Mozilla Sync is ingesteld. Extra apparaten kunnen via Mozilla's koppelservice of handmatig worden toegevoegd.", 24 | "Email:" => "E-mail:", 25 | "Has to be unique among all Sync users" => "Moet uniek zijn onder alle Sync gebruikers", 26 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." => "Fout! Er is een dubbel e-mailadres gevonden. E-mailadressen moeten uniek zijn om Mozilla Sync te laten werken,", 27 | "Password:" => "Wachtwoord:", 28 | "Use your ownCloud account password" => "Gebruik uw ownCloud wachtwoord", 29 | "Server address:" => "Serveradres:", 30 | "Sync Status" => "Synchronisatiestatus", 31 | "Last sync:" => "Laatste sync:", 32 | "Size of stored data:" => "Omvang opgeslagen data:", 33 | "No data stored yet." => "Nog geen data opgeslagen.", 34 | "Number of synced devices:" => "Aantal gesynchroniseerde apparaten:", 35 | "Delete Sync data" => "Verwijderen Sync data", 36 | "Attention! This will delete all your Sync data on the server." => "Let op! Dit verwijdert al uw Sync data op de server." 37 | ); 38 | $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 39 | -------------------------------------------------------------------------------- /l10n/nn_NO.php: -------------------------------------------------------------------------------- 1 | "Passord:" 4 | ); 5 | $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 6 | -------------------------------------------------------------------------------- /l10n/pa.php: -------------------------------------------------------------------------------- 1 | "ਪਾਸਵਰਡ:" 4 | ); 5 | $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 6 | -------------------------------------------------------------------------------- /l10n/pl.php: -------------------------------------------------------------------------------- 1 | "Nieudane usunięcie danych.", 4 | "Failed to delete user" => "Nieudane usunięcie użytkownika.", 5 | "Storage deleted" => "Dane usunięte", 6 | "User not found" => "Nie znaleziono użytkownika", 7 | "Restriction saved" => "Ograniczenie zapisane", 8 | "Invalid input" => "Błędne dane", 9 | "Auto create sync account enabled" => "Konto automatycznej synchronizacji włączone", 10 | "Auto create sync account disabled" => "Konto automatycznej synchronizacji wyłączone", 11 | "Sync email saved" => "Email zapisany", 12 | "Quota saved" => "Quota zapisana", 13 | "Mozilla Sync" => "Mozilla Sync", 14 | "Restrict to group" => "Ogranicz do grupy", 15 | "When activated, only members of this group can access Mozilla Sync." => "Po aktywowaniu tylko członkowie tej grupy mają dostęp do Mozilla Sync. ", 16 | "Sync quota" => "Zsynchronizuj quotę", 17 | "Set the value to 0 for unlimited quota." => "Ustaw wartość 0 dla nielimitowanej quoty.", 18 | "Auto create sync account" => "Utwórz konto synchronizacji automatycznie", 19 | "When activated, the Mozilla Sync registration API will be disabled and instead accounts will be auto created using a user's existing credentials" => "Po włączeniu rejestracji API Mozilla Sync będzie wyłączone, a zamiast tego konta będą automatycznie tworzone przy użyciu istniejących poświadczeń użytkownika", 20 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." => "Błąd! Nie masz praw do używania Mozilla Sync! Musisz być członkiem grupy %s.", 21 | "To use Mozilla Sync enter the credentials in to Mozilla Sync client" => "Aby korzystać z Mozilla Sync, wprowadź w celu poświadczenia klienta Mozilla Sync", 22 | "To set up Mozilla Sync create a new Sync account in Firefox." => "W celu skonfigurowania Mozilla Sync stwórz nowe konto synchronizacji w Firefox'ie.", 23 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." => "Skonfigurowano Mozilla Sync, dodatkowe urządzenia mogą być dodane przy użyciu usługi parowania urządzeń Mozilli lub ręcznie.", 24 | "Email:" => "Email:", 25 | "Has to be unique among all Sync users" => "Musi być unikalny wśród wszystkich użytkowników", 26 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." => "Błąd! Wykryto zduplikowane adresy email! Muszą być one unikalne, żeby Mozilla Sync mogła działać.", 27 | "Password:" => "Hasło:", 28 | "Use your ownCloud account password" => "Użyj twoje hasło konta ownCloud", 29 | "Server address:" => "Adres serwera:", 30 | "Sync Status" => "Status synchronizacji", 31 | "Last sync:" => "Ostatni sync:", 32 | "Size of stored data:" => "Rozmiar przechowanych danych:", 33 | "No data stored yet." => "Brak przechowywanych danych.", 34 | "Number of synced devices:" => "Liczba zsynchronizowanych urządzeń:", 35 | "Delete Sync data" => "Usuń dane synchronizacji", 36 | "Attention! This will delete all your Sync data on the server." => "Uwaga! W ten sposób usuniesz wszystkie dane synchronizacji na serwerze." 37 | ); 38 | $PLURAL_FORMS = "nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; 39 | -------------------------------------------------------------------------------- /l10n/ro.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "mozilla_sync", 3 | { 4 | "Failed to delete storage" : "Nu s-a putut șterge spațiul de stocare", 5 | "Failed to delete user" : "Nu s-a putut sterge utilizatorul", 6 | "Storage deleted" : "Spațiu de stocare a fost șters", 7 | "User not found" : "Utilizatorul nu a fost gasit", 8 | "Restriction saved" : "Restrictie salvata", 9 | "Invalid input" : "Intrare nevalida", 10 | "Sync email saved" : "Email Sync salvat", 11 | "Quota saved" : "Cota salvata", 12 | "Mozilla Sync" : "Mozilla Sync", 13 | "Restrict to group" : "Limitează la un grup", 14 | "When activated, only members of this group can access Mozilla Sync." : "Cand este activat, doar membrii acestui grup pot accesa Mozilla Sync.", 15 | "Set the value to 0 for unlimited quota." : "Setati valoarea 0 pentru cota nelimitata.", 16 | "Auto create sync account" : "Crează automat contul de sincronizare", 17 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." : "Eroare! Nu aveti dretpul de a folosi Mozilla Sync! Trebuie sa fiti membru al grupului %s.", 18 | "To set up Mozilla Sync create a new Sync account in Firefox." : "Pentru a pregati Mozilla Sync trebuie sa creati un nou cont Sync in Firefox.", 19 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." : "Mozilla Sync este pregatit, dispozitive suplimentare pot fi adaugate manual sau prin intermediul serviciului Mozilla de imperechere a dispozitivelor. ", 20 | "Email:" : "Email:", 21 | "Has to be unique among all Sync users" : "Trebuie sa fie unic printre toti utilizatorii Sync", 22 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." : "Eroare! S-a detectat o adresa email dublata. Adresele de email trebuie sa fie unice pentru ca Mozilla Sync sa functioneze.", 23 | "Password:" : "Parolă:", 24 | "Use your ownCloud account password" : "Folositi parola contului dumneavoastra ownCloud", 25 | "Server address:" : "Adresa server-ului", 26 | "Sync Status" : "Stare Sync", 27 | "Last sync:" : "Ultima sincronizare", 28 | "Size of stored data:" : "Marimea datelor stocate", 29 | "No data stored yet." : "Nu a fost stocata nici o data inca.", 30 | "Number of synced devices:" : "Numar de dispozitive sincronizate", 31 | "Delete Sync data" : "Șterge datele sincronizate", 32 | "Attention! This will delete all your Sync data on the server." : "Atentie! Veti sterge toate datele Sync de pe server." 33 | }, 34 | "nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));"); 35 | -------------------------------------------------------------------------------- /l10n/ro.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Failed to delete storage" : "Nu s-a putut șterge spațiul de stocare", 3 | "Failed to delete user" : "Nu s-a putut sterge utilizatorul", 4 | "Storage deleted" : "Spațiu de stocare a fost șters", 5 | "User not found" : "Utilizatorul nu a fost gasit", 6 | "Restriction saved" : "Restrictie salvata", 7 | "Invalid input" : "Intrare nevalida", 8 | "Sync email saved" : "Email Sync salvat", 9 | "Quota saved" : "Cota salvata", 10 | "Mozilla Sync" : "Mozilla Sync", 11 | "Restrict to group" : "Limitează la un grup", 12 | "When activated, only members of this group can access Mozilla Sync." : "Cand este activat, doar membrii acestui grup pot accesa Mozilla Sync.", 13 | "Set the value to 0 for unlimited quota." : "Setati valoarea 0 pentru cota nelimitata.", 14 | "Auto create sync account" : "Crează automat contul de sincronizare", 15 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." : "Eroare! Nu aveti dretpul de a folosi Mozilla Sync! Trebuie sa fiti membru al grupului %s.", 16 | "To set up Mozilla Sync create a new Sync account in Firefox." : "Pentru a pregati Mozilla Sync trebuie sa creati un nou cont Sync in Firefox.", 17 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." : "Mozilla Sync este pregatit, dispozitive suplimentare pot fi adaugate manual sau prin intermediul serviciului Mozilla de imperechere a dispozitivelor. ", 18 | "Email:" : "Email:", 19 | "Has to be unique among all Sync users" : "Trebuie sa fie unic printre toti utilizatorii Sync", 20 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." : "Eroare! S-a detectat o adresa email dublata. Adresele de email trebuie sa fie unice pentru ca Mozilla Sync sa functioneze.", 21 | "Password:" : "Parolă:", 22 | "Use your ownCloud account password" : "Folositi parola contului dumneavoastra ownCloud", 23 | "Server address:" : "Adresa server-ului", 24 | "Sync Status" : "Stare Sync", 25 | "Last sync:" : "Ultima sincronizare", 26 | "Size of stored data:" : "Marimea datelor stocate", 27 | "No data stored yet." : "Nu a fost stocata nici o data inca.", 28 | "Number of synced devices:" : "Numar de dispozitive sincronizate", 29 | "Delete Sync data" : "Șterge datele sincronizate", 30 | "Attention! This will delete all your Sync data on the server." : "Atentie! Veti sterge toate datele Sync de pe server." 31 | },"pluralForm" :"nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));" 32 | } -------------------------------------------------------------------------------- /l10n/ro.php: -------------------------------------------------------------------------------- 1 | "Nu s-a putut șterge spațiul de stocare", 4 | "Failed to delete user" => "Nu s-a putut sterge utilizatorul", 5 | "Storage deleted" => "Spațiu de stocare a fost șters", 6 | "User not found" => "Utilizatorul nu a fost gasit", 7 | "Restriction saved" => "Restrictie salvata", 8 | "Invalid input" => "Intrare nevalida", 9 | "Sync email saved" => "Email Sync salvat", 10 | "Quota saved" => "Cota salvata", 11 | "Mozilla Sync" => "Mozilla Sync", 12 | "Restrict to group" => "Limitează la un grup", 13 | "When activated, only members of this group can access Mozilla Sync." => "Cand este activat, doar membrii acestui grup pot accesa Mozilla Sync.", 14 | "Set the value to 0 for unlimited quota." => "Setati valoarea 0 pentru cota nelimitata.", 15 | "Auto create sync account" => "Crează automat contul de sincronizare", 16 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." => "Eroare! Nu aveti dretpul de a folosi Mozilla Sync! Trebuie sa fiti membru al grupului %s.", 17 | "To set up Mozilla Sync create a new Sync account in Firefox." => "Pentru a pregati Mozilla Sync trebuie sa creati un nou cont Sync in Firefox.", 18 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." => "Mozilla Sync este pregatit, dispozitive suplimentare pot fi adaugate manual sau prin intermediul serviciului Mozilla de imperechere a dispozitivelor. ", 19 | "Email:" => "Email:", 20 | "Has to be unique among all Sync users" => "Trebuie sa fie unic printre toti utilizatorii Sync", 21 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." => "Eroare! S-a detectat o adresa email dublata. Adresele de email trebuie sa fie unice pentru ca Mozilla Sync sa functioneze.", 22 | "Password:" => "Parolă:", 23 | "Use your ownCloud account password" => "Folositi parola contului dumneavoastra ownCloud", 24 | "Server address:" => "Adresa server-ului", 25 | "Sync Status" => "Stare Sync", 26 | "Last sync:" => "Ultima sincronizare", 27 | "Size of stored data:" => "Marimea datelor stocate", 28 | "No data stored yet." => "Nu a fost stocata nici o data inca.", 29 | "Number of synced devices:" => "Numar de dispozitive sincronizate", 30 | "Delete Sync data" => "Șterge datele sincronizate", 31 | "Attention! This will delete all your Sync data on the server." => "Atentie! Veti sterge toate datele Sync de pe server." 32 | ); 33 | $PLURAL_FORMS = "nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));"; 34 | -------------------------------------------------------------------------------- /l10n/ru_RU.php: -------------------------------------------------------------------------------- 1 | "0 без ограничений", 4 | "Password" => "Пароль", 5 | "Server address" => "URL" 6 | ); 7 | $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; 8 | -------------------------------------------------------------------------------- /l10n/si_LK.php: -------------------------------------------------------------------------------- 1 | "මුරපදය" 4 | ); 5 | $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 6 | -------------------------------------------------------------------------------- /l10n/sq.php: -------------------------------------------------------------------------------- 1 | "Fshirja e depozitës dështoi", 4 | "Failed to delete user" => "Fshirja e përdoruesit dështoi", 5 | "Storage deleted" => "Depozita u fshi", 6 | "User not found" => "S’u gjet përdorues", 7 | "Restriction saved" => "Kufizimet u ruajtën", 8 | "Invalid input" => "Futje e pavlefshme", 9 | "Auto create sync account enabled" => "Vetëkrijimi i llogarive Sync u aktivizua", 10 | "Auto create sync account disabled" => "Vetëkrijimi i llogarive Sync u çaktivizua", 11 | "Sync email saved" => "Email-i Sync u ruajt", 12 | "Quota saved" => "Kuotat u ruajtën", 13 | "Mozilla Sync" => "Mozilla Sync", 14 | "Restrict to group" => "Kufizoje për grupin", 15 | "When activated, only members of this group can access Mozilla Sync." => "Po u aktivizua, vetëm anëtarë të këtij grupi mund të hyjnë te Mozilla Sync-u.", 16 | "Sync quota" => "Kuota Sync-u", 17 | "Set the value to 0 for unlimited quota." => "Për kuota të pakufizuara jepini vlerën 0.", 18 | "Auto create sync account" => "Vetëkrijo llogari Sync", 19 | "When activated, the Mozilla Sync registration API will be disabled and instead accounts will be auto created using a user's existing credentials" => "Kur të aktivizohet, API për regjistrim te Mozilla Sync-u do të çaktivizohet dhe llogaritë do të vetëkrijohen duke përdorur kredencialet ekzistuese të përdoruesve", 20 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." => "Gabim! S’ju lejohet të përdorni Mozilla Sync-in! Lypset të jeni anëtar i grupit %s.", 21 | "To use Mozilla Sync enter the credentials in to Mozilla Sync client" => "Që të përdorni Mozilla Sync-un jepni kredencialet te klienti Mozilla Sync", 22 | "To set up Mozilla Sync create a new Sync account in Firefox." => "Që të rregulloni Mozilla Sync-n, krijoni te Firefox-i një llogari të re Sync-u.", 23 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." => "Mozilla Sync-u u rregullua, pajisjet shtesë mund të shtohet përmes shërbimit Mozilla të çiftimit të pajisjeve ose dorazi.", 24 | "Email:" => "Email:", 25 | "Has to be unique among all Sync users" => "Duhet të jetë unik mes krejt përdoruesve të Sync-ut", 26 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." => "Gabim! U kapën adresa email të përsëdytura! Që Mozilla Sync të funksionojë, adresat email lypset të jenë unike.", 27 | "Password:" => "Fjalëkalim:", 28 | "Use your ownCloud account password" => "Përdorni fjalëkalimin e llogarisë tuaj ownCloud", 29 | "Server address:" => "Adresë shërbyesi:", 30 | "Sync Status" => "Gjendje Njëkohësimi", 31 | "Last sync:" => "Njëkohësimi i fundit:", 32 | "Size of stored data:" => "Madhësi të dhënash të depozituara:", 33 | "No data stored yet." => "Ende pa të dhëna të depozituara.", 34 | "Number of synced devices:" => "Numër pajisjesh të njëkohësuara:", 35 | "Delete Sync data" => "Fshi Të dhëna Sync-u", 36 | "Attention! This will delete all your Sync data on the server." => "Kujdes! Kështu do të fshihen te shërbyesi krejt të dhënat tuaja Sync." 37 | ); 38 | $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 39 | -------------------------------------------------------------------------------- /l10n/sr@latin.php: -------------------------------------------------------------------------------- 1 | "E-mail", 3 | "Password" => "Lozinka" 4 | ); 5 | -------------------------------------------------------------------------------- /l10n/sv.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Failed to delete storage" : "Misslyckades att radera lagring", 3 | "Failed to delete user" : "Misslyckades att radera användare", 4 | "Storage deleted" : "Lagring raderad", 5 | "User not found" : "Användare ej funnen", 6 | "Restriction saved" : "Begränsning sparad", 7 | "Invalid input" : "Ogiltlig input", 8 | "Auto create sync account enabled" : "Automatskapa synkroniseringskonto aktiverat", 9 | "Auto create sync account disabled" : "Automatskapa synkroniseringskonto inaktiverat", 10 | "Sync email saved" : "Synk e-post sparad", 11 | "Quota saved" : "Kvot sparad", 12 | "Mozilla Sync" : "Mozilla Synktjänst", 13 | "Restrict to group" : "Begränsa till grupp", 14 | "When activated, only members of this group can access Mozilla Sync." : "När den aktiveras, kommer endast medlemmar av denna grupp ha åtkomst till Mozilla Sync.", 15 | "Sync quota" : "Synkroniseringskvot", 16 | "Set the value to 0 for unlimited quota." : "Sätt värdet till 0 för obegränsad kvot.", 17 | "Auto create sync account" : "Automatskapa synkroniseringskonto", 18 | "When activated, the Mozilla Sync registration API will be disabled and instead accounts will be auto created using a user's existing credentials" : "Vid aktivering kommer Mozilla-Syncs registrerings-API att inaktiveras och istället kommer konton att automatiskt skapas genom att använda användares befintliga autentiseringsuppgifter", 19 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." : "Fel! Du har inte tillstånd att använda Mozilla Sync! Du behöver vara en medlem av gruppen %s.", 20 | "To use Mozilla Sync enter the credentials in to Mozilla Sync client" : "För att använda Mozilla Sync ange inloggningsuppgifterna i Mozilla-Sync-klienten", 21 | "To set up Mozilla Sync create a new Sync account in Firefox." : "För att sätta upp Mozilla Synk, skapa ett nytt synk-konto i Firefox.", 22 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." : "Mozilla Sync är uppsatt, ytterligare enheter kan läggas till via Mozillas enhet parningstjänst eller manuellt.", 23 | "Email:" : "E-post:", 24 | "Has to be unique among all Sync users" : "Måste vara unik mellan alla synk användare", 25 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." : "Fel! Dubblett av e-postadresser detekterad! E-postadresser måste vara unika för att Mozilla Sync ska fungera.", 26 | "Password:" : "Lösenord:", 27 | "Use your ownCloud account password" : "Ange ditt ownCloud lösenord:", 28 | "Server address:" : "Serveradress:", 29 | "Sync Status" : "Synkroniseringsstatus", 30 | "Last sync:" : "Senaste synk:", 31 | "Size of stored data:" : "Storlek på lagrad data:", 32 | "No data stored yet." : "Ingen data lagrad ännu.", 33 | "Number of synced devices:" : "Antal synkroniserade enheter:", 34 | "Delete Sync data" : "Radera synk-data", 35 | "Attention! This will delete all your Sync data on the server." : "Observera! Detta kommer radera din synk-data från servern." 36 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 37 | } -------------------------------------------------------------------------------- /l10n/sv.php: -------------------------------------------------------------------------------- 1 | "Misslyckades att radera lagring", 4 | "Failed to delete user" => "Misslyckades att radera användare", 5 | "Storage deleted" => "Lagring raderad", 6 | "User not found" => "Användare ej funnen", 7 | "Restriction saved" => "Begränsning sparad", 8 | "Invalid input" => "Ogiltlig input", 9 | "Auto create sync account enabled" => "Automatskapa synkroniseringskonto aktiverat", 10 | "Auto create sync account disabled" => "Automatskapa synkroniseringskonto inaktiverat", 11 | "Sync email saved" => "Synk e-post sparad", 12 | "Quota saved" => "Kvot sparad", 13 | "Mozilla Sync" => "Mozilla Synktjänst", 14 | "Restrict to group" => "Begränsa till grupp", 15 | "When activated, only members of this group can access Mozilla Sync." => "När den aktiveras, kommer endast medlemmar av denna grupp ha åtkomst till Mozilla Sync.", 16 | "Sync quota" => "Synkroniseringskvot", 17 | "Set the value to 0 for unlimited quota." => "Sätt värdet till 0 för obegränsad kvot.", 18 | "Auto create sync account" => "Automatskapa synkroniseringskonto", 19 | "When activated, the Mozilla Sync registration API will be disabled and instead accounts will be auto created using a user's existing credentials" => "Vid aktivering kommer Mozilla-Syncs registrerings-API att inaktiveras och istället kommer konton att automatiskt skapas genom att använda användares befintliga autentiseringsuppgifter", 20 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." => "Fel! Du har inte tillstånd att använda Mozilla Sync! Du behöver vara en medlem av gruppen %s.", 21 | "To use Mozilla Sync enter the credentials in to Mozilla Sync client" => "För att använda Mozilla Sync ange inloggningsuppgifterna i Mozilla-Sync-klienten", 22 | "To set up Mozilla Sync create a new Sync account in Firefox." => "För att sätta upp Mozilla Synk, skapa ett nytt synk-konto i Firefox.", 23 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." => "Mozilla Sync är uppsatt, ytterligare enheter kan läggas till via Mozillas enhet parningstjänst eller manuellt.", 24 | "Email:" => "E-post:", 25 | "Has to be unique among all Sync users" => "Måste vara unik mellan alla synk användare", 26 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." => "Fel! Dubblett av e-postadresser detekterad! E-postadresser måste vara unika för att Mozilla Sync ska fungera.", 27 | "Password:" => "Lösenord:", 28 | "Use your ownCloud account password" => "Ange ditt ownCloud lösenord:", 29 | "Server address:" => "Serveradress:", 30 | "Sync Status" => "Synkroniseringsstatus", 31 | "Last sync:" => "Senaste synk:", 32 | "Size of stored data:" => "Storlek på lagrad data:", 33 | "No data stored yet." => "Ingen data lagrad ännu.", 34 | "Number of synced devices:" => "Antal synkroniserade enheter:", 35 | "Delete Sync data" => "Radera synk-data", 36 | "Attention! This will delete all your Sync data on the server." => "Observera! Detta kommer radera din synk-data från servern." 37 | ); 38 | $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 39 | -------------------------------------------------------------------------------- /l10n/ta_LK.php: -------------------------------------------------------------------------------- 1 | "கடவுச்சொல்:" 4 | ); 5 | $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 6 | -------------------------------------------------------------------------------- /l10n/te.php: -------------------------------------------------------------------------------- 1 | "సంకేతపదం:" 4 | ); 5 | $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 6 | -------------------------------------------------------------------------------- /l10n/th_TH.php: -------------------------------------------------------------------------------- 1 | "ไม่สามารถลบพื้นที่จัดเก็บข้อมูล", 4 | "Failed to delete user" => "ลบผู้ใช้ล้มเหลว", 5 | "Storage deleted" => "พื้นที่จัดเก็บข้อมูลถูกลบ", 6 | "User not found" => "ไม่พบผู้ใช้", 7 | "Restriction saved" => "ข้อจำกัดที่บันทึกไว้", 8 | "Invalid input" => "ป้อนข้อมูลที่ไม่ถูกต้อง", 9 | "Auto create sync account enabled" => "เปิดการใช้งานสร้างบัญชีประสานข้อมูลอัตโนมัติ", 10 | "Auto create sync account disabled" => "ปิดการใช้งานสร้างบัญชีประสานข้อมูลอัตโนมัติ", 11 | "Sync email saved" => "ประสานข้อมูลอีเมลที่บันทึกไว้", 12 | "Quota saved" => "โควต้าที่บันทึกไว้", 13 | "Mozilla Sync" => "ประสานข้อมูลของ Mozilla", 14 | "Restrict to group" => "จำกัดไปยังกลุ่ม", 15 | "When activated, only members of this group can access Mozilla Sync." => "เมื่อเปิดใช้งาน เฉพาะสมาชิกของกลุ่มนี้สามารถใช้การประสานข้อมูลของ Mozilla", 16 | "Sync quota" => "ประสานข้อมูลโควต้า", 17 | "Set the value to 0 for unlimited quota." => "ตั้งค่าเป็น 0 สำหรับโควต้าไม่ จำกัด", 18 | "Auto create sync account" => "สร้างบัญชีประสานข้อมูลอัตโนมัติ", 19 | "When activated, the Mozilla Sync registration API will be disabled and instead accounts will be auto created using a user's existing credentials" => "เมื่อเปิดใช้งานการประสานข้อมูลของ Mozilla การลงทะเบียนโดยการผสานข้อมูลจาก Mozilla API จะถูกปิดการใช้งานและจะสร้างบัญชีผู้ใช้ใหม่อัตโนมัติโดยใช้ข้อมูลประจำตัวที่มีอยู่ของผู้ใช้", 20 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." => "ข้อผิดพลาด! คุณยังไม่ได้รับอนุญาตให้ใช้การประสานข้อมูล Mozilla! คุณจะต้องเป็นสมาชิกของกลุ่ม %s", 21 | "To use Mozilla Sync enter the credentials in to Mozilla Sync client" => "เพื่อที่จะใช้การประสานข้อมูล Mozilla ต้องไปป้อนข้อมูลประจำตัวใน Mozilla Sync client", 22 | "To set up Mozilla Sync create a new Sync account in Firefox." => "การตั้งค่าการประสานข้อมูล Mozilla สร้างบัญชีผสานใหม่ใน Firefox", 23 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." => "การตั้งค่าการประสานข้อมูล Mozilla ตั้งค่าอุปกรณ์เพิ่มเติมสามารถเพิ่มผ่านทางบริการจับคู่อุปกรณ์ของ Mozilla หรือทำด้วยตนเอง", 24 | "Email:" => "อีเมล:", 25 | "Has to be unique among all Sync users" => "จะต้องไม่ซ้ำกันในหมู่ผู้ใช้การประสานทั้งหมด", 26 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." => "เกิดข้อผิดพลาด! ตรวจพบอีเมลที่ซ้ำกัน! ในการทำงานที่อยู่อีเมลจะต้องไม่ซ้ำกันสำหรับการประสานข้อมูลของ Mozilla", 27 | "Password:" => "รหัสผ่าน:", 28 | "Use your ownCloud account password" => "ใช้รหัสผ่านของบัญชี ownCloud ของคุณ", 29 | "Server address:" => "ที่อยู่ของเซิร์ฟเวอร์:", 30 | "Sync Status" => "ประสานข้อมูลสถานะ", 31 | "Last sync:" => "การประสานข้อมูลล่าสุด:", 32 | "Size of stored data:" => "ขนาดของข้อมูลที่จัดเก็บ:", 33 | "No data stored yet." => "ยังไม่มีข้อมูลที่เก็บไว้", 34 | "Number of synced devices:" => "จำนวนของอุปกรณ์ที่ประสานข้อมูล:", 35 | "Delete Sync data" => "ลบข้อมูลที่ประสานเอาไว้", 36 | "Attention! This will delete all your Sync data on the server." => "โปรดทราบ! นี้จะลบข้อมูลที่ประสานทั้งหมดของคุณบนเซิร์ฟเวอร์" 37 | ); 38 | $PLURAL_FORMS = "nplurals=1; plural=0;"; 39 | -------------------------------------------------------------------------------- /l10n/tr.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Failed to delete storage" : "Depolamayı silme başarısız", 3 | "Failed to delete user" : "Kullanıcıyı silme başarısız", 4 | "Storage deleted" : "Depolama silindi", 5 | "User not found" : "Kullanıcı bulunamadı", 6 | "Restriction saved" : "Kısıtlama kaydedildi", 7 | "Invalid input" : "Geçersiz girdi", 8 | "Auto create sync account enabled" : "Otomatik eşitleme hesabı oluşturma etkinleştirildi", 9 | "Auto create sync account disabled" : "Otomatik eşitleme hesabı oluşturma devre dışı bırakıldı", 10 | "Sync email saved" : "Eşitleme e-postası kaydedildi", 11 | "Quota saved" : "Kota kaydedildi", 12 | "Mozilla Sync" : "Mozilla Sync", 13 | "Restrict to group" : "Şu gruba sınırla:", 14 | "When activated, only members of this group can access Mozilla Sync." : "Etkinleştirildiğinde, sadece bu grubun üyeleri Mozilla Sync'e erişebilir.", 15 | "Sync quota" : "Eşitleme kotası", 16 | "Set the value to 0 for unlimited quota." : "Sınırsız kota için değeri 0 yapın.", 17 | "Auto create sync account" : "Otomatik eşitleme hesabı oluştur", 18 | "When activated, the Mozilla Sync registration API will be disabled and instead accounts will be auto created using a user's existing credentials" : "Bu seçenek etkinleştirildiğinde Mozilla Sync kaydolma API'si kapatılacaktır. Bunun yerine, hesaplar kullanıcının mevcut kimlik bilgileriyle otomatik olarak oluşturulacaktır.", 19 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." : "Hata! Mozilla Sync kullanma izniniz yok! %s grubunun üyesi olmanız gerekli.", 20 | "To use Mozilla Sync enter the credentials in to Mozilla Sync client" : "Mozilla Sync'i kullanabilmek için Mozilla Sync istemcisine kimlik bilgilerini girmelisiniz", 21 | "To set up Mozilla Sync create a new Sync account in Firefox." : "Mozilla Sync kurulumu için Firefox içerisinde yeni bir Sync hesabı oluşturun.", 22 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." : "Mozilla Sync ayarlandı, ek aygıtlar Mozilla'nın aygıt eşleme hizmeti veya el ile eklenebilir.", 23 | "Email:" : "E-posta:", 24 | "Has to be unique among all Sync users" : "Tüm Sync kullanıcıları arasında benzersiz olmalı", 25 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." : "Hata! Yinelenmiş e-posta adresleri tespit edildi! Mozilla Sync'in çalışabilmesi için e-posta adreslerinin benzersiz olması gereklidir", 26 | "Password:" : "Parola:", 27 | "Use your ownCloud account password" : "ownCloud hesap parolanızı kullanın", 28 | "Server address:" : "Sunucu adresi:", 29 | "Sync Status" : "Eşitleme Durumu", 30 | "Last sync:" : "Son eşitleme:", 31 | "Size of stored data:" : "Depolanmış veri boyutu:", 32 | "No data stored yet." : "Henüz depolanmış bir veri yok.", 33 | "Number of synced devices:" : "Eşitlenmiş aygıtların sayısı:", 34 | "Delete Sync data" : "Eşitleme verisini sil", 35 | "Attention! This will delete all your Sync data on the server." : "Dikkat! Bu, sunucudaki tüm Eşitleme verilerinizi silecektir." 36 | },"pluralForm" :"nplurals=2; plural=(n > 1);" 37 | } -------------------------------------------------------------------------------- /l10n/tr.php: -------------------------------------------------------------------------------- 1 | "Depolamayı silme başarısız", 4 | "Failed to delete user" => "Kullanıcıyı silme başarısız", 5 | "Storage deleted" => "Depolama silindi", 6 | "User not found" => "Kullanıcı bulunamadı", 7 | "Restriction saved" => "Kısıtlama kaydedildi", 8 | "Invalid input" => "Geçersiz girdi", 9 | "Auto create sync account enabled" => "Otomatik eşitleme hesabı oluşturma etkinleştirildi", 10 | "Auto create sync account disabled" => "Otomatik eşitleme hesabı oluşturma devre dışı bırakıldı", 11 | "Sync email saved" => "Eşitleme e-postası kaydedildi", 12 | "Quota saved" => "Kota kaydedildi", 13 | "Mozilla Sync" => "Mozilla Sync", 14 | "Restrict to group" => "Şu gruba sınırla:", 15 | "When activated, only members of this group can access Mozilla Sync." => "Etkinleştirildiğinde, sadece bu grubun üyeleri Mozilla Sync'e erişebilir.", 16 | "Sync quota" => "Eşitleme kotası", 17 | "Set the value to 0 for unlimited quota." => "Sınırsız kota için değeri 0 yapın.", 18 | "Auto create sync account" => "Otomatik eşitleme hesabı oluştur", 19 | "When activated, the Mozilla Sync registration API will be disabled and instead accounts will be auto created using a user's existing credentials" => "Bu seçenek etkinleştirildiğinde Mozilla Sync kaydolma API'si kapatılacaktır. Bunun yerine, hesaplar kullanıcının mevcut kimlik bilgileriyle otomatik olarak oluşturulacaktır.", 20 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." => "Hata! Mozilla Sync kullanma izniniz yok! %s grubunun üyesi olmanız gerekli.", 21 | "To use Mozilla Sync enter the credentials in to Mozilla Sync client" => "Mozilla Sync'i kullanabilmek için Mozilla Sync istemcisine kimlik bilgilerini girmelisiniz", 22 | "To set up Mozilla Sync create a new Sync account in Firefox." => "Mozilla Sync kurulumu için Firefox içerisinde yeni bir Sync hesabı oluşturun.", 23 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." => "Mozilla Sync ayarlandı, ek aygıtlar Mozilla'nın aygıt eşleme hizmeti veya el ile eklenebilir.", 24 | "Email:" => "E-posta:", 25 | "Has to be unique among all Sync users" => "Tüm Sync kullanıcıları arasında benzersiz olmalı", 26 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." => "Hata! Yinelenmiş e-posta adresleri tespit edildi! Mozilla Sync'in çalışabilmesi için e-posta adreslerinin benzersiz olması gereklidir", 27 | "Password:" => "Parola:", 28 | "Use your ownCloud account password" => "ownCloud hesap parolanızı kullanın", 29 | "Server address:" => "Sunucu adresi:", 30 | "Sync Status" => "Eşitleme Durumu", 31 | "Last sync:" => "Son eşitleme:", 32 | "Size of stored data:" => "Depolanmış veri boyutu:", 33 | "No data stored yet." => "Henüz depolanmış bir veri yok.", 34 | "Number of synced devices:" => "Eşitlenmiş aygıtların sayısı:", 35 | "Delete Sync data" => "Eşitleme verisini sil", 36 | "Attention! This will delete all your Sync data on the server." => "Dikkat! Bu, sunucudaki tüm Eşitleme verilerinizi silecektir." 37 | ); 38 | $PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; 39 | -------------------------------------------------------------------------------- /l10n/ug.php: -------------------------------------------------------------------------------- 1 | "ئىم" 4 | ); 5 | $PLURAL_FORMS = "nplurals=1; plural=0;"; 6 | -------------------------------------------------------------------------------- /l10n/uk.php: -------------------------------------------------------------------------------- 1 | "Помилка при видаленні сховища", 4 | "Failed to delete user" => "Помилка при видаленні користувача", 5 | "Storage deleted" => "Сховище видалено", 6 | "User not found" => "Користувача не знайдено", 7 | "Restriction saved" => "Обмеження збережені", 8 | "Invalid input" => "Невірне введення", 9 | "Auto create sync account enabled" => "Автоматичне створення аккаунта Sync увімкнене", 10 | "Auto create sync account disabled" => "Автоматичне створення аккаунта Sync відключене", 11 | "Sync email saved" => "Email для Sync збережений", 12 | "Quota saved" => "Квота збережена", 13 | "Mozilla Sync" => "Синхронізація Mozilla", 14 | "Restrict to group" => "Обмеження групи", 15 | "When activated, only members of this group can access Mozilla Sync." => "Якщо увімкнене, то тільки члени цієї групи мають доступ до Mozilla Sync.", 16 | "Sync quota" => "Sync квота", 17 | "Set the value to 0 for unlimited quota." => "Встановіть 0 для квоти без обмежень.", 18 | "Auto create sync account" => "Автоматичне створення Sync аккаунту", 19 | "When activated, the Mozilla Sync registration API will be disabled and instead accounts will be auto created using a user's existing credentials" => "Якщо увімкнене, то API реєстрації Mozilla Sync будуть відключені, натомість, для створення облікових записів будуть використані вже існуючі облікові дані", 20 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." => "Помилка! Ви не можете використовувати Mozilla Sync, так як не перебуваєте в групі %s.", 21 | "To use Mozilla Sync enter the credentials in to Mozilla Sync client" => "Для використання Mozilla Sync введіть облікові дані клієнта Mozilla Sync", 22 | "To set up Mozilla Sync create a new Sync account in Firefox." => "Для налаштування Mozilla Sync створіть новий обліковий запис Sync в Firefox.", 23 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." => "Mozilla Sync налаштований, додаткові пристрої можуть бути додані за допомогою служби сполучення пристроїв Mozilla або вручну.", 24 | "Email:" => "Email:", 25 | "Has to be unique among all Sync users" => "Повинно бути унікальним для всіх Sync користувачів", 26 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." => "Помилка! Введений email вже зареєстрований! Email адреси повинні бути унікальними для функціонування Mozilla Sync.", 27 | "Password:" => "Пароль:", 28 | "Use your ownCloud account password" => "Використовуйте свій пароль облікового запису ownCloud", 29 | "Server address:" => "Адреса серверу:", 30 | "Sync Status" => "Статус синхронізації", 31 | "Last sync:" => "Остання синхронізація:", 32 | "Size of stored data:" => "Розмір збережених даних:", 33 | "No data stored yet." => "Немає збережених даних.", 34 | "Number of synced devices:" => "Кількість синхронізованих пристроїв:", 35 | "Delete Sync data" => "Видалити Sync дані", 36 | "Attention! This will delete all your Sync data on the server." => "Увага! Ця дія видалить всі ваші дані Sync на сервері." 37 | ); 38 | $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; 39 | -------------------------------------------------------------------------------- /l10n/ur_PK.php: -------------------------------------------------------------------------------- 1 | "پاسورڈ" 3 | ); 4 | -------------------------------------------------------------------------------- /l10n/vi.php: -------------------------------------------------------------------------------- 1 | "Mật khẩu:" 4 | ); 5 | $PLURAL_FORMS = "nplurals=1; plural=0;"; 6 | -------------------------------------------------------------------------------- /l10n/xgettextfiles: -------------------------------------------------------------------------------- 1 | ../appinfo/app.php 2 | ../templates/index.php 3 | ../templates/noemail.php 4 | ../templates/settings.php -------------------------------------------------------------------------------- /l10n/zh_CN.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "mozilla_sync", 3 | { 4 | "Failed to delete storage" : "删除存储失败", 5 | "Failed to delete user" : "删除用户失败", 6 | "Storage deleted" : "存储已删除", 7 | "User not found" : "未找到用户", 8 | "Restriction saved" : "限制保存", 9 | "Invalid input" : "无效的输入", 10 | "Sync email saved" : "同步邮件已保存", 11 | "Quota saved" : "配额已保存", 12 | "Mozilla Sync" : "Mozilla同步服务", 13 | "Restrict to group" : "仅限于用户组", 14 | "When activated, only members of this group can access Mozilla Sync." : "激活之后,只有此组内的成员可以访问Mozilla同步服务。", 15 | "Sync quota" : "同步配额", 16 | "Set the value to 0 for unlimited quota." : "设置为0表示不限制配额。", 17 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." : "错误!您未被授权使用Mozilla同步服务!您必须成为%s组的成员。", 18 | "To set up Mozilla Sync create a new Sync account in Firefox." : "要配置Mozilla同步服务需要先在Firefox里创建一个同步帐号。", 19 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." : "已配置好 Mozilla 同步服务,其它设备可以通过 Mozilla 的设备配对服务增加,或者手工增加进来。", 20 | "Email:" : "电子邮件:", 21 | "Has to be unique among all Sync users" : "必须保证在所有同步用户中唯一", 22 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." : "错误!重复的Email地址!必须提供未在Mozilla同步服务使用过的Email地址。", 23 | "Password:" : "密码:", 24 | "Use your ownCloud account password" : "使用你的ownCloud账号密码", 25 | "Server address:" : "服务器地址:", 26 | "Sync Status" : "同步状态", 27 | "Last sync:" : "最后同步:", 28 | "Size of stored data:" : "存储数据大小:", 29 | "No data stored yet." : "尚未存储数据。", 30 | "Number of synced devices:" : "已同步的设备数:", 31 | "Delete Sync data" : "删除同步数据", 32 | "Attention! This will delete all your Sync data on the server." : "注意!这样将会删除你在服务器上的所有同步数据。" 33 | }, 34 | "nplurals=1; plural=0;"); 35 | -------------------------------------------------------------------------------- /l10n/zh_CN.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Failed to delete storage" : "删除存储失败", 3 | "Failed to delete user" : "删除用户失败", 4 | "Storage deleted" : "存储已删除", 5 | "User not found" : "未找到用户", 6 | "Restriction saved" : "限制保存", 7 | "Invalid input" : "无效的输入", 8 | "Sync email saved" : "同步邮件已保存", 9 | "Quota saved" : "配额已保存", 10 | "Mozilla Sync" : "Mozilla同步服务", 11 | "Restrict to group" : "仅限于用户组", 12 | "When activated, only members of this group can access Mozilla Sync." : "激活之后,只有此组内的成员可以访问Mozilla同步服务。", 13 | "Sync quota" : "同步配额", 14 | "Set the value to 0 for unlimited quota." : "设置为0表示不限制配额。", 15 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." : "错误!您未被授权使用Mozilla同步服务!您必须成为%s组的成员。", 16 | "To set up Mozilla Sync create a new Sync account in Firefox." : "要配置Mozilla同步服务需要先在Firefox里创建一个同步帐号。", 17 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." : "已配置好 Mozilla 同步服务,其它设备可以通过 Mozilla 的设备配对服务增加,或者手工增加进来。", 18 | "Email:" : "电子邮件:", 19 | "Has to be unique among all Sync users" : "必须保证在所有同步用户中唯一", 20 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." : "错误!重复的Email地址!必须提供未在Mozilla同步服务使用过的Email地址。", 21 | "Password:" : "密码:", 22 | "Use your ownCloud account password" : "使用你的ownCloud账号密码", 23 | "Server address:" : "服务器地址:", 24 | "Sync Status" : "同步状态", 25 | "Last sync:" : "最后同步:", 26 | "Size of stored data:" : "存储数据大小:", 27 | "No data stored yet." : "尚未存储数据。", 28 | "Number of synced devices:" : "已同步的设备数:", 29 | "Delete Sync data" : "删除同步数据", 30 | "Attention! This will delete all your Sync data on the server." : "注意!这样将会删除你在服务器上的所有同步数据。" 31 | },"pluralForm" :"nplurals=1; plural=0;" 32 | } -------------------------------------------------------------------------------- /l10n/zh_CN.php: -------------------------------------------------------------------------------- 1 | "删除存储失败", 4 | "Failed to delete user" => "删除用户失败", 5 | "Storage deleted" => "存储已删除", 6 | "User not found" => "未找到用户", 7 | "Restriction saved" => "限制保存", 8 | "Invalid input" => "无效的输入", 9 | "Sync email saved" => "同步邮件已保存", 10 | "Quota saved" => "配额已保存", 11 | "Mozilla Sync" => "Mozilla同步服务", 12 | "Restrict to group" => "仅限于用户组", 13 | "When activated, only members of this group can access Mozilla Sync." => "激活之后,只有此组内的成员可以访问Mozilla同步服务。", 14 | "Sync quota" => "同步配额", 15 | "Set the value to 0 for unlimited quota." => "设置为0表示不限制配额。", 16 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." => "错误!您未被授权使用Mozilla同步服务!您必须成为%s组的成员。", 17 | "To set up Mozilla Sync create a new Sync account in Firefox." => "要配置Mozilla同步服务需要先在Firefox里创建一个同步帐号。", 18 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." => "已配置好 Mozilla 同步服务,其它设备可以通过 Mozilla 的设备配对服务增加,或者手工增加进来。", 19 | "Email:" => "电子邮件:", 20 | "Has to be unique among all Sync users" => "必须保证在所有同步用户中唯一", 21 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." => "错误!重复的Email地址!必须提供未在Mozilla同步服务使用过的Email地址。", 22 | "Password:" => "密码:", 23 | "Use your ownCloud account password" => "使用你的ownCloud账号密码", 24 | "Server address:" => "服务器地址:", 25 | "Sync Status" => "同步状态", 26 | "Last sync:" => "最后同步:", 27 | "Size of stored data:" => "存储数据大小:", 28 | "No data stored yet." => "尚未存储数据。", 29 | "Number of synced devices:" => "已同步的设备数:", 30 | "Delete Sync data" => "删除同步数据", 31 | "Attention! This will delete all your Sync data on the server." => "注意!这样将会删除你在服务器上的所有同步数据。" 32 | ); 33 | $PLURAL_FORMS = "nplurals=1; plural=0;"; 34 | -------------------------------------------------------------------------------- /l10n/zh_HK.php: -------------------------------------------------------------------------------- 1 | "電子郵件:", 4 | "Password:" => "密碼:", 5 | "Server address:" => "伺服器地址:", 6 | "Last sync:" => "最後同步:" 7 | ); 8 | $PLURAL_FORMS = "nplurals=1; plural=0;"; 9 | -------------------------------------------------------------------------------- /l10n/zh_TW.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "mozilla_sync", 3 | { 4 | "Failed to delete storage" : "刪除儲存空間失敗", 5 | "Failed to delete user" : "刪除使用者失敗", 6 | "Storage deleted" : "已刪除儲存空間", 7 | "User not found" : "找不到使用者", 8 | "Restriction saved" : "限制已儲存", 9 | "Invalid input" : "無效的輸入", 10 | "Auto create sync account enabled" : "自動建立同步帳號已啟用", 11 | "Auto create sync account disabled" : "自動建立同步帳號已停用", 12 | "Sync email saved" : "同步 email 已儲存", 13 | "Quota saved" : "配額已儲存", 14 | "Mozilla Sync" : "Mozilla 同步", 15 | "Restrict to group" : "群組限制", 16 | "When activated, only members of this group can access Mozilla Sync." : "當被啟動後,只有群組內的會員可以存取 Mozilla 同步。", 17 | "Sync quota" : "同步配額", 18 | "Set the value to 0 for unlimited quota." : "如果想解除容量限制,請將這個值設爲 0", 19 | "Auto create sync account" : "自動建立同步帳號", 20 | "When activated, the Mozilla Sync registration API will be disabled and instead accounts will be auto created using a user's existing credentials" : "不使用Mozilla同步API,同步帳號將由使用者已有的憑證建立。", 21 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." : "錯誤!您不被允許使用 Mozilla 同步!您必需成為 %s 群組中的一員。", 22 | "To use Mozilla Sync enter the credentials in to Mozilla Sync client" : "要使用Mozilla Sync,請在Mozilla Sync客戶端輸入憑證", 23 | "To set up Mozilla Sync create a new Sync account in Firefox." : "設定 Mozilla Sync 之前請於 Firefox 內創立一個同步帳號。", 24 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." : "Mozilla 同步已設定完畢,您可以從 Mozilla 的裝置配對服務或手動添加額外的裝置。", 25 | "Email:" : "Email:", 26 | "Has to be unique among all Sync users" : "每個使用者皆需要為不同值", 27 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." : "錯誤!偵測到重複的電子信箱位置!在 Mozilla 同步中電子信箱必須是獨一無二的。", 28 | "Password:" : "密碼:", 29 | "Use your ownCloud account password" : "使用您的 ownCloud 帳號密碼", 30 | "Server address:" : "伺服器位址:", 31 | "Sync Status" : "同步處理狀態", 32 | "Last sync:" : "最後同步:", 33 | "Size of stored data:" : "已儲存的檔案大小:", 34 | "No data stored yet." : "尚無資料被儲存。", 35 | "Number of synced devices:" : "已同步的裝置數:", 36 | "Delete Sync data" : "刪除同步資訊", 37 | "Attention! This will delete all your Sync data on the server." : "注意!這個動作將刪除所有您位於伺服器的同步資料。" 38 | }, 39 | "nplurals=1; plural=0;"); 40 | -------------------------------------------------------------------------------- /l10n/zh_TW.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Failed to delete storage" : "刪除儲存空間失敗", 3 | "Failed to delete user" : "刪除使用者失敗", 4 | "Storage deleted" : "已刪除儲存空間", 5 | "User not found" : "找不到使用者", 6 | "Restriction saved" : "限制已儲存", 7 | "Invalid input" : "無效的輸入", 8 | "Auto create sync account enabled" : "自動建立同步帳號已啟用", 9 | "Auto create sync account disabled" : "自動建立同步帳號已停用", 10 | "Sync email saved" : "同步 email 已儲存", 11 | "Quota saved" : "配額已儲存", 12 | "Mozilla Sync" : "Mozilla 同步", 13 | "Restrict to group" : "群組限制", 14 | "When activated, only members of this group can access Mozilla Sync." : "當被啟動後,只有群組內的會員可以存取 Mozilla 同步。", 15 | "Sync quota" : "同步配額", 16 | "Set the value to 0 for unlimited quota." : "如果想解除容量限制,請將這個值設爲 0", 17 | "Auto create sync account" : "自動建立同步帳號", 18 | "When activated, the Mozilla Sync registration API will be disabled and instead accounts will be auto created using a user's existing credentials" : "不使用Mozilla同步API,同步帳號將由使用者已有的憑證建立。", 19 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." : "錯誤!您不被允許使用 Mozilla 同步!您必需成為 %s 群組中的一員。", 20 | "To use Mozilla Sync enter the credentials in to Mozilla Sync client" : "要使用Mozilla Sync,請在Mozilla Sync客戶端輸入憑證", 21 | "To set up Mozilla Sync create a new Sync account in Firefox." : "設定 Mozilla Sync 之前請於 Firefox 內創立一個同步帳號。", 22 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." : "Mozilla 同步已設定完畢,您可以從 Mozilla 的裝置配對服務或手動添加額外的裝置。", 23 | "Email:" : "Email:", 24 | "Has to be unique among all Sync users" : "每個使用者皆需要為不同值", 25 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." : "錯誤!偵測到重複的電子信箱位置!在 Mozilla 同步中電子信箱必須是獨一無二的。", 26 | "Password:" : "密碼:", 27 | "Use your ownCloud account password" : "使用您的 ownCloud 帳號密碼", 28 | "Server address:" : "伺服器位址:", 29 | "Sync Status" : "同步處理狀態", 30 | "Last sync:" : "最後同步:", 31 | "Size of stored data:" : "已儲存的檔案大小:", 32 | "No data stored yet." : "尚無資料被儲存。", 33 | "Number of synced devices:" : "已同步的裝置數:", 34 | "Delete Sync data" : "刪除同步資訊", 35 | "Attention! This will delete all your Sync data on the server." : "注意!這個動作將刪除所有您位於伺服器的同步資料。" 36 | },"pluralForm" :"nplurals=1; plural=0;" 37 | } -------------------------------------------------------------------------------- /l10n/zh_TW.php: -------------------------------------------------------------------------------- 1 | "刪除儲存空間失敗", 4 | "Failed to delete user" => "刪除使用者失敗", 5 | "Storage deleted" => "已刪除儲存空間", 6 | "User not found" => "找不到使用者", 7 | "Restriction saved" => "限制已儲存", 8 | "Invalid input" => "無效的輸入", 9 | "Auto create sync account enabled" => "自動建立同步帳號已啟用", 10 | "Auto create sync account disabled" => "自動建立同步帳號已停用", 11 | "Sync email saved" => "同步 email 已儲存", 12 | "Quota saved" => "配額已儲存", 13 | "Mozilla Sync" => "Mozilla 同步", 14 | "Restrict to group" => "群組限制", 15 | "When activated, only members of this group can access Mozilla Sync." => "當被啟動後,只有群組內的會員可以存取 Mozilla 同步。", 16 | "Sync quota" => "同步配額", 17 | "Set the value to 0 for unlimited quota." => "如果想解除容量限制,請將這個值設爲 0", 18 | "Auto create sync account" => "自動建立同步帳號", 19 | "When activated, the Mozilla Sync registration API will be disabled and instead accounts will be auto created using a user's existing credentials" => "不使用Mozilla同步API,同步帳號將由使用者已有的憑證建立。", 20 | "Error! You are not allowed to use Mozilla Sync! You need to be a member of the %s group." => "錯誤!您不被允許使用 Mozilla 同步!您必需成為 %s 群組中的一員。", 21 | "To use Mozilla Sync enter the credentials in to Mozilla Sync client" => "要使用Mozilla Sync,請在Mozilla Sync客戶端輸入憑證", 22 | "To set up Mozilla Sync create a new Sync account in Firefox." => "設定 Mozilla Sync 之前請於 Firefox 內創立一個同步帳號。", 23 | "Mozilla Sync is set up, additional devices can be added via Mozilla's device pairing service or manually." => "Mozilla 同步已設定完畢,您可以從 Mozilla 的裝置配對服務或手動添加額外的裝置。", 24 | "Email:" => "Email:", 25 | "Has to be unique among all Sync users" => "每個使用者皆需要為不同值", 26 | "Error! Duplicate email addresses detected! Email addresses need to be unique for Mozilla Sync to work." => "錯誤!偵測到重複的電子信箱位置!在 Mozilla 同步中電子信箱必須是獨一無二的。", 27 | "Password:" => "密碼:", 28 | "Use your ownCloud account password" => "使用您的 ownCloud 帳號密碼", 29 | "Server address:" => "伺服器位址:", 30 | "Sync Status" => "同步處理狀態", 31 | "Last sync:" => "最後同步:", 32 | "Size of stored data:" => "已儲存的檔案大小:", 33 | "No data stored yet." => "尚無資料被儲存。", 34 | "Number of synced devices:" => "已同步的裝置數:", 35 | "Delete Sync data" => "刪除同步資訊", 36 | "Attention! This will delete all your Sync data on the server." => "注意!這個動作將刪除所有您位於伺服器的同步資料。" 37 | ); 38 | $PLURAL_FORMS = "nplurals=1; plural=0;"; 39 | -------------------------------------------------------------------------------- /lib/inputdata.php: -------------------------------------------------------------------------------- 1 | parseValidFlag = true; 28 | 29 | $input = ''; 30 | 31 | if ($jsonInput === self::NO_VALUE) { 32 | $input = file_get_contents('php://input'); 33 | } else { 34 | $input = $jsonInput; 35 | } 36 | 37 | $parseResult = json_decode($input, true); 38 | 39 | if (is_null($parseResult)) { 40 | $this->parseValidFlag = false; 41 | } else { 42 | $this->inputArray = $parseResult; 43 | } 44 | } 45 | 46 | /** 47 | * Return true if parsed json data are correct 48 | * otherwise false 49 | * 50 | * @return bool 51 | */ 52 | public function isValid() { 53 | return $this->parseValidFlag; 54 | } 55 | 56 | /** 57 | * @brief Check if there is value name in input data 58 | * 59 | * @param string $valueName 60 | * @return boolean 61 | */ 62 | public function hasValue($valueName) { 63 | return array_key_exists($valueName, $this->inputArray) && $this->inputArray[$valueName] != null; 64 | } 65 | 66 | /** 67 | * @brief Check if there are values in input data 68 | * 69 | * @param array $valuesNameArray 70 | * @return boolean 71 | */ 72 | public function hasValues($valuesNameArray) { 73 | foreach ($valuesNameArray as $valueName) { 74 | if (!$this->hasValue($valueName)) { 75 | return false; 76 | } 77 | } 78 | return true; 79 | } 80 | 81 | /** 82 | * @brief Return value by key 83 | * 84 | * @param string $valueName 85 | */ 86 | public function getValue($valueName) { 87 | return $this->inputArray[$valueName]; 88 | } 89 | 90 | /** 91 | * @brief Return input data as array 92 | */ 93 | public function getInputArray() { 94 | return $this->inputArray; 95 | } 96 | 97 | /** 98 | * arrayaccess interface set function 99 | * No operation, input data is read only array 100 | */ 101 | public function offsetSet($offset, $value) {} 102 | 103 | /** 104 | * arrayaccess interface unset function 105 | * No operation, input data is read only array 106 | */ 107 | public function offsetUnset($offset) {} 108 | 109 | /** 110 | * arrayaccess interface exists function 111 | */ 112 | public function offsetExists($offset) { 113 | return $this->hasValue($offset); 114 | } 115 | 116 | /** 117 | * arrayaccess interface get function 118 | */ 119 | public function offsetGet($offset) { 120 | return $this->getValue($offset); 121 | } 122 | 123 | /** 124 | * Flag for checking parsing result 125 | */ 126 | private $parseValidFlag; 127 | 128 | private $inputArray; 129 | } 130 | 131 | /* vim: set ts=4 sw=4 tw=80 noet : */ 132 | -------------------------------------------------------------------------------- /lib/service.php: -------------------------------------------------------------------------------- 1 | inputData)) { 23 | $this->inputData = new InputData(); 24 | } 25 | return $this->inputData; 26 | } 27 | 28 | protected $urlParser; 29 | protected $inputData; 30 | } 31 | 32 | /* vim: set ts=4 sw=4 tw=80 noet : */ 33 | -------------------------------------------------------------------------------- /settings.php: -------------------------------------------------------------------------------- 1 | assign('mozillaSyncEmail', $email); 19 | $tmpl->assign('syncaddress', OCA\mozilla_sync\Utils::getServerAddress()); 20 | 21 | return $tmpl->fetchPage(); 22 | 23 | /* vim: set ts=4 sw=4 tw=80 noet : */ 24 | -------------------------------------------------------------------------------- /templates/admin.php: -------------------------------------------------------------------------------- 1 |
2 |

t('Mozilla Sync')); ?>

3 |

4 | 9 | /> 10 | 11 | 19 |
20 | t("When activated, only members of this group can access Mozilla Sync."));?> 21 |

22 |
23 |

24 | 25 | kB 27 |
28 | t("Set the value to 0 for unlimited quota."));?> 29 |

30 |
31 |

32 | 37 | /> 38 | 39 |
40 | t("When activated, the Mozilla Sync registration API will be disabled and instead accounts will be auto created using a user's existing credentials"));?> 41 |

42 |
43 | -------------------------------------------------------------------------------- /tests/inputdata.php: -------------------------------------------------------------------------------- 1 | assertTrue($InputData->isValid()); 12 | 13 | $this->assertTrue($InputData->hasValues(array('password', 'email'))); 14 | $this->assertFalse($InputData->hasValues(array('password', 'email', 'captcha-challenge'))); 15 | 16 | $this->assertTrue($InputData->hasValue('password')); 17 | $this->assertTrue(isset($InputData['password'])); 18 | $this->assertTrue($InputData->getValue('password') === 'tajnehaslo'); 19 | $this->assertTrue($InputData['password'] === 'tajnehaslo'); 20 | 21 | $this->assertTrue($InputData->hasValue('email')); 22 | $this->assertTrue(isset($InputData['email'])); 23 | $this->assertTrue($InputData->getValue('email') === 'test1234@test1234.pl'); 24 | $this->assertTrue($InputData['email'] === 'test1234@test1234.pl'); 25 | 26 | $this->assertFalse($InputData->hasValue('captcha-challenge')); 27 | $this->assertFalse(isset($InputData['captcha-challenge'])); 28 | $this->assertTrue($InputData->getValue('captcha-challenge') === null); 29 | $this->assertTrue($InputData['captcha-challenge'] === null); 30 | 31 | } 32 | 33 | function test_WrongInput() { 34 | 35 | $json_input = '{"password":"tajnehasl'; 36 | 37 | $InputData = new OCA_mozilla_sync\InputData($json_input); 38 | $this->assertFalse($InputData->isValid()); 39 | } 40 | } 41 | 42 | /* vim: set ts=4 sw=4 tw=80 noet : */ 43 | -------------------------------------------------------------------------------- /tests/outputdata.php: -------------------------------------------------------------------------------- 1 | assertTrue(OCA_mozilla_sync\OutputData::$outputBuffer === 'test 1'); 13 | } 14 | 15 | function test_JsonOutput() { 16 | 17 | OCA_mozilla_sync\OutputData::$outputFlag = OCA_mozilla_sync\OutputData::ConstOutputBuffer; 18 | OCA_mozilla_sync\OutputData::$outputBuffer = ''; 19 | 20 | $outputArray = array( 21 | "sortindex" => 1000000, 22 | "id" => "menu", 23 | "modified" => 1338657406.35 24 | ); 25 | 26 | $outputBuffer = "{\"sortindex\":1000000,\"id\":\"menu\",\"modified\":1338657406.35}\n"; 27 | 28 | OCA_mozilla_sync\OutputData::write($outputArray); 29 | $this->assertTrue(OCA_mozilla_sync\OutputData::$outputBuffer === $outputBuffer); 30 | } 31 | 32 | function test_JsonOutputNoIndexArray() { 33 | 34 | OCA_mozilla_sync\OutputData::$outputFlag = OCA_mozilla_sync\OutputData::ConstOutputBuffer; 35 | OCA_mozilla_sync\OutputData::$outputBuffer = ''; 36 | 37 | $outputArray = array(); 38 | $outputArray[] = "element1"; 39 | $outputArray[] = "element2"; 40 | $outputArray[] = "element3"; 41 | 42 | $outputBuffer = "[\"element1\",\"element2\",\"element3\"]\n"; 43 | 44 | OCA_mozilla_sync\OutputData::write($outputArray); 45 | $this->assertTrue(OCA_mozilla_sync\OutputData::$outputBuffer === $outputBuffer); 46 | } 47 | 48 | function test_EmptyArray() { 49 | OCA_mozilla_sync\OutputData::$outputFlag = OCA_mozilla_sync\OutputData::ConstOutputBuffer; 50 | OCA_mozilla_sync\OutputData::$outputBuffer = ''; 51 | 52 | OCA_mozilla_sync\OutputData::write( array() ); 53 | $this->assertTrue(OCA_mozilla_sync\OutputData::$outputBuffer === "[]\n"); 54 | } 55 | } 56 | 57 | /* vim: set ts=4 sw=4 tw=80 noet : */ 58 | -------------------------------------------------------------------------------- /tests/user.php: -------------------------------------------------------------------------------- 1 | user = uniqid('test_'); 9 | } 10 | 11 | function test() { 12 | // TODO 13 | } 14 | } 15 | 16 | /* vim: set ts=4 sw=4 tw=80 noet : */ 17 | --------------------------------------------------------------------------------