├── l10n ├── .gitignore ├── jv.php ├── xgettextfiles ├── my_MM.php ├── fi.php ├── ta_IN.php ├── hy.php ├── be.php ├── pl_PL.php ├── af_ZA.php ├── es_CL.php ├── .tx │ └── config ├── eu_ES.php ├── pa.php ├── bs.php ├── hi.php ├── de_AT.php ├── ur_PK.php ├── zh_HK.php ├── ru_RU.php ├── te.php ├── ms_MY.php ├── hr.php ├── ku_IQ.php ├── lt_LT.php ├── lt_LT.json ├── lt_LT.js ├── zh_CN.php ├── zh_TW.php ├── ta_LK.php ├── ug.php ├── ka_GE.php ├── zh_CN.json ├── bn_BD.php ├── km.php ├── ta_LK.json ├── zh_CN.js ├── ug.json ├── si_LK.php ├── ka_GE.json ├── ar.php ├── zh_TW.json ├── ta_LK.js ├── ug.js ├── bn_IN.php ├── cy_GB.php ├── ko.php ├── ka_GE.js ├── zh_TW.js ├── km.json ├── bn_BD.json ├── es_AR.php ├── eu.php ├── bn_BD.js ├── km.js ├── si_LK.json ├── ar.json ├── ja.php ├── bn_IN.json ├── cy_GB.json ├── si_LK.js ├── ar.js ├── ko.json ├── cy_GB.js ├── bn_IN.js ├── es_AR.json ├── eu.json ├── ko.js ├── es_AR.js ├── eu.js ├── ja.json ├── ja.js ├── vi.php ├── he.php ├── en_GB.php ├── sv.php ├── id.php ├── vi.json ├── sk_SK.php ├── da.php ├── eo.php ├── fa.php ├── vi.js ├── et_EE.php ├── he.json ├── sr.php ├── sr@latin.php ├── bg_BG.php ├── nn_NO.php ├── pl.php ├── th_TH.php ├── he.js ├── en_GB.json ├── sv.json ├── lv.php ├── id.json ├── nb_NO.php ├── az.php ├── ca.php ├── en_GB.js ├── sv.js ├── is.php ├── sk_SK.json ├── uk.php ├── da.json ├── id.js ├── eo.json ├── gl.php ├── mk.php ├── fa.json ├── pt_PT.php ├── sk_SK.js ├── sr.json ├── da.js ├── et_EE.json ├── sl.php ├── ast.php ├── cs_CZ.php ├── sr@latin.json ├── bg_BG.json ├── eo.js ├── nn_NO.json ├── pl.json ├── es_MX.php ├── fa.js ├── ia.php ├── oc.php ├── th_TH.json ├── et_EE.js ├── hu_HU.php └── sr.js ├── img ├── loading.gif ├── bookmarks.png ├── triangle-e.png ├── triangle-w.png └── bookmarks.svg ├── tests ├── res │ └── amazonHtml.file ├── bootstrap.php ├── phpunit.xml └── publiccontroller_test.php ├── .scrutinizer.yml ├── controller ├── lib │ ├── helper.php │ ├── exportresponse.php │ └── search.php └── rest │ └── tagscontroller.php ├── appinfo ├── info.xml └── app.php ├── js ├── 3rdparty │ └── js_tpl.js └── settings.js ├── templates └── settings.php ├── CONTRIBUTING.md └── README.md /l10n/.gitignore: -------------------------------------------------------------------------------- 1 | *.po 2 | -------------------------------------------------------------------------------- /img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud-archive/bookmarks/HEAD/img/loading.gif -------------------------------------------------------------------------------- /img/bookmarks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud-archive/bookmarks/HEAD/img/bookmarks.png -------------------------------------------------------------------------------- /img/triangle-e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud-archive/bookmarks/HEAD/img/triangle-e.png -------------------------------------------------------------------------------- /img/triangle-w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud-archive/bookmarks/HEAD/img/triangle-w.png -------------------------------------------------------------------------------- /tests/res/amazonHtml.file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud-archive/bookmarks/HEAD/tests/res/amazonHtml.file -------------------------------------------------------------------------------- /l10n/jv.php: -------------------------------------------------------------------------------- 1 | "Ngganti" 4 | ); 5 | $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 6 | -------------------------------------------------------------------------------- /l10n/xgettextfiles: -------------------------------------------------------------------------------- 1 | ../appinfo/app.php 2 | ../lib/search.php 3 | ../templates/settings.php 4 | ../templates/addBm.php 5 | ../templates/list.php 6 | -------------------------------------------------------------------------------- /l10n/my_MM.php: -------------------------------------------------------------------------------- 1 | "ပယ်ဖျက်မည်", 4 | "Add" => "ပေါင်းထည့်" 5 | ); 6 | $PLURAL_FORMS = "nplurals=1; plural=0;"; 7 | -------------------------------------------------------------------------------- /l10n/fi.php: -------------------------------------------------------------------------------- 1 | "tallentaa", 4 | "Settings" => "asetukset" 5 | ); 6 | $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 7 | -------------------------------------------------------------------------------- /l10n/ta_IN.php: -------------------------------------------------------------------------------- 1 | "அமைப்புகள்", 4 | "Export" => "ஏற்றுமதி" 5 | ); 6 | $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 7 | -------------------------------------------------------------------------------- /l10n/hy.php: -------------------------------------------------------------------------------- 1 | "Փակել", 4 | "Save" => "Պահպանել", 5 | "Delete" => "Ջնջել" 6 | ); 7 | $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 8 | -------------------------------------------------------------------------------- /l10n/be.php: -------------------------------------------------------------------------------- 1 | "Налады" 4 | ); 5 | $PLURAL_FORMS = "nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; 6 | -------------------------------------------------------------------------------- /l10n/pl_PL.php: -------------------------------------------------------------------------------- 1 | "Zapisz", 4 | "Settings" => "Ustawienia" 5 | ); 6 | $PLURAL_FORMS = "nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; 7 | -------------------------------------------------------------------------------- /l10n/af_ZA.php: -------------------------------------------------------------------------------- 1 | "Waarskuwing", 4 | "Cancel" => "Kanseleer", 5 | "Add" => "Voeg by", 6 | "Settings" => "Instellings" 7 | ); 8 | $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 9 | -------------------------------------------------------------------------------- /l10n/es_CL.php: -------------------------------------------------------------------------------- 1 | "Cancelar", 4 | "Settings" => "Configuración", 5 | "Export" => "Exportar", 6 | "Import" => "Importar" 7 | ); 8 | $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 9 | -------------------------------------------------------------------------------- /l10n/.tx/config: -------------------------------------------------------------------------------- 1 | [main] 2 | host = https://www.transifex.com 3 | lang_map = ja_JP: ja 4 | 5 | [owncloud.bookmarks] 6 | file_filter = /bookmarks.po 7 | source_file = templates/bookmarks.pot 8 | source_lang = en 9 | type = PO 10 | 11 | -------------------------------------------------------------------------------- /l10n/eu_ES.php: -------------------------------------------------------------------------------- 1 | "Gorde", 4 | "Delete" => "Ezabatu", 5 | "Edit" => "Aldatu", 6 | "Cancel" => "Ezeztatu", 7 | "Export" => "Esportazio" 8 | ); 9 | $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 10 | -------------------------------------------------------------------------------- /l10n/pa.php: -------------------------------------------------------------------------------- 1 | "ਬੁੱਕਮਾਰ", 4 | "Warning" => "ਚੇਤਾਵਨੀ", 5 | "Delete" => "ਹਟਾਓ", 6 | "Cancel" => "ਰੱਦ ਕਰੋ", 7 | "Settings" => "ਸੈਟਿੰਗ" 8 | ); 9 | $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 10 | -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- 1 | "Zatvori", 4 | "Save" => "Spasi", 5 | "Address" => "Adresa", 6 | "Add" => "Dodaj" 7 | ); 8 | $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);"; 9 | -------------------------------------------------------------------------------- /l10n/hi.php: -------------------------------------------------------------------------------- 1 | "चेतावनी ", 4 | "Close" => "बंद करें ", 5 | "Save" => "सहेजें", 6 | "Cancel" => "रद्द करें ", 7 | "Add" => "डाले", 8 | "Settings" => "सेटिंग्स" 9 | ); 10 | $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 11 | -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- 1 | filter: 2 | excluded_paths: 3 | - '3rdparty/*' 4 | - 'js/3rdparty/*' 5 | 6 | imports: 7 | - javascript 8 | - php 9 | 10 | tools: 11 | external_code_coverage: 12 | timeout: 7200 # Timeout in seconds. 120 minutes 13 | 14 | -------------------------------------------------------------------------------- /l10n/de_AT.php: -------------------------------------------------------------------------------- 1 | "Speichern", 4 | "Delete" => "Löschen", 5 | "Edit" => "Bearbeiten", 6 | "Cancel" => "Abbrechen", 7 | "Settings" => "Einstellungen", 8 | "Import" => "Importieren" 9 | ); 10 | $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 11 | -------------------------------------------------------------------------------- /l10n/ur_PK.php: -------------------------------------------------------------------------------- 1 | "انتباہ", 4 | "Close" => "بند ", 5 | "Save" => "حفظ", 6 | "Delete" => "حذف کریں", 7 | "Edit" => "تدوین کریں", 8 | "Cancel" => "منسوخ کریں", 9 | "Add" => "شامل کریں", 10 | "Settings" => "سیٹینگز" 11 | ); 12 | $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 13 | -------------------------------------------------------------------------------- /controller/lib/helper.php: -------------------------------------------------------------------------------- 1 | "收藏", 4 | "Warning" => "警告", 5 | "Close" => "關閉", 6 | "Save" => "儲存", 7 | "Delete" => "刪除", 8 | "Edit" => "編輯", 9 | "Cancel" => "取消", 10 | "Address" => "地址", 11 | "Add" => "加入", 12 | "Settings" => "設定", 13 | "Export" => "輸出", 14 | "Import" => "導入" 15 | ); 16 | $PLURAL_FORMS = "nplurals=1; plural=0;"; 17 | -------------------------------------------------------------------------------- /l10n/ru_RU.php: -------------------------------------------------------------------------------- 1 | "Закладки", 4 | "Warning" => "Предупреждение", 5 | "Save" => "Сохранить", 6 | "Delete" => "Удалить", 7 | "Edit" => "Редактировать", 8 | "Cancel" => "Отмена", 9 | "Settings" => "Настройки" 10 | ); 11 | $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);"; 12 | -------------------------------------------------------------------------------- /l10n/te.php: -------------------------------------------------------------------------------- 1 | "హెచ్చరిక", 4 | "Close" => "మూసివేయి", 5 | "Save" => "భద్రపరచు", 6 | "Delete" => "తొలగించు", 7 | "Cancel" => "రద్దుచేయి", 8 | "Address" => "చిరునామా", 9 | "Add" => "చేర్చు", 10 | "Settings" => "అమరికలు", 11 | "Export" => "ఎగుమతించు", 12 | "Import" => "దిగుమతించు" 13 | ); 14 | $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 15 | -------------------------------------------------------------------------------- /l10n/ms_MY.php: -------------------------------------------------------------------------------- 1 | "Tanda", 4 | "Warning" => "Amaran", 5 | "Close" => "Tutup", 6 | "Save" => "Simpan", 7 | "Delete" => "Padam", 8 | "Edit" => "Sunting", 9 | "Cancel" => "Batal", 10 | "Address" => "Alamat", 11 | "Add" => "Tambah", 12 | "Settings" => "Tetapan", 13 | "Export" => "Export", 14 | "Import" => "Import" 15 | ); 16 | $PLURAL_FORMS = "nplurals=1; plural=0;"; 17 | -------------------------------------------------------------------------------- /l10n/hr.php: -------------------------------------------------------------------------------- 1 | "Zabilješke", 4 | "Close" => "Zatvori", 5 | "Save" => "Snimi", 6 | "Delete" => "Obriši", 7 | "Edit" => "Uredi", 8 | "Cancel" => "Odustani", 9 | "Address" => "Adresa", 10 | "Add" => "Dodaj", 11 | "Settings" => "Postavke", 12 | "Export" => "Izvoz", 13 | "Import" => "Uvezi" 14 | ); 15 | $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;"; 16 | -------------------------------------------------------------------------------- /l10n/ku_IQ.php: -------------------------------------------------------------------------------- 1 | "دڵخوازه‌کان", 4 | "Tags" => "تاگه‌کان", 5 | "Warning" => "ئاگاداری", 6 | "Bookm." => "نیشانکردن", 7 | "Close" => "داخستن", 8 | "Save" => "پاشکه‌وتکردن", 9 | "Edit" => "دەسکاریکردن", 10 | "Cancel" => "لابردن", 11 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" => "رابکێشه‌ ئه‌مه بۆ دڵخوازه‌کان له‌ وێبگه‌ڕه‌که‌ت وه‌ کرته‌ بکه‌ لێی، کاتێك ده‌ته‌وێت ماڵپه‌ڕێك دڵخواز بکه‌ی به‌خێرای:", 12 | "Address" => "ناونیشان", 13 | "Add" => "زیادکردن", 14 | "Settings" => "ده‌ستكاری", 15 | "You have no bookmarks" => "تۆ دڵخوازت نیه", 16 | "Export" => "هه‌ناردن", 17 | "Import" => "هێنان" 18 | ); 19 | $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 20 | -------------------------------------------------------------------------------- /appinfo/info.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | bookmarks 4 | Bookmarks 5 | Bookmark manager for ownCloud 6 | AGPL 7 | Arthur Schiwon, Marvin Thomas Rabe, Stefan Klemm 8 | 0.9.0 9 | 10 | https://doc.owncloud.org/server/9.0/user_manual/bookmarks.html 11 | 12 | productivity 13 | https://github.com/owncloud/bookmarks 14 | https://github.com/owncloud/bookmarks/issues 15 | https://github.com/owncloud/bookmarks.git 16 | 17 | 18 | 19 | 168710 20 | 21 | -------------------------------------------------------------------------------- /tests/phpunit.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | . 11 | 12 | 13 | 14 | 15 | ../../bookmarks 16 | 17 | ../../bookmarks/l10n 18 | ../../bookmarks/tests 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /controller/lib/exportresponse.php: -------------------------------------------------------------------------------- 1 | addHeader("Cache-Control", "private"); 16 | $this->addHeader("Content-Type", " application/stream"); 17 | $this->addHeader("Content-Length", strlen($returnstring)); 18 | $this->addHeader("Content-Disposition", "attachment; filename=" . $export_name); 19 | $this->returnstring = $returnstring; 20 | } 21 | 22 | public function render() { 23 | return $this->returnstring; 24 | } 25 | 26 | } -------------------------------------------------------------------------------- /appinfo/app.php: -------------------------------------------------------------------------------- 1 | 9 | * @author Arthur Schiwon 10 | * @author Stefan Klemm 11 | * @copyright (c) 2011, Marvin Thomas Rabe 12 | * @copyright (c) 2011, Arthur Schiwon 13 | * @copyright (c) 2014, Stefan Klemm 14 | */ 15 | 16 | namespace OCA\Bookmarks\AppInfo; 17 | 18 | $navigationEntry = function () { 19 | return [ 20 | 'id' => 'bookmarks', 21 | 'order' => 10, 22 | 'name' => \OC::$server->getL10N('bookmarks')->t('Bookmarks'), 23 | 'href' => \OC::$server->getURLGenerator()->linkToRoute('bookmarks.web_view.index'), 24 | 'icon' => \OC::$server->getURLGenerator()->imagePath('bookmarks', 'bookmarks.svg'), 25 | ]; 26 | }; 27 | \OC::$server->getNavigationManager()->add($navigationEntry); 28 | 29 | \OC::$server->getSearch()->registerProvider('OCA\Bookmarks\Controller\Lib\Search', array('apps' => array('bookmarks'))); 30 | -------------------------------------------------------------------------------- /js/3rdparty/js_tpl.js: -------------------------------------------------------------------------------- 1 | 2 | // Simple JavaScript Templating 3 | // John Resig - http://ejohn.org/ - MIT Licensed 4 | (function () { 5 | var cache = {}; 6 | 7 | this.tmpl = function tmpl(str, data) { 8 | // Figure out if we're getting a template, or if we need to 9 | // load the template - and be sure to cache the result. 10 | var fn = !/\W/.test(str) ? 11 | cache[str] = cache[str] || 12 | tmpl(document.getElementById(str).innerHTML) : 13 | // Generate a reusable function that will serve as a template 14 | // generator (and which will be cached). 15 | new Function("obj", 16 | "var p=[],print=function(){p.push.apply(p,arguments);};" + 17 | // Introduce the data as local variables using with(){} 18 | "with(obj){p.push('" + 19 | // Convert the template into pure JavaScript 20 | str 21 | .replace(/[\r\t\n]/g, " ") 22 | .split("<&").join("\t") 23 | .replace(/((^|&>)[^\t]*)'/g, "$1\r") 24 | .replace(/\t=(.*?)&>/g, "',$1,'") 25 | .split("\t").join("');") 26 | .split("&>").join("p.push('") 27 | .split("\r").join("\\'") 28 | + "');}return p.join('');"); 29 | 30 | // Provide some basic currying to the user 31 | return data ? fn(data) : fn; 32 | }; 33 | })(); 34 | -------------------------------------------------------------------------------- /l10n/lt_LT.php: -------------------------------------------------------------------------------- 1 | "Žymekliai", 4 | "Bookm." => "Žym.", 5 | "No file provided for import" => "Nepateiktas failas importavimui", 6 | "Unsupported file type for import" => "Netinkamas failo tipas importavimui", 7 | "Some Error happened." => "Įvyko keletas klaidų.", 8 | "Error" => "Klaida", 9 | "Tags" => "Žymės", 10 | "Filter by tag" => "Filtruoti pagal žymę", 11 | "Warning" => "Įspėjimas", 12 | "Import error" => "Importavimo klaida", 13 | "Import completed successfully." => "Importavimas baigtas sėkmingai.", 14 | "Uploading..." => "Įkeliama...", 15 | "Add a bookmark" => "Pridėti žymelę", 16 | "The title of the page" => "Puslapio antraštė", 17 | "The address of the page" => "Puslapio adresas", 18 | "Description of the page" => "Puslapio aprašymas", 19 | "Save" => "Išsaugoti", 20 | "Delete" => "Ištrinti", 21 | "Edit" => "Redaguoti", 22 | "Cancel" => "Atšaukti", 23 | "Add to ownCloud" => "Pridėti į ownCloud", 24 | "Address" => "Adresas", 25 | "You have no bookmarks" => "Jūs neturite žymelių", 26 | "Export & Import" => "Eksportavimas / Importavimas", 27 | "Export" => "Eksportuoti", 28 | "Import" => "Importuoti" 29 | ); 30 | $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);"; 31 | -------------------------------------------------------------------------------- /templates/settings.php: -------------------------------------------------------------------------------- 1 | 4 | * This file is licensed under the Affero General Public License version 3 or 5 | * later. 6 | * See the COPYING-README file. 7 | */ 8 | /** @var array $_ */ 9 | ?> 10 | 11 |
    12 |
  • t('Bookmarklet')); ?>
  • 13 |
    14 |
15 |
16 |
    17 |
  • 18 |
  • 19 |
  • 20 | 21 |

    22 |

    23 | 24 | 25 | t('Export & Import')); ?> 26 | 27 | 28 | 29 | 30 |
    31 | 32 | 33 | 34 |
  • 35 |
36 |
37 | -------------------------------------------------------------------------------- /l10n/lt_LT.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Bookmarks" : "Žymekliai", 3 | "Bookm." : "Žym.", 4 | "No file provided for import" : "Nepateiktas failas importavimui", 5 | "Unsupported file type for import" : "Netinkamas failo tipas importavimui", 6 | "Some Error happened." : "Įvyko keletas klaidų.", 7 | "Error" : "Klaida", 8 | "Tags" : "Žymės", 9 | "Filter by tag" : "Filtruoti pagal žymę", 10 | "Warning" : "Įspėjimas", 11 | "Import error" : "Importavimo klaida", 12 | "Import completed successfully." : "Importavimas baigtas sėkmingai.", 13 | "Uploading..." : "Įkeliama...", 14 | "Add a bookmark" : "Pridėti žymelę", 15 | "The title of the page" : "Puslapio antraštė", 16 | "The address of the page" : "Puslapio adresas", 17 | "Description of the page" : "Puslapio aprašymas", 18 | "Save" : "Išsaugoti", 19 | "Delete" : "Ištrinti", 20 | "Edit" : "Redaguoti", 21 | "Cancel" : "Atšaukti", 22 | "Add to ownCloud" : "Pridėti į ownCloud", 23 | "Address" : "Adresas", 24 | "You have no bookmarks" : "Jūs neturite žymelių", 25 | "Export & Import" : "Eksportavimas / Importavimas", 26 | "Export" : "Eksportuoti", 27 | "Import" : "Importuoti" 28 | },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);" 29 | } -------------------------------------------------------------------------------- /l10n/lt_LT.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "bookmarks", 3 | { 4 | "Bookmarks" : "Žymekliai", 5 | "Bookm." : "Žym.", 6 | "No file provided for import" : "Nepateiktas failas importavimui", 7 | "Unsupported file type for import" : "Netinkamas failo tipas importavimui", 8 | "Some Error happened." : "Įvyko keletas klaidų.", 9 | "Error" : "Klaida", 10 | "Tags" : "Žymės", 11 | "Filter by tag" : "Filtruoti pagal žymę", 12 | "Warning" : "Įspėjimas", 13 | "Import error" : "Importavimo klaida", 14 | "Import completed successfully." : "Importavimas baigtas sėkmingai.", 15 | "Uploading..." : "Įkeliama...", 16 | "Add a bookmark" : "Pridėti žymelę", 17 | "The title of the page" : "Puslapio antraštė", 18 | "The address of the page" : "Puslapio adresas", 19 | "Description of the page" : "Puslapio aprašymas", 20 | "Save" : "Išsaugoti", 21 | "Delete" : "Ištrinti", 22 | "Edit" : "Redaguoti", 23 | "Cancel" : "Atšaukti", 24 | "Add to ownCloud" : "Pridėti į ownCloud", 25 | "Address" : "Adresas", 26 | "You have no bookmarks" : "Jūs neturite žymelių", 27 | "Export & Import" : "Eksportavimas / Importavimas", 28 | "Export" : "Eksportuoti", 29 | "Import" : "Importuoti" 30 | }, 31 | "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);"); 32 | -------------------------------------------------------------------------------- /l10n/zh_CN.php: -------------------------------------------------------------------------------- 1 | "书签", 4 | "Bookm." => "书签", 5 | "No file provided for import" => "未提供导入文件", 6 | "Unsupported file type for import" => "不支持导入的文件类型", 7 | "Some Error happened." => "出错了。", 8 | "Error" => "错误", 9 | "Tags" => "标签", 10 | "Filter by tag" => "按标签过滤", 11 | "Are you sure you want to remove this bookmark?" => "您确定要删除改书签吗?", 12 | "Warning" => "警告", 13 | "Are you sure you want to remove this tag from every entry?" => "确定要从所有条目中移除此标签?", 14 | "Import error" => "导入错误", 15 | "Import completed successfully." => "导入成功完成。", 16 | "Uploading..." => "上传中...", 17 | "Add a bookmark" => "新增一个书签", 18 | "This URL is already bookmarked! Overwrite?" => "当前地址已经存在!确认覆盖吗?", 19 | "The title of the page" => "页面名称", 20 | "The address of the page" => "页面地址", 21 | "Description of the page" => "页面描述", 22 | "Save" => "保存", 23 | "Delete" => "删除", 24 | "Edit" => "编辑", 25 | "Cancel" => "取消", 26 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" => "拖曳此处到您的浏览器书签处,点击可以将网页快速增加到书签中。", 27 | "Add to ownCloud" => "增加到 ownCloud", 28 | "Address" => "地址", 29 | "Filterable Tags" => "可过滤标签", 30 | "You have no bookmarks" => "您暂无书签", 31 | "You can also import a bookmark file" => "您可以导入书签文件", 32 | "Bookmarklet" => "书签", 33 | "Export & Import" => "导入导出", 34 | "Export" => "导出", 35 | "Import" => "导入" 36 | ); 37 | $PLURAL_FORMS = "nplurals=1; plural=0;"; 38 | -------------------------------------------------------------------------------- /l10n/zh_TW.php: -------------------------------------------------------------------------------- 1 | "書籤", 4 | "Bookm." => "書籤", 5 | "No file provided for import" => "沒有提供匯入用的檔案", 6 | "Unsupported file type for import" => "不支援這種檔案類型的匯入", 7 | "Some Error happened." => "發生了一些錯誤", 8 | "Error" => "錯誤", 9 | "Tags" => "標籤", 10 | "Filter by tag" => "依標籤篩選", 11 | "Are you sure you want to remove this bookmark?" => "你確定你要移除此書籤?", 12 | "Warning" => "警告", 13 | "Are you sure you want to remove this tag from every entry?" => "您確定要從每個項目中移除這個標籤嗎?", 14 | "Import error" => "匯入錯誤", 15 | "Import completed successfully." => "匯入成功完成。", 16 | "Uploading..." => "上傳中...", 17 | "Add a bookmark" => "新增書籤", 18 | "This URL is already bookmarked! Overwrite?" => "此網址已經存在書籤中,確定要複寫?", 19 | "The title of the page" => "頁面標題", 20 | "The address of the page" => "頁面的位址", 21 | "Description of the page" => "頁面說明", 22 | "Save" => "儲存", 23 | "Delete" => "刪除", 24 | "Edit" => "編輯", 25 | "Cancel" => "取消", 26 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" => "把這個拖曳至瀏覽器的書籤列,下次您想要將某個頁面加至書籤時,點一下書籤列上面的這個項目即可。", 27 | "Add to ownCloud" => "新增至ownCloud", 28 | "Address" => "網址", 29 | "Filterable Tags" => "可篩選的標記", 30 | "You have no bookmarks" => "您還沒有任何書籤", 31 | "You can also import a bookmark file" => "你也可以匯入書籤檔案", 32 | "Bookmarklet" => "Bookmarklet", 33 | "Export & Import" => "匯出與匯入", 34 | "Export" => "匯出", 35 | "Import" => "匯入" 36 | ); 37 | $PLURAL_FORMS = "nplurals=1; plural=0;"; 38 | -------------------------------------------------------------------------------- /l10n/ta_LK.php: -------------------------------------------------------------------------------- 1 | "பக்க அடையாளங்கள்", 4 | "Bookm." => "பக்க அடையாளங்கள்", 5 | "Unsupported file type for import" => "இறக்குமதிக்கு ஆதரவளிக்காத கோப்பு வகை", 6 | "Error" => "வழு", 7 | "Tags" => "சீட்டுகள்", 8 | "Filter by tag" => "சீட்டுகளால் வடிகட்டுக", 9 | "Warning" => "எச்சரிக்கை", 10 | "Are you sure you want to remove this tag from every entry?" => "ஒவ்வொரு நுழைவின் போதும் இந்த சீட்டை கட்டாயம் அகற்ற வேண்டுமா?", 11 | "Import completed successfully." => "இறக்குமதி வெற்றிகரமாக நிறைவேற்றப்பட்டது.", 12 | "Uploading..." => "பதிவேற்றல்...", 13 | "Add a bookmark" => "பக்க அடையாளம் ஒன்றை சேர்க்க", 14 | "The title of the page" => "பக்கத்தி்ன் தலைப்பு", 15 | "The address of the page" => "பக்கத்தின் முகவரி", 16 | "Description of the page" => "பக்கத்தின் விவரிப்பு", 17 | "Save" => "சேமிக்க", 18 | "Delete" => "அழிக்க", 19 | "Edit" => "தொகுக்க", 20 | "Cancel" => "இரத்து செய்க", 21 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" => "உங்களுக்கு ஒரு வலைய பக்கத்தை விரைவாக பக்க அடையாளப்படுத்துவதற்கு அதை உங்களுடைய உலாவியின் பக்க அடையாளங்களில் இழுத்து விட்டு சொடக்குக", 22 | "Address" => "முகவரி", 23 | "You have no bookmarks" => "உங்களிடம் பக்க அடையாளங்கள் இல்லை ", 24 | "Bookmarklet" => "பக்க அடையாளங்கள்", 25 | "Export & Import" => "ஏற்றுமதி மற்றும் இறக்குமதி", 26 | "Export" => "ஏற்றுமதி", 27 | "Import" => "இறக்குமதி" 28 | ); 29 | $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 30 | -------------------------------------------------------------------------------- /l10n/ug.php: -------------------------------------------------------------------------------- 1 | "خەتكۈچلەر", 4 | "Bookm." => "خەتكۈچ.", 5 | "No file provided for import" => "ئەكىرىشكە ھېچقانداق ھۆججەت تەمىنلەنمىگەن", 6 | "Unsupported file type for import" => "ئەكىرىشنى قوللىمايدىغان ھۆججەت تىپى", 7 | "Error" => "خاتالىق", 8 | "Tags" => "بەلگەلەر", 9 | "Filter by tag" => "بەلگە بويىچە سۈز", 10 | "Warning" => "ئاگاھلاندۇرۇش", 11 | "Are you sure you want to remove this tag from every entry?" => "بۇ بەلگىنى ھەممە تۈرلەردىن راستىنلا چىقىرىۋېتەمسىز؟", 12 | "Import error" => "ئەكىرىش خاتالىقى", 13 | "Import completed successfully." => "ئەكىرىش مۇۋەپپەقىيەتلىك تاماملاندى.", 14 | "Uploading..." => "يۈكلەۋاتىدۇ…", 15 | "Add a bookmark" => "خەتكۈچتىن بىرنى قوش", 16 | "The title of the page" => "بۇ بەتنىڭ ماۋزۇسى", 17 | "The address of the page" => "بەتنىڭ ئادرېسى", 18 | "Description of the page" => "بەتنىڭ چۈشەندۈرۈلۈشى", 19 | "Save" => "ساقلا", 20 | "Delete" => "ئۆچۈر", 21 | "Edit" => "تەھرىر", 22 | "Cancel" => "ۋاز كەچ", 23 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" => "سىز تور بەتنى تېز سۈرئەتتە خەتكۈچكە قوشماقچى بولغاندا، بۇنى توركۆرگۈڭىزنىڭ خەتكۈچىگە سۆرەپ، ئۇنى چېكىڭ، ", 24 | "Address" => "ئادرېس", 25 | "You have no bookmarks" => "ھېچقانداق خەتكۈچىڭىز يوق", 26 | "Bookmarklet" => "خەتكۈچ", 27 | "Export & Import" => "ئەكىر ياكى چىقار", 28 | "Export" => "چىقار", 29 | "Import" => "ئەكىر" 30 | ); 31 | $PLURAL_FORMS = "nplurals=1; plural=0;"; 32 | -------------------------------------------------------------------------------- /l10n/ka_GE.php: -------------------------------------------------------------------------------- 1 | "ბუქმარკები", 4 | "Bookm." => "Bookm.", 5 | "No file provided for import" => "არ არის ფაილი იმპორტისთვის", 6 | "Unsupported file type for import" => "დაუშვებელი ფაილის ტიპი იმპორტისთვის", 7 | "Error" => "შეცდომა", 8 | "Tags" => "ტაგები", 9 | "Filter by tag" => "ტეგების მიხედვით ფილტრაცია", 10 | "Warning" => "გაფრთხილება", 11 | "Are you sure you want to remove this tag from every entry?" => "დარწმუნებული ხართ რომ აღნიშნული ტაგის წაშლა გინდათ ყველა ჩანაწერიდა?", 12 | "Import error" => "შეცდომა იმპორტის დროს", 13 | "Import completed successfully." => "იმპორტირება დასრულებულია.", 14 | "Uploading..." => "მიმდინარეობს ატვირთვა...", 15 | "Add a bookmark" => "ბუქმარქში დამატება", 16 | "The title of the page" => "გვერდის სათაური", 17 | "The address of the page" => "გვერდის მისამართი", 18 | "Description of the page" => "გვერდის დახასიათება", 19 | "Save" => "შენახვა", 20 | "Delete" => "წაშლა", 21 | "Edit" => "რედაქტირება", 22 | "Cancel" => "უარყოფა", 23 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" => "გადაათრიეთ ეს თქვენს ბუქმარკებში თუ გინდათ რომ საითი სწრაფად დაბუქმარკდეს", 24 | "Address" => "მისამართი", 25 | "You have no bookmarks" => "თქვენ არ გაქვთ ბუქმარკები", 26 | "Bookmarklet" => "ბუქმარქლეტი", 27 | "Export & Import" => "ექსპორტ & იმპორტი", 28 | "Export" => "ექსპორტი", 29 | "Import" => "იმპორტი" 30 | ); 31 | $PLURAL_FORMS = "nplurals=1; plural=0;"; 32 | -------------------------------------------------------------------------------- /l10n/zh_CN.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Bookmarks" : "书签", 3 | "Bookm." : "书签", 4 | "No file provided for import" : "未提供导入文件", 5 | "Unsupported file type for import" : "不支持导入的文件类型", 6 | "Some Error happened." : "出错了。", 7 | "Error" : "错误", 8 | "Tags" : "标签", 9 | "Filter by tag" : "按标签过滤", 10 | "Are you sure you want to remove this bookmark?" : "您确定要删除改书签吗?", 11 | "Warning" : "警告", 12 | "Are you sure you want to remove this tag from every entry?" : "确定要从所有条目中移除此标签?", 13 | "Import error" : "导入错误", 14 | "Import completed successfully." : "导入成功完成。", 15 | "Uploading..." : "上传中...", 16 | "Add a bookmark" : "新增一个书签", 17 | "This URL is already bookmarked! Overwrite?" : "当前地址已经存在!确认覆盖吗?", 18 | "The title of the page" : "页面名称", 19 | "The address of the page" : "页面地址", 20 | "Description of the page" : "页面描述", 21 | "Save" : "保存", 22 | "Delete" : "删除", 23 | "Edit" : "编辑", 24 | "Cancel" : "取消", 25 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" : "拖曳此处到您的浏览器书签处,点击可以将网页快速增加到书签中。", 26 | "Add to ownCloud" : "增加到 ownCloud", 27 | "Address" : "地址", 28 | "Filterable Tags" : "可过滤标签", 29 | "You have no bookmarks" : "您暂无书签", 30 | "You can also import a bookmark file" : "您可以导入书签文件", 31 | "Bookmarklet" : "书签", 32 | "Export & Import" : "导入导出", 33 | "Export" : "导出", 34 | "Import" : "导入" 35 | },"pluralForm" :"nplurals=1; plural=0;" 36 | } -------------------------------------------------------------------------------- /l10n/bn_BD.php: -------------------------------------------------------------------------------- 1 | "ঠিকাসমূহ", 4 | "Bookm." => "ঠিকা", 5 | "No file provided for import" => "কোনো ফাইল আমদানীর জন্য নেই", 6 | "Unsupported file type for import" => "আমদানি করার জন্য ফাইলের ফর্ম্যাটটি সঠিক নয়", 7 | "Error" => "সমস্যা", 8 | "Tags" => "ট্যাগ", 9 | "Filter by tag" => "ট্যাগ অনুসারে ছাঁক", 10 | "Warning" => "সতর্কবাণী", 11 | "Are you sure you want to remove this tag from every entry?" => "প্রত্যেক ভুক্তি থেকে এই ট্যাগটি অপসারণ করতে আপনি কি বদ্ধপরিকর?", 12 | "Import error" => "আমদানী ভ্রান্তি", 13 | "Import completed successfully." => "আমদানি সুসম্পন্ন হয়েছে।", 14 | "Uploading..." => "আপলোড করা হচ্ছে..........", 15 | "Add a bookmark" => "ঠিকা যোগ করুন", 16 | "The title of the page" => "পৃষ্ঠার শিরোনাম", 17 | "The address of the page" => "পৃষ্ঠার ঠিকানা", 18 | "Description of the page" => "পৃষ্ঠার বিবরণ", 19 | "Save" => "সংরক্ষণ কর", 20 | "Delete" => "মুছে ফেল", 21 | "Edit" => "সম্পাদনা", 22 | "Cancel" => "বাতিল", 23 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" => "দ্রুত কোন ওয়েবপেজ ঠিকাতে সংরক্ষণ করতে চাইলে এটিকে টেনে ব্রাউজারের ঠিকাতে নিয়ে যান এবং তাতে ক্লিক করুনঃ", 24 | "Add to ownCloud" => "ownCloud এ যুক্ত কর", 25 | "Address" => "ঠিকানা", 26 | "You have no bookmarks" => "আপনার কোন ঠিক নেই", 27 | "Bookmarklet" => "অনুঠিকা", 28 | "Export & Import" => "আমদানি এবং রপ্তানি", 29 | "Export" => "রপ্তানি", 30 | "Import" => "আমদানি" 31 | ); 32 | $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 33 | -------------------------------------------------------------------------------- /l10n/km.php: -------------------------------------------------------------------------------- 1 | "ចំណាំ", 4 | "Bookm." => "ចំណាំ", 5 | "No file provided for import" => "គ្មានឯកសារ​ផ្តល់​អោយ​ ដើម្បី​នាំចូលទេ", 6 | "Unsupported file type for import" => "ប្រភេទឯកសារមិនគាំទ្រ​ដើម្បីនាំយកចូល", 7 | "Error" => "កំហុស", 8 | "Tags" => "ស្លាក", 9 | "Filter by tag" => "ច្រោះដោយស្លាក", 10 | "Warning" => "បម្រាម", 11 | "Are you sure you want to remove this tag from every entry?" => "តើអ្នក​ចង់​លុបស្លាកនេះពី​គ្រប់កន្លែង​​ទាំងអស់មែន?", 12 | "Import error" => "ការនាំយកចូលមានបញ្ហា", 13 | "Import completed successfully." => "ការនាំយកចូល គឺសម្រេចជោគជ័យ", 14 | "Uploading..." => "កំពុងដាក់បញ្ចូល...", 15 | "Add a bookmark" => "ដាក់​ចូលទៅបញ្ជីចំណាំ", 16 | "The title of the page" => "ចំណងជើង​នៃទំព័រ", 17 | "The address of the page" => "អាស័យដ្ឋាន​នៃទំព័រ", 18 | "Description of the page" => "ការពណ៌នានៃទំព័រ", 19 | "Save" => "រក្សាទុក", 20 | "Delete" => "លុប", 21 | "Edit" => "កែ", 22 | "Cancel" => "លើកលែង", 23 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" => "បើ​អ្នក​ចង់​ចំណាំ​គេហទំព័រ​ណាមួយយ៉ាង​ឆាប់​រហ័ស សូម​ទាញ​របស់​នេះ​ទៅ​ដាក់​នៅ​កន្លែង​ចំណាំ​របស់​កម្មវិធី​អ៊ីនធឺណិត ហើយ​ចុច​វា៖", 24 | "Add to ownCloud" => "ដាក់ចូល ownCloud", 25 | "Address" => "អាសយដ្ឋាន", 26 | "You have no bookmarks" => "អ្នក​មិន​មាន​ចំណាំ​ទេ", 27 | "Bookmarklet" => "បញ្ជីចំណាំ", 28 | "Export & Import" => "នាំចេញ & នាំចូល", 29 | "Export" => "នាំយកចេញ", 30 | "Import" => "នាំយកចូល" 31 | ); 32 | $PLURAL_FORMS = "nplurals=1; plural=0;"; 33 | -------------------------------------------------------------------------------- /l10n/ta_LK.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Bookmarks" : "பக்க அடையாளங்கள்", 3 | "Bookm." : "பக்க அடையாளங்கள்", 4 | "Unsupported file type for import" : "இறக்குமதிக்கு ஆதரவளிக்காத கோப்பு வகை", 5 | "Error" : "வழு", 6 | "Tags" : "சீட்டுகள்", 7 | "Filter by tag" : "சீட்டுகளால் வடிகட்டுக", 8 | "Warning" : "எச்சரிக்கை", 9 | "Are you sure you want to remove this tag from every entry?" : "ஒவ்வொரு நுழைவின் போதும் இந்த சீட்டை கட்டாயம் அகற்ற வேண்டுமா?", 10 | "Import completed successfully." : "இறக்குமதி வெற்றிகரமாக நிறைவேற்றப்பட்டது.", 11 | "Uploading..." : "பதிவேற்றல்...", 12 | "Add a bookmark" : "பக்க அடையாளம் ஒன்றை சேர்க்க", 13 | "The title of the page" : "பக்கத்தி்ன் தலைப்பு", 14 | "The address of the page" : "பக்கத்தின் முகவரி", 15 | "Description of the page" : "பக்கத்தின் விவரிப்பு", 16 | "Save" : "சேமிக்க", 17 | "Delete" : "அழிக்க", 18 | "Edit" : "தொகுக்க", 19 | "Cancel" : "இரத்து செய்க", 20 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" : "உங்களுக்கு ஒரு வலைய பக்கத்தை விரைவாக பக்க அடையாளப்படுத்துவதற்கு அதை உங்களுடைய உலாவியின் பக்க அடையாளங்களில் இழுத்து விட்டு சொடக்குக", 21 | "Address" : "முகவரி", 22 | "You have no bookmarks" : "உங்களிடம் பக்க அடையாளங்கள் இல்லை ", 23 | "Bookmarklet" : "பக்க அடையாளங்கள்", 24 | "Export & Import" : "ஏற்றுமதி மற்றும் இறக்குமதி", 25 | "Export" : "ஏற்றுமதி", 26 | "Import" : "இறக்குமதி" 27 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 28 | } -------------------------------------------------------------------------------- /l10n/zh_CN.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "bookmarks", 3 | { 4 | "Bookmarks" : "书签", 5 | "Bookm." : "书签", 6 | "No file provided for import" : "未提供导入文件", 7 | "Unsupported file type for import" : "不支持导入的文件类型", 8 | "Some Error happened." : "出错了。", 9 | "Error" : "错误", 10 | "Tags" : "标签", 11 | "Filter by tag" : "按标签过滤", 12 | "Are you sure you want to remove this bookmark?" : "您确定要删除改书签吗?", 13 | "Warning" : "警告", 14 | "Are you sure you want to remove this tag from every entry?" : "确定要从所有条目中移除此标签?", 15 | "Import error" : "导入错误", 16 | "Import completed successfully." : "导入成功完成。", 17 | "Uploading..." : "上传中...", 18 | "Add a bookmark" : "新增一个书签", 19 | "This URL is already bookmarked! Overwrite?" : "当前地址已经存在!确认覆盖吗?", 20 | "The title of the page" : "页面名称", 21 | "The address of the page" : "页面地址", 22 | "Description of the page" : "页面描述", 23 | "Save" : "保存", 24 | "Delete" : "删除", 25 | "Edit" : "编辑", 26 | "Cancel" : "取消", 27 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" : "拖曳此处到您的浏览器书签处,点击可以将网页快速增加到书签中。", 28 | "Add to ownCloud" : "增加到 ownCloud", 29 | "Address" : "地址", 30 | "Filterable Tags" : "可过滤标签", 31 | "You have no bookmarks" : "您暂无书签", 32 | "You can also import a bookmark file" : "您可以导入书签文件", 33 | "Bookmarklet" : "书签", 34 | "Export & Import" : "导入导出", 35 | "Export" : "导出", 36 | "Import" : "导入" 37 | }, 38 | "nplurals=1; plural=0;"); 39 | -------------------------------------------------------------------------------- /l10n/ug.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Bookmarks" : "خەتكۈچلەر", 3 | "Bookm." : "خەتكۈچ.", 4 | "No file provided for import" : "ئەكىرىشكە ھېچقانداق ھۆججەت تەمىنلەنمىگەن", 5 | "Unsupported file type for import" : "ئەكىرىشنى قوللىمايدىغان ھۆججەت تىپى", 6 | "Error" : "خاتالىق", 7 | "Tags" : "بەلگەلەر", 8 | "Filter by tag" : "بەلگە بويىچە سۈز", 9 | "Warning" : "ئاگاھلاندۇرۇش", 10 | "Are you sure you want to remove this tag from every entry?" : "بۇ بەلگىنى ھەممە تۈرلەردىن راستىنلا چىقىرىۋېتەمسىز؟", 11 | "Import error" : "ئەكىرىش خاتالىقى", 12 | "Import completed successfully." : "ئەكىرىش مۇۋەپپەقىيەتلىك تاماملاندى.", 13 | "Uploading..." : "يۈكلەۋاتىدۇ…", 14 | "Add a bookmark" : "خەتكۈچتىن بىرنى قوش", 15 | "The title of the page" : "بۇ بەتنىڭ ماۋزۇسى", 16 | "The address of the page" : "بەتنىڭ ئادرېسى", 17 | "Description of the page" : "بەتنىڭ چۈشەندۈرۈلۈشى", 18 | "Save" : "ساقلا", 19 | "Delete" : "ئۆچۈر", 20 | "Edit" : "تەھرىر", 21 | "Cancel" : "ۋاز كەچ", 22 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" : "سىز تور بەتنى تېز سۈرئەتتە خەتكۈچكە قوشماقچى بولغاندا، بۇنى توركۆرگۈڭىزنىڭ خەتكۈچىگە سۆرەپ، ئۇنى چېكىڭ، ", 23 | "Address" : "ئادرېس", 24 | "You have no bookmarks" : "ھېچقانداق خەتكۈچىڭىز يوق", 25 | "Bookmarklet" : "خەتكۈچ", 26 | "Export & Import" : "ئەكىر ياكى چىقار", 27 | "Export" : "چىقار", 28 | "Import" : "ئەكىر" 29 | },"pluralForm" :"nplurals=1; plural=0;" 30 | } -------------------------------------------------------------------------------- /l10n/si_LK.php: -------------------------------------------------------------------------------- 1 | "ආයාත කරන ගොනුව රුචි නොවේ", 4 | "Bookmarks" => "පිටු සළකුනු", 5 | "Tags" => "ටැග", 6 | "Filter by tag" => "ටැගය ආධාරයෙන් පෙරන්න", 7 | "Edit bookmark" => "පිටු සළකුනු සකසන්න", 8 | "Are you sure you want to remove this tag from every entry?" => "මෙම ටැගය සියළු ඇතුලත් කිරීමකින් ඉවත් කරන බව ඔබට සහතිකද", 9 | "Warning" => "අනතුරු ඇඟවිම", 10 | "Import completed successfully." => "ආයාත කිරීම සාර්ථකයි", 11 | "Uploading..." => "උඩුගත කෙරේ...", 12 | "Bookm." => "පිටුසන", 13 | "Add a bookmark" => "පිටු සළකුනක් එක් කරන්න", 14 | "Close" => "වසන්න", 15 | "The title of the page" => "පිටුවේ මාතෘකාව", 16 | "The address of the page" => "පිටුවේ ලිපිනය", 17 | "Description of the page" => "පිටුවේ විස්තර", 18 | "Save" => "සුරකින්න", 19 | "Delete" => "මකන්න", 20 | "Edit" => "සකසන්න", 21 | "Cancel" => "එපා", 22 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" => "මෙම වෙබ් පිටුව ඉක්මනින් පිටු සළකුනක් ලෙස සටහන් කිරීමට, එය බ්‍රවුසරයේ පිටු සළකුනු මතට ඇද ක්ලික් කරන්න:", 23 | "Address" => "ලිපිනය", 24 | "Add" => "එකතු කරන්න", 25 | "Related Tags" => "අදාළ ටැගයන්", 26 | "Settings" => "සිටුවම්", 27 | "You have no bookmarks" => "පිටු සළකුනු නොමැත", 28 | "You can also try to import a bookmark file" => "පිටුසන අඩංගු ගොනුවක් ආයාත කිරීමට උත්සහ කළ හැක", 29 | "Export & Import" => "ආයාත හා නිර්යාත", 30 | "Export" => "නිර්යාත කරන්න", 31 | "Import" => "ආයාත කරන්න" 32 | ); 33 | $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 34 | -------------------------------------------------------------------------------- /l10n/ka_GE.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Bookmarks" : "ბუქმარკები", 3 | "Bookm." : "Bookm.", 4 | "No file provided for import" : "არ არის ფაილი იმპორტისთვის", 5 | "Unsupported file type for import" : "დაუშვებელი ფაილის ტიპი იმპორტისთვის", 6 | "Error" : "შეცდომა", 7 | "Tags" : "ტაგები", 8 | "Filter by tag" : "ტეგების მიხედვით ფილტრაცია", 9 | "Warning" : "გაფრთხილება", 10 | "Are you sure you want to remove this tag from every entry?" : "დარწმუნებული ხართ რომ აღნიშნული ტაგის წაშლა გინდათ ყველა ჩანაწერიდა?", 11 | "Import error" : "შეცდომა იმპორტის დროს", 12 | "Import completed successfully." : "იმპორტირება დასრულებულია.", 13 | "Uploading..." : "მიმდინარეობს ატვირთვა...", 14 | "Add a bookmark" : "ბუქმარქში დამატება", 15 | "The title of the page" : "გვერდის სათაური", 16 | "The address of the page" : "გვერდის მისამართი", 17 | "Description of the page" : "გვერდის დახასიათება", 18 | "Save" : "შენახვა", 19 | "Delete" : "წაშლა", 20 | "Edit" : "რედაქტირება", 21 | "Cancel" : "უარყოფა", 22 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" : "გადაათრიეთ ეს თქვენს ბუქმარკებში თუ გინდათ რომ საითი სწრაფად დაბუქმარკდეს", 23 | "Address" : "მისამართი", 24 | "You have no bookmarks" : "თქვენ არ გაქვთ ბუქმარკები", 25 | "Bookmarklet" : "ბუქმარქლეტი", 26 | "Export & Import" : "ექსპორტ & იმპორტი", 27 | "Export" : "ექსპორტი", 28 | "Import" : "იმპორტი" 29 | },"pluralForm" :"nplurals=1; plural=0;" 30 | } -------------------------------------------------------------------------------- /l10n/ar.php: -------------------------------------------------------------------------------- 1 | "اشارات المرجعية", 4 | "Bookm." => "مرجعيه.", 5 | "No file provided for import" => "لم يتم اضافة ملف للتدخيل", 6 | "Unsupported file type for import" => "نوعية الملف غير صالحه للاستيراد", 7 | "Error" => "خطأ", 8 | "Tags" => "فئاة", 9 | "Filter by tag" => "تصفيه حسب الفئه", 10 | "Warning" => "تحذير", 11 | "Are you sure you want to remove this tag from every entry?" => "هل أنت متاكد أنك تريد حذف هذه الفئه من جميع المدخولات؟", 12 | "Import error" => "لقد فشل الإستيراد", 13 | "Import completed successfully." => "تم الاستيراد بنجاح", 14 | "Uploading..." => "ترفيع...", 15 | "Add a bookmark" => "أضف إشارة مرجعية", 16 | "The title of the page" => "أسم هذه الصفحه", 17 | "The address of the page" => "عنوان هذه الصفحه", 18 | "Description of the page" => "وصف هذه الصفحه", 19 | "Save" => "حفظ", 20 | "Delete" => "حذف", 21 | "Edit" => "تعديل", 22 | "Cancel" => "الغاء", 23 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" => "اسحب هذه الى قائمة المرجعيه في متصفحك, و اضغط عليه عندما تريد اضافة صفحه :", 24 | "Add to ownCloud" => "أضف إلى سحابتك الخاصه \"أوون كلاود\"", 25 | "Address" => "عنوان", 26 | "You have no bookmarks" => "لا يوجد عندك صفحات مرجعيه", 27 | "Bookmarklet" => "المرجعيه", 28 | "Export & Import" => "تصدير و استيراد", 29 | "Export" => "تصدير المعلومات", 30 | "Import" => "استيراد" 31 | ); 32 | $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;"; 33 | -------------------------------------------------------------------------------- /l10n/zh_TW.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Bookmarks" : "書籤", 3 | "Bookm." : "書籤", 4 | "No file provided for import" : "沒有提供匯入用的檔案", 5 | "Unsupported file type for import" : "不支援這種檔案類型的匯入", 6 | "Some Error happened." : "發生了一些錯誤", 7 | "Error" : "錯誤", 8 | "Tags" : "標籤", 9 | "Filter by tag" : "依標籤篩選", 10 | "Are you sure you want to remove this bookmark?" : "你確定你要移除此書籤?", 11 | "Warning" : "警告", 12 | "Are you sure you want to remove this tag from every entry?" : "您確定要從每個項目中移除這個標籤嗎?", 13 | "Import error" : "匯入錯誤", 14 | "Import completed successfully." : "匯入成功完成。", 15 | "Uploading..." : "上傳中...", 16 | "Add a bookmark" : "新增書籤", 17 | "This URL is already bookmarked! Overwrite?" : "此網址已經存在書籤中,確定要複寫?", 18 | "The title of the page" : "頁面標題", 19 | "The address of the page" : "頁面的位址", 20 | "Description of the page" : "頁面說明", 21 | "Save" : "儲存", 22 | "Delete" : "刪除", 23 | "Edit" : "編輯", 24 | "Cancel" : "取消", 25 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" : "把這個拖曳至瀏覽器的書籤列,下次您想要將某個頁面加至書籤時,點一下書籤列上面的這個項目即可。", 26 | "Add to ownCloud" : "新增至ownCloud", 27 | "Address" : "網址", 28 | "Filterable Tags" : "可篩選的標記", 29 | "You have no bookmarks" : "您還沒有任何書籤", 30 | "You can also import a bookmark file" : "你也可以匯入書籤檔案", 31 | "Bookmarklet" : "Bookmarklet", 32 | "Export & Import" : "匯出與匯入", 33 | "Export" : "匯出", 34 | "Import" : "匯入" 35 | },"pluralForm" :"nplurals=1; plural=0;" 36 | } -------------------------------------------------------------------------------- /l10n/ta_LK.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "bookmarks", 3 | { 4 | "Bookmarks" : "பக்க அடையாளங்கள்", 5 | "Bookm." : "பக்க அடையாளங்கள்", 6 | "Unsupported file type for import" : "இறக்குமதிக்கு ஆதரவளிக்காத கோப்பு வகை", 7 | "Error" : "வழு", 8 | "Tags" : "சீட்டுகள்", 9 | "Filter by tag" : "சீட்டுகளால் வடிகட்டுக", 10 | "Warning" : "எச்சரிக்கை", 11 | "Are you sure you want to remove this tag from every entry?" : "ஒவ்வொரு நுழைவின் போதும் இந்த சீட்டை கட்டாயம் அகற்ற வேண்டுமா?", 12 | "Import completed successfully." : "இறக்குமதி வெற்றிகரமாக நிறைவேற்றப்பட்டது.", 13 | "Uploading..." : "பதிவேற்றல்...", 14 | "Add a bookmark" : "பக்க அடையாளம் ஒன்றை சேர்க்க", 15 | "The title of the page" : "பக்கத்தி்ன் தலைப்பு", 16 | "The address of the page" : "பக்கத்தின் முகவரி", 17 | "Description of the page" : "பக்கத்தின் விவரிப்பு", 18 | "Save" : "சேமிக்க", 19 | "Delete" : "அழிக்க", 20 | "Edit" : "தொகுக்க", 21 | "Cancel" : "இரத்து செய்க", 22 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" : "உங்களுக்கு ஒரு வலைய பக்கத்தை விரைவாக பக்க அடையாளப்படுத்துவதற்கு அதை உங்களுடைய உலாவியின் பக்க அடையாளங்களில் இழுத்து விட்டு சொடக்குக", 23 | "Address" : "முகவரி", 24 | "You have no bookmarks" : "உங்களிடம் பக்க அடையாளங்கள் இல்லை ", 25 | "Bookmarklet" : "பக்க அடையாளங்கள்", 26 | "Export & Import" : "ஏற்றுமதி மற்றும் இறக்குமதி", 27 | "Export" : "ஏற்றுமதி", 28 | "Import" : "இறக்குமதி" 29 | }, 30 | "nplurals=2; plural=(n != 1);"); 31 | -------------------------------------------------------------------------------- /l10n/ug.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "bookmarks", 3 | { 4 | "Bookmarks" : "خەتكۈچلەر", 5 | "Bookm." : "خەتكۈچ.", 6 | "No file provided for import" : "ئەكىرىشكە ھېچقانداق ھۆججەت تەمىنلەنمىگەن", 7 | "Unsupported file type for import" : "ئەكىرىشنى قوللىمايدىغان ھۆججەت تىپى", 8 | "Error" : "خاتالىق", 9 | "Tags" : "بەلگەلەر", 10 | "Filter by tag" : "بەلگە بويىچە سۈز", 11 | "Warning" : "ئاگاھلاندۇرۇش", 12 | "Are you sure you want to remove this tag from every entry?" : "بۇ بەلگىنى ھەممە تۈرلەردىن راستىنلا چىقىرىۋېتەمسىز؟", 13 | "Import error" : "ئەكىرىش خاتالىقى", 14 | "Import completed successfully." : "ئەكىرىش مۇۋەپپەقىيەتلىك تاماملاندى.", 15 | "Uploading..." : "يۈكلەۋاتىدۇ…", 16 | "Add a bookmark" : "خەتكۈچتىن بىرنى قوش", 17 | "The title of the page" : "بۇ بەتنىڭ ماۋزۇسى", 18 | "The address of the page" : "بەتنىڭ ئادرېسى", 19 | "Description of the page" : "بەتنىڭ چۈشەندۈرۈلۈشى", 20 | "Save" : "ساقلا", 21 | "Delete" : "ئۆچۈر", 22 | "Edit" : "تەھرىر", 23 | "Cancel" : "ۋاز كەچ", 24 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" : "سىز تور بەتنى تېز سۈرئەتتە خەتكۈچكە قوشماقچى بولغاندا، بۇنى توركۆرگۈڭىزنىڭ خەتكۈچىگە سۆرەپ، ئۇنى چېكىڭ، ", 25 | "Address" : "ئادرېس", 26 | "You have no bookmarks" : "ھېچقانداق خەتكۈچىڭىز يوق", 27 | "Bookmarklet" : "خەتكۈچ", 28 | "Export & Import" : "ئەكىر ياكى چىقار", 29 | "Export" : "چىقار", 30 | "Import" : "ئەكىر" 31 | }, 32 | "nplurals=1; plural=0;"); 33 | -------------------------------------------------------------------------------- /l10n/bn_IN.php: -------------------------------------------------------------------------------- 1 | "বুকমার্ক", 4 | "Bookm." => "বুকএম.", 5 | "No file provided for import" => "ইম্পোর্টের জন্য প্রদান করা কোন ফাইল", 6 | "Unsupported file type for import" => "ইমপোর্টের জন্য অসমর্থিত ফাইল টাইপ", 7 | "Error" => "ভুল", 8 | "Tags" => "ট্যাগ্স", 9 | "Filter by tag" => "ট্যাগ দ্বারা ফিল্টার করুন", 10 | "Warning" => "সতর্কীকরণ", 11 | "Are you sure you want to remove this tag from every entry?" => "আপনি আপনার প্রতি এন্ট্রি থেকে এই ট্যাগটি মুছে ফেলার ব্যাপারে নিশ্চিত?", 12 | "Import error" => "ইম্পোর্ট ত্রুটি", 13 | "Import completed successfully." => "ইম্পোর্ট সফলভাবে সম্পন্ন হয়েছে।", 14 | "Uploading..." => "আপলোডইং ...", 15 | "Add a bookmark" => "বুকমার্ক অ্যাড করুন ", 16 | "The title of the page" => "পৃষ্ঠার শিরোনাম", 17 | "The address of the page" => "পৃষ্ঠার ঠিকানা", 18 | "Description of the page" => "পৃষ্ঠার বিবরণ", 19 | "Save" => "সেভ", 20 | "Delete" => "মুছে ফেলা", 21 | "Edit" => "এডিট", 22 | "Cancel" => "বাতিল করা", 23 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" => "আপনার ব্রাউজারের বুকমার্কে এটি ড্র্যাগ করে নিয়ে যান এবং এটা ক্লিক করুন, যখন আপনি দ্রুত একটি ওয়েব পেজ বুকমার্ক করতে চান:", 24 | "Add to ownCloud" => "OwnCloud এ যোগ করুন", 25 | "Address" => "ঠিকানা", 26 | "You have no bookmarks" => "আপনার কোন বুকমার্ক নেই", 27 | "Bookmarklet" => "বুকমার্কলেট", 28 | "Export & Import" => "এক্সপোর্ট ও ইম্পোর্ট", 29 | "Export" => "এক্সপোর্ট", 30 | "Import" => "ইম্পোর্ট" 31 | ); 32 | $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 33 | -------------------------------------------------------------------------------- /l10n/cy_GB.php: -------------------------------------------------------------------------------- 1 | "Nodau tudalen", 4 | "Bookm." => "Nodtud.", 5 | "No file provided for import" => "Dim ffeil i'w fewnforio", 6 | "Unsupported file type for import" => "Dim cefnogaeth i fewnforio'r math hwn o ffeil", 7 | "Error" => "Gwall", 8 | "Tags" => "Tagiau", 9 | "Filter by tag" => "Hidlo yn ôl tag", 10 | "Warning" => "Rhybudd", 11 | "Are you sure you want to remove this tag from every entry?" => "Ydych chi'n siwr eich bod am waredu'r tag hwn o bob cofnod?", 12 | "Import error" => "Gwall mewnforio", 13 | "Import completed successfully." => "Mewnforiwyd yn llwyddiannus.", 14 | "Uploading..." => "Yn llwytho i fyny...", 15 | "Add a bookmark" => "Ychwanegu nod tudalen", 16 | "The title of the page" => "Teitl y dudalen", 17 | "The address of the page" => "Cyfeiriad y dudalen", 18 | "Description of the page" => "Disgrifiad o'r dudalen", 19 | "Save" => "Cadw", 20 | "Delete" => "Dileu", 21 | "Edit" => "Golygu", 22 | "Cancel" => "Diddymu", 23 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" => "Llusgwch hwn i nodau tudalen eich porwr a'i glicio pan fyddwch eisiau gosod nod tudalen gwe'n gyflym.", 24 | "Address" => "Cyfeiriad", 25 | "You have no bookmarks" => "Nid oes nodau tudalen gennych", 26 | "Bookmarklet" => "Nod tudalen gweithredol", 27 | "Export & Import" => "Allforio & Mewnforio", 28 | "Export" => "Allforio", 29 | "Import" => "Mewnforio" 30 | ); 31 | $PLURAL_FORMS = "nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"; 32 | -------------------------------------------------------------------------------- /l10n/ko.php: -------------------------------------------------------------------------------- 1 | "책갈피", 4 | "Bookm." => "책갈피", 5 | "No file provided for import" => "가져올 파일을 지정하지 않았음", 6 | "Unsupported file type for import" => "가져올 수 없는 파일 형식임", 7 | "Some Error happened." => "오류가 발생했습니다.", 8 | "Error" => "오류", 9 | "Tags" => "태그", 10 | "Filter by tag" => "태그로 필터링", 11 | "Are you sure you want to remove this bookmark?" => "이 책갈피를 삭제하시겠습니까?", 12 | "Warning" => "경고", 13 | "Are you sure you want to remove this tag from every entry?" => "모든 항목에서 이 태그를 삭제하시겠습니까?", 14 | "Import error" => "가져오기 오류", 15 | "Import completed successfully." => "성공적으로 가져왔습니다.", 16 | "Uploading..." => "업로드 중...", 17 | "Add a bookmark" => "책갈피 추가", 18 | "This URL is already bookmarked! Overwrite?" => "이 URL이 이미 책갈피에 추가되어 있습니다! 덮어쓰시겠습니까?", 19 | "The title of the page" => "페이지 제목", 20 | "The address of the page" => "페이지 주소", 21 | "Description of the page" => "페이지 설명", 22 | "Save" => "저장", 23 | "Delete" => "삭제", 24 | "Edit" => "편집", 25 | "Cancel" => "취소", 26 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" => "웹 브라우저 책갈피 항목에 다음 링크를 끌어다 놓으면 나중에 볼 웹 페이지를 빠르게 구독할 때 사용할 수 있습니다:", 27 | "Add to ownCloud" => "ownCloud에 추가", 28 | "Address" => "주소", 29 | "Filterable Tags" => "필터 가능한 태그", 30 | "You have no bookmarks" => "책갈피가 없습니다", 31 | "You can also import a bookmark file" => "책갈피 파일을 가져올 수 있습니다", 32 | "Bookmarklet" => "북마크릿", 33 | "Export & Import" => "내보내기 및 가져오기", 34 | "Export" => "내보내기", 35 | "Import" => "가져오기" 36 | ); 37 | $PLURAL_FORMS = "nplurals=1; plural=0;"; 38 | -------------------------------------------------------------------------------- /l10n/ka_GE.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "bookmarks", 3 | { 4 | "Bookmarks" : "ბუქმარკები", 5 | "Bookm." : "Bookm.", 6 | "No file provided for import" : "არ არის ფაილი იმპორტისთვის", 7 | "Unsupported file type for import" : "დაუშვებელი ფაილის ტიპი იმპორტისთვის", 8 | "Error" : "შეცდომა", 9 | "Tags" : "ტაგები", 10 | "Filter by tag" : "ტეგების მიხედვით ფილტრაცია", 11 | "Warning" : "გაფრთხილება", 12 | "Are you sure you want to remove this tag from every entry?" : "დარწმუნებული ხართ რომ აღნიშნული ტაგის წაშლა გინდათ ყველა ჩანაწერიდა?", 13 | "Import error" : "შეცდომა იმპორტის დროს", 14 | "Import completed successfully." : "იმპორტირება დასრულებულია.", 15 | "Uploading..." : "მიმდინარეობს ატვირთვა...", 16 | "Add a bookmark" : "ბუქმარქში დამატება", 17 | "The title of the page" : "გვერდის სათაური", 18 | "The address of the page" : "გვერდის მისამართი", 19 | "Description of the page" : "გვერდის დახასიათება", 20 | "Save" : "შენახვა", 21 | "Delete" : "წაშლა", 22 | "Edit" : "რედაქტირება", 23 | "Cancel" : "უარყოფა", 24 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" : "გადაათრიეთ ეს თქვენს ბუქმარკებში თუ გინდათ რომ საითი სწრაფად დაბუქმარკდეს", 25 | "Address" : "მისამართი", 26 | "You have no bookmarks" : "თქვენ არ გაქვთ ბუქმარკები", 27 | "Bookmarklet" : "ბუქმარქლეტი", 28 | "Export & Import" : "ექსპორტ & იმპორტი", 29 | "Export" : "ექსპორტი", 30 | "Import" : "იმპორტი" 31 | }, 32 | "nplurals=1; plural=0;"); 33 | -------------------------------------------------------------------------------- /l10n/zh_TW.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "bookmarks", 3 | { 4 | "Bookmarks" : "書籤", 5 | "Bookm." : "書籤", 6 | "No file provided for import" : "沒有提供匯入用的檔案", 7 | "Unsupported file type for import" : "不支援這種檔案類型的匯入", 8 | "Some Error happened." : "發生了一些錯誤", 9 | "Error" : "錯誤", 10 | "Tags" : "標籤", 11 | "Filter by tag" : "依標籤篩選", 12 | "Are you sure you want to remove this bookmark?" : "你確定你要移除此書籤?", 13 | "Warning" : "警告", 14 | "Are you sure you want to remove this tag from every entry?" : "您確定要從每個項目中移除這個標籤嗎?", 15 | "Import error" : "匯入錯誤", 16 | "Import completed successfully." : "匯入成功完成。", 17 | "Uploading..." : "上傳中...", 18 | "Add a bookmark" : "新增書籤", 19 | "This URL is already bookmarked! Overwrite?" : "此網址已經存在書籤中,確定要複寫?", 20 | "The title of the page" : "頁面標題", 21 | "The address of the page" : "頁面的位址", 22 | "Description of the page" : "頁面說明", 23 | "Save" : "儲存", 24 | "Delete" : "刪除", 25 | "Edit" : "編輯", 26 | "Cancel" : "取消", 27 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" : "把這個拖曳至瀏覽器的書籤列,下次您想要將某個頁面加至書籤時,點一下書籤列上面的這個項目即可。", 28 | "Add to ownCloud" : "新增至ownCloud", 29 | "Address" : "網址", 30 | "Filterable Tags" : "可篩選的標記", 31 | "You have no bookmarks" : "您還沒有任何書籤", 32 | "You can also import a bookmark file" : "你也可以匯入書籤檔案", 33 | "Bookmarklet" : "Bookmarklet", 34 | "Export & Import" : "匯出與匯入", 35 | "Export" : "匯出", 36 | "Import" : "匯入" 37 | }, 38 | "nplurals=1; plural=0;"); 39 | -------------------------------------------------------------------------------- /l10n/km.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Bookmarks" : "ចំណាំ", 3 | "Bookm." : "ចំណាំ", 4 | "No file provided for import" : "គ្មានឯកសារ​ផ្តល់​អោយ​ ដើម្បី​នាំចូលទេ", 5 | "Unsupported file type for import" : "ប្រភេទឯកសារមិនគាំទ្រ​ដើម្បីនាំយកចូល", 6 | "Error" : "កំហុស", 7 | "Tags" : "ស្លាក", 8 | "Filter by tag" : "ច្រោះដោយស្លាក", 9 | "Warning" : "បម្រាម", 10 | "Are you sure you want to remove this tag from every entry?" : "តើអ្នក​ចង់​លុបស្លាកនេះពី​គ្រប់កន្លែង​​ទាំងអស់មែន?", 11 | "Import error" : "ការនាំយកចូលមានបញ្ហា", 12 | "Import completed successfully." : "ការនាំយកចូល គឺសម្រេចជោគជ័យ", 13 | "Uploading..." : "កំពុងដាក់បញ្ចូល...", 14 | "Add a bookmark" : "ដាក់​ចូលទៅបញ្ជីចំណាំ", 15 | "The title of the page" : "ចំណងជើង​នៃទំព័រ", 16 | "The address of the page" : "អាស័យដ្ឋាន​នៃទំព័រ", 17 | "Description of the page" : "ការពណ៌នានៃទំព័រ", 18 | "Save" : "រក្សាទុក", 19 | "Delete" : "លុប", 20 | "Edit" : "កែ", 21 | "Cancel" : "លើកលែង", 22 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" : "បើ​អ្នក​ចង់​ចំណាំ​គេហទំព័រ​ណាមួយយ៉ាង​ឆាប់​រហ័ស សូម​ទាញ​របស់​នេះ​ទៅ​ដាក់​នៅ​កន្លែង​ចំណាំ​របស់​កម្មវិធី​អ៊ីនធឺណិត ហើយ​ចុច​វា៖", 23 | "Add to ownCloud" : "ដាក់ចូល ownCloud", 24 | "Address" : "អាសយដ្ឋាន", 25 | "You have no bookmarks" : "អ្នក​មិន​មាន​ចំណាំ​ទេ", 26 | "Bookmarklet" : "បញ្ជីចំណាំ", 27 | "Export & Import" : "នាំចេញ & នាំចូល", 28 | "Export" : "នាំយកចេញ", 29 | "Import" : "នាំយកចូល" 30 | },"pluralForm" :"nplurals=1; plural=0;" 31 | } -------------------------------------------------------------------------------- /l10n/bn_BD.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Bookmarks" : "ঠিকাসমূহ", 3 | "Bookm." : "ঠিকা", 4 | "No file provided for import" : "কোনো ফাইল আমদানীর জন্য নেই", 5 | "Unsupported file type for import" : "আমদানি করার জন্য ফাইলের ফর্ম্যাটটি সঠিক নয়", 6 | "Error" : "সমস্যা", 7 | "Tags" : "ট্যাগ", 8 | "Filter by tag" : "ট্যাগ অনুসারে ছাঁক", 9 | "Warning" : "সতর্কবাণী", 10 | "Are you sure you want to remove this tag from every entry?" : "প্রত্যেক ভুক্তি থেকে এই ট্যাগটি অপসারণ করতে আপনি কি বদ্ধপরিকর?", 11 | "Import error" : "আমদানী ভ্রান্তি", 12 | "Import completed successfully." : "আমদানি সুসম্পন্ন হয়েছে।", 13 | "Uploading..." : "আপলোড করা হচ্ছে..........", 14 | "Add a bookmark" : "ঠিকা যোগ করুন", 15 | "The title of the page" : "পৃষ্ঠার শিরোনাম", 16 | "The address of the page" : "পৃষ্ঠার ঠিকানা", 17 | "Description of the page" : "পৃষ্ঠার বিবরণ", 18 | "Save" : "সংরক্ষণ কর", 19 | "Delete" : "মুছে ফেল", 20 | "Edit" : "সম্পাদনা", 21 | "Cancel" : "বাতিল", 22 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" : "দ্রুত কোন ওয়েবপেজ ঠিকাতে সংরক্ষণ করতে চাইলে এটিকে টেনে ব্রাউজারের ঠিকাতে নিয়ে যান এবং তাতে ক্লিক করুনঃ", 23 | "Add to ownCloud" : "ownCloud এ যুক্ত কর", 24 | "Address" : "ঠিকানা", 25 | "You have no bookmarks" : "আপনার কোন ঠিক নেই", 26 | "Bookmarklet" : "অনুঠিকা", 27 | "Export & Import" : "আমদানি এবং রপ্তানি", 28 | "Export" : "রপ্তানি", 29 | "Import" : "আমদানি" 30 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 31 | } -------------------------------------------------------------------------------- /l10n/es_AR.php: -------------------------------------------------------------------------------- 1 | "Marcadores", 4 | "Bookm." => "Marc.", 5 | "No file provided for import" => "No se proveyeron archivos para importar", 6 | "Unsupported file type for import" => "Tipo de archivo no soportado para importar", 7 | "Error" => "Error", 8 | "Tags" => "Etiquetas", 9 | "Filter by tag" => "Filtrar por etiquetas", 10 | "Warning" => "Atención", 11 | "Are you sure you want to remove this tag from every entry?" => "¿Estás seguro de que querés borrar esta etiqueta de todos los elementos?", 12 | "Import error" => "Error al importar", 13 | "Import completed successfully." => "Importación completada con éxito.", 14 | "Uploading..." => "Subiendo...", 15 | "Add a bookmark" => "Agregar un marcador", 16 | "The title of the page" => "El título de la página", 17 | "The address of the page" => "La dirección de la página", 18 | "Description of the page" => "Descripción de la página", 19 | "Save" => "Guardar", 20 | "Delete" => "Borrar", 21 | "Edit" => "Editar", 22 | "Cancel" => "Cancelar", 23 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" => "Arrastrá desde aquí a los marcadores de tu navegador, y hacé click cuando quieras marcar una página web:", 24 | "Add to ownCloud" => "Agregar a ownCloud", 25 | "Address" => "Dirección", 26 | "You have no bookmarks" => "No tenés marcadores", 27 | "Bookmarklet" => "Marcadores", 28 | "Export & Import" => "Exportar e importar", 29 | "Export" => "Exportar", 30 | "Import" => "Importar" 31 | ); 32 | $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 33 | -------------------------------------------------------------------------------- /l10n/eu.php: -------------------------------------------------------------------------------- 1 | "Laster-markak", 4 | "Bookm." => "Lasterm.", 5 | "No file provided for import" => "Ez da inportatzeko fitxategirik zehaztu", 6 | "Unsupported file type for import" => "Fitxategi mota hau ez da onartzen inportatzeko.", 7 | "Error" => "Errorea", 8 | "Tags" => "Etiketak", 9 | "Filter by tag" => "Iragazi etiketaren arabera", 10 | "Warning" => "Abisua", 11 | "Are you sure you want to remove this tag from every entry?" => "Ziur zaude etiketa hau sarrera guztietatik ezabatu nahi duzula?", 12 | "Import error" => "Inportazio errorea", 13 | "Import completed successfully." => "Inportazioa ongi egin da.", 14 | "Uploading..." => "Igotzen...", 15 | "Add a bookmark" => "Gehitu laster-marka", 16 | "The title of the page" => "Orriaren izenburua", 17 | "The address of the page" => "Orriaren helbidea", 18 | "Description of the page" => "Orriaren deskribapena", 19 | "Save" => "Gorde", 20 | "Delete" => "Ezabatu", 21 | "Edit" => "Editatu", 22 | "Cancel" => "Ezeztatu", 23 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" => "Web orri bat laster-marketara azkar gehitzeko, arrastratu hau zure arakatzailearen laster-marketara eta klikatu bertan:", 24 | "Add to ownCloud" => "Gehitu ownCloud-era", 25 | "Address" => "Helbidea", 26 | "You have no bookmarks" => "Ez duzu laster-markarik", 27 | "Bookmarklet" => "Bookmarklet", 28 | "Export & Import" => "Exportatu eta inportatu", 29 | "Export" => "Exportatu", 30 | "Import" => "Inportatu" 31 | ); 32 | $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 33 | -------------------------------------------------------------------------------- /l10n/bn_BD.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "bookmarks", 3 | { 4 | "Bookmarks" : "ঠিকাসমূহ", 5 | "Bookm." : "ঠিকা", 6 | "No file provided for import" : "কোনো ফাইল আমদানীর জন্য নেই", 7 | "Unsupported file type for import" : "আমদানি করার জন্য ফাইলের ফর্ম্যাটটি সঠিক নয়", 8 | "Error" : "সমস্যা", 9 | "Tags" : "ট্যাগ", 10 | "Filter by tag" : "ট্যাগ অনুসারে ছাঁক", 11 | "Warning" : "সতর্কবাণী", 12 | "Are you sure you want to remove this tag from every entry?" : "প্রত্যেক ভুক্তি থেকে এই ট্যাগটি অপসারণ করতে আপনি কি বদ্ধপরিকর?", 13 | "Import error" : "আমদানী ভ্রান্তি", 14 | "Import completed successfully." : "আমদানি সুসম্পন্ন হয়েছে।", 15 | "Uploading..." : "আপলোড করা হচ্ছে..........", 16 | "Add a bookmark" : "ঠিকা যোগ করুন", 17 | "The title of the page" : "পৃষ্ঠার শিরোনাম", 18 | "The address of the page" : "পৃষ্ঠার ঠিকানা", 19 | "Description of the page" : "পৃষ্ঠার বিবরণ", 20 | "Save" : "সংরক্ষণ কর", 21 | "Delete" : "মুছে ফেল", 22 | "Edit" : "সম্পাদনা", 23 | "Cancel" : "বাতিল", 24 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" : "দ্রুত কোন ওয়েবপেজ ঠিকাতে সংরক্ষণ করতে চাইলে এটিকে টেনে ব্রাউজারের ঠিকাতে নিয়ে যান এবং তাতে ক্লিক করুনঃ", 25 | "Add to ownCloud" : "ownCloud এ যুক্ত কর", 26 | "Address" : "ঠিকানা", 27 | "You have no bookmarks" : "আপনার কোন ঠিক নেই", 28 | "Bookmarklet" : "অনুঠিকা", 29 | "Export & Import" : "আমদানি এবং রপ্তানি", 30 | "Export" : "রপ্তানি", 31 | "Import" : "আমদানি" 32 | }, 33 | "nplurals=2; plural=(n != 1);"); 34 | -------------------------------------------------------------------------------- /l10n/km.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "bookmarks", 3 | { 4 | "Bookmarks" : "ចំណាំ", 5 | "Bookm." : "ចំណាំ", 6 | "No file provided for import" : "គ្មានឯកសារ​ផ្តល់​អោយ​ ដើម្បី​នាំចូលទេ", 7 | "Unsupported file type for import" : "ប្រភេទឯកសារមិនគាំទ្រ​ដើម្បីនាំយកចូល", 8 | "Error" : "កំហុស", 9 | "Tags" : "ស្លាក", 10 | "Filter by tag" : "ច្រោះដោយស្លាក", 11 | "Warning" : "បម្រាម", 12 | "Are you sure you want to remove this tag from every entry?" : "តើអ្នក​ចង់​លុបស្លាកនេះពី​គ្រប់កន្លែង​​ទាំងអស់មែន?", 13 | "Import error" : "ការនាំយកចូលមានបញ្ហា", 14 | "Import completed successfully." : "ការនាំយកចូល គឺសម្រេចជោគជ័យ", 15 | "Uploading..." : "កំពុងដាក់បញ្ចូល...", 16 | "Add a bookmark" : "ដាក់​ចូលទៅបញ្ជីចំណាំ", 17 | "The title of the page" : "ចំណងជើង​នៃទំព័រ", 18 | "The address of the page" : "អាស័យដ្ឋាន​នៃទំព័រ", 19 | "Description of the page" : "ការពណ៌នានៃទំព័រ", 20 | "Save" : "រក្សាទុក", 21 | "Delete" : "លុប", 22 | "Edit" : "កែ", 23 | "Cancel" : "លើកលែង", 24 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" : "បើ​អ្នក​ចង់​ចំណាំ​គេហទំព័រ​ណាមួយយ៉ាង​ឆាប់​រហ័ស សូម​ទាញ​របស់​នេះ​ទៅ​ដាក់​នៅ​កន្លែង​ចំណាំ​របស់​កម្មវិធី​អ៊ីនធឺណិត ហើយ​ចុច​វា៖", 25 | "Add to ownCloud" : "ដាក់ចូល ownCloud", 26 | "Address" : "អាសយដ្ឋាន", 27 | "You have no bookmarks" : "អ្នក​មិន​មាន​ចំណាំ​ទេ", 28 | "Bookmarklet" : "បញ្ជីចំណាំ", 29 | "Export & Import" : "នាំចេញ & នាំចូល", 30 | "Export" : "នាំយកចេញ", 31 | "Import" : "នាំយកចូល" 32 | }, 33 | "nplurals=1; plural=0;"); 34 | -------------------------------------------------------------------------------- /l10n/si_LK.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Unsupported file type for import" : "ආයාත කරන ගොනුව රුචි නොවේ", 3 | "Bookmarks" : "පිටු සළකුනු", 4 | "Tags" : "ටැග", 5 | "Filter by tag" : "ටැගය ආධාරයෙන් පෙරන්න", 6 | "Edit bookmark" : "පිටු සළකුනු සකසන්න", 7 | "Are you sure you want to remove this tag from every entry?" : "මෙම ටැගය සියළු ඇතුලත් කිරීමකින් ඉවත් කරන බව ඔබට සහතිකද", 8 | "Warning" : "අනතුරු ඇඟවිම", 9 | "Import completed successfully." : "ආයාත කිරීම සාර්ථකයි", 10 | "Uploading..." : "උඩුගත කෙරේ...", 11 | "Bookm." : "පිටුසන", 12 | "Add a bookmark" : "පිටු සළකුනක් එක් කරන්න", 13 | "Close" : "වසන්න", 14 | "The title of the page" : "පිටුවේ මාතෘකාව", 15 | "The address of the page" : "පිටුවේ ලිපිනය", 16 | "Description of the page" : "පිටුවේ විස්තර", 17 | "Save" : "සුරකින්න", 18 | "Delete" : "මකන්න", 19 | "Edit" : "සකසන්න", 20 | "Cancel" : "එපා", 21 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" : "මෙම වෙබ් පිටුව ඉක්මනින් පිටු සළකුනක් ලෙස සටහන් කිරීමට, එය බ්‍රවුසරයේ පිටු සළකුනු මතට ඇද ක්ලික් කරන්න:", 22 | "Address" : "ලිපිනය", 23 | "Add" : "එකතු කරන්න", 24 | "Related Tags" : "අදාළ ටැගයන්", 25 | "Settings" : "සිටුවම්", 26 | "You have no bookmarks" : "පිටු සළකුනු නොමැත", 27 | "You can also try to import a bookmark file" : "පිටුසන අඩංගු ගොනුවක් ආයාත කිරීමට උත්සහ කළ හැක", 28 | "Export & Import" : "ආයාත හා නිර්යාත", 29 | "Export" : "නිර්යාත කරන්න", 30 | "Import" : "ආයාත කරන්න" 31 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 32 | } -------------------------------------------------------------------------------- /l10n/ar.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Bookmarks" : "اشارات المرجعية", 3 | "Bookm." : "مرجعيه.", 4 | "No file provided for import" : "لم يتم اضافة ملف للتدخيل", 5 | "Unsupported file type for import" : "نوعية الملف غير صالحه للاستيراد", 6 | "Error" : "خطأ", 7 | "Tags" : "فئاة", 8 | "Filter by tag" : "تصفيه حسب الفئه", 9 | "Warning" : "تحذير", 10 | "Are you sure you want to remove this tag from every entry?" : "هل أنت متاكد أنك تريد حذف هذه الفئه من جميع المدخولات؟", 11 | "Import error" : "لقد فشل الإستيراد", 12 | "Import completed successfully." : "تم الاستيراد بنجاح", 13 | "Uploading..." : "ترفيع...", 14 | "Add a bookmark" : "أضف إشارة مرجعية", 15 | "The title of the page" : "أسم هذه الصفحه", 16 | "The address of the page" : "عنوان هذه الصفحه", 17 | "Description of the page" : "وصف هذه الصفحه", 18 | "Save" : "حفظ", 19 | "Delete" : "حذف", 20 | "Edit" : "تعديل", 21 | "Cancel" : "الغاء", 22 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" : "اسحب هذه الى قائمة المرجعيه في متصفحك, و اضغط عليه عندما تريد اضافة صفحه :", 23 | "Add to ownCloud" : "أضف إلى سحابتك الخاصه \"أوون كلاود\"", 24 | "Address" : "عنوان", 25 | "You have no bookmarks" : "لا يوجد عندك صفحات مرجعيه", 26 | "Bookmarklet" : "المرجعيه", 27 | "Export & Import" : "تصدير و استيراد", 28 | "Export" : "تصدير المعلومات", 29 | "Import" : "استيراد" 30 | },"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;" 31 | } -------------------------------------------------------------------------------- /l10n/ja.php: -------------------------------------------------------------------------------- 1 | "ブックマーク", 4 | "Bookm." => "ブックマーク", 5 | "No file provided for import" => "インポートするファイルが指定されていません", 6 | "Unsupported file type for import" => "インポートでは未サポートのファイルタイプ", 7 | "Some Error happened." => "エラーが発生しました。", 8 | "Error" => "エラー", 9 | "Tags" => "タグ", 10 | "Filter by tag" => "タグによるフィルター", 11 | "Are you sure you want to remove this bookmark?" => "このブックマークを削除してもよろしいですか?", 12 | "Warning" => "警告", 13 | "Are you sure you want to remove this tag from every entry?" => "すべてのエントリからこのタグを削除してもよろしいですか?", 14 | "Import error" => "インポートエラー", 15 | "Import completed successfully." => "インポートは正常に完了しました。", 16 | "Uploading..." => "アップロード中...", 17 | "Add a bookmark" => "ブックマークを追加", 18 | "This URL is already bookmarked! Overwrite?" => "このURLはすでにブックマークされています!上書きしますか?", 19 | "The title of the page" => "ページのタイトル", 20 | "The address of the page" => "ページのアドレス", 21 | "Description of the page" => "ページの説明", 22 | "Save" => "保存", 23 | "Delete" => "削除", 24 | "Edit" => "編集", 25 | "Cancel" => "キャンセル", 26 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" => "Webページをすぐにブックマークしたい場合は、これをブラウザーのブックマークにドラッグし、クリックしてください:", 27 | "Add to ownCloud" => "ownCloud に追加", 28 | "Address" => "アドレス", 29 | "Filterable Tags" => "絞り込み可能なタグ", 30 | "You have no bookmarks" => "ブックマークがありません", 31 | "You can also import a bookmark file" => "ブックマークファイルをインポートすることもできます。", 32 | "Bookmarklet" => "ブックマークレット", 33 | "Export & Import" => "エクスポートとインポート", 34 | "Export" => "エクスポート", 35 | "Import" => "インポート" 36 | ); 37 | $PLURAL_FORMS = "nplurals=1; plural=0;"; 38 | -------------------------------------------------------------------------------- /l10n/bn_IN.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Bookmarks" : "বুকমার্ক", 3 | "Bookm." : "বুকএম.", 4 | "No file provided for import" : "ইম্পোর্টের জন্য প্রদান করা কোন ফাইল", 5 | "Unsupported file type for import" : "ইমপোর্টের জন্য অসমর্থিত ফাইল টাইপ", 6 | "Error" : "ভুল", 7 | "Tags" : "ট্যাগ্স", 8 | "Filter by tag" : "ট্যাগ দ্বারা ফিল্টার করুন", 9 | "Warning" : "সতর্কীকরণ", 10 | "Are you sure you want to remove this tag from every entry?" : "আপনি আপনার প্রতি এন্ট্রি থেকে এই ট্যাগটি মুছে ফেলার ব্যাপারে নিশ্চিত?", 11 | "Import error" : "ইম্পোর্ট ত্রুটি", 12 | "Import completed successfully." : "ইম্পোর্ট সফলভাবে সম্পন্ন হয়েছে।", 13 | "Uploading..." : "আপলোডইং ...", 14 | "Add a bookmark" : "বুকমার্ক অ্যাড করুন ", 15 | "The title of the page" : "পৃষ্ঠার শিরোনাম", 16 | "The address of the page" : "পৃষ্ঠার ঠিকানা", 17 | "Description of the page" : "পৃষ্ঠার বিবরণ", 18 | "Save" : "সেভ", 19 | "Delete" : "মুছে ফেলা", 20 | "Edit" : "এডিট", 21 | "Cancel" : "বাতিল করা", 22 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" : "আপনার ব্রাউজারের বুকমার্কে এটি ড্র্যাগ করে নিয়ে যান এবং এটা ক্লিক করুন, যখন আপনি দ্রুত একটি ওয়েব পেজ বুকমার্ক করতে চান:", 23 | "Add to ownCloud" : "OwnCloud এ যোগ করুন", 24 | "Address" : "ঠিকানা", 25 | "You have no bookmarks" : "আপনার কোন বুকমার্ক নেই", 26 | "Bookmarklet" : "বুকমার্কলেট", 27 | "Export & Import" : "এক্সপোর্ট ও ইম্পোর্ট", 28 | "Export" : "এক্সপোর্ট", 29 | "Import" : "ইম্পোর্ট" 30 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 31 | } -------------------------------------------------------------------------------- /l10n/cy_GB.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Bookmarks" : "Nodau tudalen", 3 | "Bookm." : "Nodtud.", 4 | "No file provided for import" : "Dim ffeil i'w fewnforio", 5 | "Unsupported file type for import" : "Dim cefnogaeth i fewnforio'r math hwn o ffeil", 6 | "Error" : "Gwall", 7 | "Tags" : "Tagiau", 8 | "Filter by tag" : "Hidlo yn ôl tag", 9 | "Warning" : "Rhybudd", 10 | "Are you sure you want to remove this tag from every entry?" : "Ydych chi'n siwr eich bod am waredu'r tag hwn o bob cofnod?", 11 | "Import error" : "Gwall mewnforio", 12 | "Import completed successfully." : "Mewnforiwyd yn llwyddiannus.", 13 | "Uploading..." : "Yn llwytho i fyny...", 14 | "Add a bookmark" : "Ychwanegu nod tudalen", 15 | "The title of the page" : "Teitl y dudalen", 16 | "The address of the page" : "Cyfeiriad y dudalen", 17 | "Description of the page" : "Disgrifiad o'r dudalen", 18 | "Save" : "Cadw", 19 | "Delete" : "Dileu", 20 | "Edit" : "Golygu", 21 | "Cancel" : "Diddymu", 22 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" : "Llusgwch hwn i nodau tudalen eich porwr a'i glicio pan fyddwch eisiau gosod nod tudalen gwe'n gyflym.", 23 | "Address" : "Cyfeiriad", 24 | "You have no bookmarks" : "Nid oes nodau tudalen gennych", 25 | "Bookmarklet" : "Nod tudalen gweithredol", 26 | "Export & Import" : "Allforio & Mewnforio", 27 | "Export" : "Allforio", 28 | "Import" : "Mewnforio" 29 | },"pluralForm" :"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;" 30 | } -------------------------------------------------------------------------------- /l10n/si_LK.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "bookmarks", 3 | { 4 | "Unsupported file type for import" : "ආයාත කරන ගොනුව රුචි නොවේ", 5 | "Bookmarks" : "පිටු සළකුනු", 6 | "Tags" : "ටැග", 7 | "Filter by tag" : "ටැගය ආධාරයෙන් පෙරන්න", 8 | "Edit bookmark" : "පිටු සළකුනු සකසන්න", 9 | "Are you sure you want to remove this tag from every entry?" : "මෙම ටැගය සියළු ඇතුලත් කිරීමකින් ඉවත් කරන බව ඔබට සහතිකද", 10 | "Warning" : "අනතුරු ඇඟවිම", 11 | "Import completed successfully." : "ආයාත කිරීම සාර්ථකයි", 12 | "Uploading..." : "උඩුගත කෙරේ...", 13 | "Bookm." : "පිටුසන", 14 | "Add a bookmark" : "පිටු සළකුනක් එක් කරන්න", 15 | "Close" : "වසන්න", 16 | "The title of the page" : "පිටුවේ මාතෘකාව", 17 | "The address of the page" : "පිටුවේ ලිපිනය", 18 | "Description of the page" : "පිටුවේ විස්තර", 19 | "Save" : "සුරකින්න", 20 | "Delete" : "මකන්න", 21 | "Edit" : "සකසන්න", 22 | "Cancel" : "එපා", 23 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" : "මෙම වෙබ් පිටුව ඉක්මනින් පිටු සළකුනක් ලෙස සටහන් කිරීමට, එය බ්‍රවුසරයේ පිටු සළකුනු මතට ඇද ක්ලික් කරන්න:", 24 | "Address" : "ලිපිනය", 25 | "Add" : "එකතු කරන්න", 26 | "Related Tags" : "අදාළ ටැගයන්", 27 | "Settings" : "සිටුවම්", 28 | "You have no bookmarks" : "පිටු සළකුනු නොමැත", 29 | "You can also try to import a bookmark file" : "පිටුසන අඩංගු ගොනුවක් ආයාත කිරීමට උත්සහ කළ හැක", 30 | "Export & Import" : "ආයාත හා නිර්යාත", 31 | "Export" : "නිර්යාත කරන්න", 32 | "Import" : "ආයාත කරන්න" 33 | }, 34 | "nplurals=2; plural=(n != 1);"); 35 | -------------------------------------------------------------------------------- /l10n/ar.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "bookmarks", 3 | { 4 | "Bookmarks" : "اشارات المرجعية", 5 | "Bookm." : "مرجعيه.", 6 | "No file provided for import" : "لم يتم اضافة ملف للتدخيل", 7 | "Unsupported file type for import" : "نوعية الملف غير صالحه للاستيراد", 8 | "Error" : "خطأ", 9 | "Tags" : "فئاة", 10 | "Filter by tag" : "تصفيه حسب الفئه", 11 | "Warning" : "تحذير", 12 | "Are you sure you want to remove this tag from every entry?" : "هل أنت متاكد أنك تريد حذف هذه الفئه من جميع المدخولات؟", 13 | "Import error" : "لقد فشل الإستيراد", 14 | "Import completed successfully." : "تم الاستيراد بنجاح", 15 | "Uploading..." : "ترفيع...", 16 | "Add a bookmark" : "أضف إشارة مرجعية", 17 | "The title of the page" : "أسم هذه الصفحه", 18 | "The address of the page" : "عنوان هذه الصفحه", 19 | "Description of the page" : "وصف هذه الصفحه", 20 | "Save" : "حفظ", 21 | "Delete" : "حذف", 22 | "Edit" : "تعديل", 23 | "Cancel" : "الغاء", 24 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" : "اسحب هذه الى قائمة المرجعيه في متصفحك, و اضغط عليه عندما تريد اضافة صفحه :", 25 | "Add to ownCloud" : "أضف إلى سحابتك الخاصه \"أوون كلاود\"", 26 | "Address" : "عنوان", 27 | "You have no bookmarks" : "لا يوجد عندك صفحات مرجعيه", 28 | "Bookmarklet" : "المرجعيه", 29 | "Export & Import" : "تصدير و استيراد", 30 | "Export" : "تصدير المعلومات", 31 | "Import" : "استيراد" 32 | }, 33 | "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;"); 34 | -------------------------------------------------------------------------------- /l10n/ko.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Bookmarks" : "책갈피", 3 | "Bookm." : "책갈피", 4 | "No file provided for import" : "가져올 파일을 지정하지 않았음", 5 | "Unsupported file type for import" : "가져올 수 없는 파일 형식임", 6 | "Some Error happened." : "오류가 발생했습니다.", 7 | "Error" : "오류", 8 | "Tags" : "태그", 9 | "Filter by tag" : "태그로 필터링", 10 | "Are you sure you want to remove this bookmark?" : "이 책갈피를 삭제하시겠습니까?", 11 | "Warning" : "경고", 12 | "Are you sure you want to remove this tag from every entry?" : "모든 항목에서 이 태그를 삭제하시겠습니까?", 13 | "Import error" : "가져오기 오류", 14 | "Import completed successfully." : "성공적으로 가져왔습니다.", 15 | "Uploading..." : "업로드 중...", 16 | "Add a bookmark" : "책갈피 추가", 17 | "This URL is already bookmarked! Overwrite?" : "이 URL이 이미 책갈피에 추가되어 있습니다! 덮어쓰시겠습니까?", 18 | "The title of the page" : "페이지 제목", 19 | "The address of the page" : "페이지 주소", 20 | "Description of the page" : "페이지 설명", 21 | "Save" : "저장", 22 | "Delete" : "삭제", 23 | "Edit" : "편집", 24 | "Cancel" : "취소", 25 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" : "웹 브라우저 책갈피 항목에 다음 링크를 끌어다 놓으면 나중에 볼 웹 페이지를 빠르게 구독할 때 사용할 수 있습니다:", 26 | "Add to ownCloud" : "ownCloud에 추가", 27 | "Address" : "주소", 28 | "Filterable Tags" : "필터 가능한 태그", 29 | "You have no bookmarks" : "책갈피가 없습니다", 30 | "You can also import a bookmark file" : "책갈피 파일을 가져올 수 있습니다", 31 | "Bookmarklet" : "북마크릿", 32 | "Export & Import" : "내보내기 및 가져오기", 33 | "Export" : "내보내기", 34 | "Import" : "가져오기" 35 | },"pluralForm" :"nplurals=1; plural=0;" 36 | } -------------------------------------------------------------------------------- /l10n/cy_GB.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "bookmarks", 3 | { 4 | "Bookmarks" : "Nodau tudalen", 5 | "Bookm." : "Nodtud.", 6 | "No file provided for import" : "Dim ffeil i'w fewnforio", 7 | "Unsupported file type for import" : "Dim cefnogaeth i fewnforio'r math hwn o ffeil", 8 | "Error" : "Gwall", 9 | "Tags" : "Tagiau", 10 | "Filter by tag" : "Hidlo yn ôl tag", 11 | "Warning" : "Rhybudd", 12 | "Are you sure you want to remove this tag from every entry?" : "Ydych chi'n siwr eich bod am waredu'r tag hwn o bob cofnod?", 13 | "Import error" : "Gwall mewnforio", 14 | "Import completed successfully." : "Mewnforiwyd yn llwyddiannus.", 15 | "Uploading..." : "Yn llwytho i fyny...", 16 | "Add a bookmark" : "Ychwanegu nod tudalen", 17 | "The title of the page" : "Teitl y dudalen", 18 | "The address of the page" : "Cyfeiriad y dudalen", 19 | "Description of the page" : "Disgrifiad o'r dudalen", 20 | "Save" : "Cadw", 21 | "Delete" : "Dileu", 22 | "Edit" : "Golygu", 23 | "Cancel" : "Diddymu", 24 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" : "Llusgwch hwn i nodau tudalen eich porwr a'i glicio pan fyddwch eisiau gosod nod tudalen gwe'n gyflym.", 25 | "Address" : "Cyfeiriad", 26 | "You have no bookmarks" : "Nid oes nodau tudalen gennych", 27 | "Bookmarklet" : "Nod tudalen gweithredol", 28 | "Export & Import" : "Allforio & Mewnforio", 29 | "Export" : "Allforio", 30 | "Import" : "Mewnforio" 31 | }, 32 | "nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"); 33 | -------------------------------------------------------------------------------- /l10n/bn_IN.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "bookmarks", 3 | { 4 | "Bookmarks" : "বুকমার্ক", 5 | "Bookm." : "বুকএম.", 6 | "No file provided for import" : "ইম্পোর্টের জন্য প্রদান করা কোন ফাইল", 7 | "Unsupported file type for import" : "ইমপোর্টের জন্য অসমর্থিত ফাইল টাইপ", 8 | "Error" : "ভুল", 9 | "Tags" : "ট্যাগ্স", 10 | "Filter by tag" : "ট্যাগ দ্বারা ফিল্টার করুন", 11 | "Warning" : "সতর্কীকরণ", 12 | "Are you sure you want to remove this tag from every entry?" : "আপনি আপনার প্রতি এন্ট্রি থেকে এই ট্যাগটি মুছে ফেলার ব্যাপারে নিশ্চিত?", 13 | "Import error" : "ইম্পোর্ট ত্রুটি", 14 | "Import completed successfully." : "ইম্পোর্ট সফলভাবে সম্পন্ন হয়েছে।", 15 | "Uploading..." : "আপলোডইং ...", 16 | "Add a bookmark" : "বুকমার্ক অ্যাড করুন ", 17 | "The title of the page" : "পৃষ্ঠার শিরোনাম", 18 | "The address of the page" : "পৃষ্ঠার ঠিকানা", 19 | "Description of the page" : "পৃষ্ঠার বিবরণ", 20 | "Save" : "সেভ", 21 | "Delete" : "মুছে ফেলা", 22 | "Edit" : "এডিট", 23 | "Cancel" : "বাতিল করা", 24 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" : "আপনার ব্রাউজারের বুকমার্কে এটি ড্র্যাগ করে নিয়ে যান এবং এটা ক্লিক করুন, যখন আপনি দ্রুত একটি ওয়েব পেজ বুকমার্ক করতে চান:", 25 | "Add to ownCloud" : "OwnCloud এ যোগ করুন", 26 | "Address" : "ঠিকানা", 27 | "You have no bookmarks" : "আপনার কোন বুকমার্ক নেই", 28 | "Bookmarklet" : "বুকমার্কলেট", 29 | "Export & Import" : "এক্সপোর্ট ও ইম্পোর্ট", 30 | "Export" : "এক্সপোর্ট", 31 | "Import" : "ইম্পোর্ট" 32 | }, 33 | "nplurals=2; plural=(n != 1);"); 34 | -------------------------------------------------------------------------------- /l10n/es_AR.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Bookmarks" : "Marcadores", 3 | "Bookm." : "Marc.", 4 | "No file provided for import" : "No se proveyeron archivos para importar", 5 | "Unsupported file type for import" : "Tipo de archivo no soportado para importar", 6 | "Error" : "Error", 7 | "Tags" : "Etiquetas", 8 | "Filter by tag" : "Filtrar por etiquetas", 9 | "Warning" : "Atención", 10 | "Are you sure you want to remove this tag from every entry?" : "¿Estás seguro de que querés borrar esta etiqueta de todos los elementos?", 11 | "Import error" : "Error al importar", 12 | "Import completed successfully." : "Importación completada con éxito.", 13 | "Uploading..." : "Subiendo...", 14 | "Add a bookmark" : "Agregar un marcador", 15 | "The title of the page" : "El título de la página", 16 | "The address of the page" : "La dirección de la página", 17 | "Description of the page" : "Descripción de la página", 18 | "Save" : "Guardar", 19 | "Delete" : "Borrar", 20 | "Edit" : "Editar", 21 | "Cancel" : "Cancelar", 22 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" : "Arrastrá desde aquí a los marcadores de tu navegador, y hacé click cuando quieras marcar una página web:", 23 | "Add to ownCloud" : "Agregar a ownCloud", 24 | "Address" : "Dirección", 25 | "You have no bookmarks" : "No tenés marcadores", 26 | "Bookmarklet" : "Marcadores", 27 | "Export & Import" : "Exportar e importar", 28 | "Export" : "Exportar", 29 | "Import" : "Importar" 30 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 31 | } -------------------------------------------------------------------------------- /l10n/eu.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Bookmarks" : "Laster-markak", 3 | "Bookm." : "Lasterm.", 4 | "No file provided for import" : "Ez da inportatzeko fitxategirik zehaztu", 5 | "Unsupported file type for import" : "Fitxategi mota hau ez da onartzen inportatzeko.", 6 | "Error" : "Errorea", 7 | "Tags" : "Etiketak", 8 | "Filter by tag" : "Iragazi etiketaren arabera", 9 | "Warning" : "Abisua", 10 | "Are you sure you want to remove this tag from every entry?" : "Ziur zaude etiketa hau sarrera guztietatik ezabatu nahi duzula?", 11 | "Import error" : "Inportazio errorea", 12 | "Import completed successfully." : "Inportazioa ongi egin da.", 13 | "Uploading..." : "Igotzen...", 14 | "Add a bookmark" : "Gehitu laster-marka", 15 | "The title of the page" : "Orriaren izenburua", 16 | "The address of the page" : "Orriaren helbidea", 17 | "Description of the page" : "Orriaren deskribapena", 18 | "Save" : "Gorde", 19 | "Delete" : "Ezabatu", 20 | "Edit" : "Editatu", 21 | "Cancel" : "Ezeztatu", 22 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" : "Web orri bat laster-marketara azkar gehitzeko, arrastratu hau zure arakatzailearen laster-marketara eta klikatu bertan:", 23 | "Add to ownCloud" : "Gehitu ownCloud-era", 24 | "Address" : "Helbidea", 25 | "You have no bookmarks" : "Ez duzu laster-markarik", 26 | "Bookmarklet" : "Bookmarklet", 27 | "Export & Import" : "Exportatu eta inportatu", 28 | "Export" : "Exportatu", 29 | "Import" : "Inportatu" 30 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 31 | } -------------------------------------------------------------------------------- /l10n/ko.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "bookmarks", 3 | { 4 | "Bookmarks" : "책갈피", 5 | "Bookm." : "책갈피", 6 | "No file provided for import" : "가져올 파일을 지정하지 않았음", 7 | "Unsupported file type for import" : "가져올 수 없는 파일 형식임", 8 | "Some Error happened." : "오류가 발생했습니다.", 9 | "Error" : "오류", 10 | "Tags" : "태그", 11 | "Filter by tag" : "태그로 필터링", 12 | "Are you sure you want to remove this bookmark?" : "이 책갈피를 삭제하시겠습니까?", 13 | "Warning" : "경고", 14 | "Are you sure you want to remove this tag from every entry?" : "모든 항목에서 이 태그를 삭제하시겠습니까?", 15 | "Import error" : "가져오기 오류", 16 | "Import completed successfully." : "성공적으로 가져왔습니다.", 17 | "Uploading..." : "업로드 중...", 18 | "Add a bookmark" : "책갈피 추가", 19 | "This URL is already bookmarked! Overwrite?" : "이 URL이 이미 책갈피에 추가되어 있습니다! 덮어쓰시겠습니까?", 20 | "The title of the page" : "페이지 제목", 21 | "The address of the page" : "페이지 주소", 22 | "Description of the page" : "페이지 설명", 23 | "Save" : "저장", 24 | "Delete" : "삭제", 25 | "Edit" : "편집", 26 | "Cancel" : "취소", 27 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" : "웹 브라우저 책갈피 항목에 다음 링크를 끌어다 놓으면 나중에 볼 웹 페이지를 빠르게 구독할 때 사용할 수 있습니다:", 28 | "Add to ownCloud" : "ownCloud에 추가", 29 | "Address" : "주소", 30 | "Filterable Tags" : "필터 가능한 태그", 31 | "You have no bookmarks" : "책갈피가 없습니다", 32 | "You can also import a bookmark file" : "책갈피 파일을 가져올 수 있습니다", 33 | "Bookmarklet" : "북마크릿", 34 | "Export & Import" : "내보내기 및 가져오기", 35 | "Export" : "내보내기", 36 | "Import" : "가져오기" 37 | }, 38 | "nplurals=1; plural=0;"); 39 | -------------------------------------------------------------------------------- /l10n/es_AR.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "bookmarks", 3 | { 4 | "Bookmarks" : "Marcadores", 5 | "Bookm." : "Marc.", 6 | "No file provided for import" : "No se proveyeron archivos para importar", 7 | "Unsupported file type for import" : "Tipo de archivo no soportado para importar", 8 | "Error" : "Error", 9 | "Tags" : "Etiquetas", 10 | "Filter by tag" : "Filtrar por etiquetas", 11 | "Warning" : "Atención", 12 | "Are you sure you want to remove this tag from every entry?" : "¿Estás seguro de que querés borrar esta etiqueta de todos los elementos?", 13 | "Import error" : "Error al importar", 14 | "Import completed successfully." : "Importación completada con éxito.", 15 | "Uploading..." : "Subiendo...", 16 | "Add a bookmark" : "Agregar un marcador", 17 | "The title of the page" : "El título de la página", 18 | "The address of the page" : "La dirección de la página", 19 | "Description of the page" : "Descripción de la página", 20 | "Save" : "Guardar", 21 | "Delete" : "Borrar", 22 | "Edit" : "Editar", 23 | "Cancel" : "Cancelar", 24 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" : "Arrastrá desde aquí a los marcadores de tu navegador, y hacé click cuando quieras marcar una página web:", 25 | "Add to ownCloud" : "Agregar a ownCloud", 26 | "Address" : "Dirección", 27 | "You have no bookmarks" : "No tenés marcadores", 28 | "Bookmarklet" : "Marcadores", 29 | "Export & Import" : "Exportar e importar", 30 | "Export" : "Exportar", 31 | "Import" : "Importar" 32 | }, 33 | "nplurals=2; plural=(n != 1);"); 34 | -------------------------------------------------------------------------------- /js/settings.js: -------------------------------------------------------------------------------- 1 | function attachSettingEvent(event) { 2 | event.preventDefault(); 3 | fileUpload($(this).closest('form'), $('#upload')); 4 | } 5 | 6 | function exportBm() { 7 | window.location = $(this).attr('href'); 8 | } 9 | 10 | function fileUpload(form, resultDiv) { 11 | 12 | var uploadEventHandler = function () { 13 | var data = {}; 14 | try { 15 | data = $.parseJSON(iframe.contents().text()); 16 | } catch (e) { 17 | } 18 | if (!data) { 19 | resultDiv.text(t('bookmark', 'Import error')); 20 | return; 21 | } 22 | if (data.status == 'error') { 23 | var list = $("
    ").addClass('setting_error_list'); 24 | console.log(data); 25 | $.each(data.data, function (index, item) { 26 | list.append($("
  • ").text(item)); 27 | }); 28 | resultDiv.html(list); 29 | } else { 30 | resultDiv.text(t('bookmark', 'Import completed successfully.')); 31 | getBookmarks(); 32 | } 33 | }; 34 | 35 | // Create the iframe... 36 | var iframe; 37 | if ($('#upload_iframe').length === 1) 38 | iframe = $('#upload_iframe'); 39 | else { 40 | iframe = $('').attr({ 41 | id: 'upload_iframe', 42 | name: 'upload_iframe', 43 | width: '0', 44 | height: '0', 45 | border: '0', 46 | style: 'display:none' 47 | }).bind('load', uploadEventHandler); 48 | form.append(iframe); 49 | } 50 | 51 | // Set properties of form... 52 | form.attr({ 53 | target: 'upload_iframe', 54 | method: 'post', 55 | enctype: 'multipart/form-data', 56 | encoding: 'multipart/form-data' 57 | }); 58 | 59 | // Submit the form... 60 | form.submit(); 61 | 62 | resultDiv.text(t('bookmark', 'Uploading...')); 63 | } -------------------------------------------------------------------------------- /l10n/eu.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "bookmarks", 3 | { 4 | "Bookmarks" : "Laster-markak", 5 | "Bookm." : "Lasterm.", 6 | "No file provided for import" : "Ez da inportatzeko fitxategirik zehaztu", 7 | "Unsupported file type for import" : "Fitxategi mota hau ez da onartzen inportatzeko.", 8 | "Error" : "Errorea", 9 | "Tags" : "Etiketak", 10 | "Filter by tag" : "Iragazi etiketaren arabera", 11 | "Warning" : "Abisua", 12 | "Are you sure you want to remove this tag from every entry?" : "Ziur zaude etiketa hau sarrera guztietatik ezabatu nahi duzula?", 13 | "Import error" : "Inportazio errorea", 14 | "Import completed successfully." : "Inportazioa ongi egin da.", 15 | "Uploading..." : "Igotzen...", 16 | "Add a bookmark" : "Gehitu laster-marka", 17 | "The title of the page" : "Orriaren izenburua", 18 | "The address of the page" : "Orriaren helbidea", 19 | "Description of the page" : "Orriaren deskribapena", 20 | "Save" : "Gorde", 21 | "Delete" : "Ezabatu", 22 | "Edit" : "Editatu", 23 | "Cancel" : "Ezeztatu", 24 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" : "Web orri bat laster-marketara azkar gehitzeko, arrastratu hau zure arakatzailearen laster-marketara eta klikatu bertan:", 25 | "Add to ownCloud" : "Gehitu ownCloud-era", 26 | "Address" : "Helbidea", 27 | "You have no bookmarks" : "Ez duzu laster-markarik", 28 | "Bookmarklet" : "Bookmarklet", 29 | "Export & Import" : "Exportatu eta inportatu", 30 | "Export" : "Exportatu", 31 | "Import" : "Inportatu" 32 | }, 33 | "nplurals=2; plural=(n != 1);"); 34 | -------------------------------------------------------------------------------- /l10n/ja.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Bookmarks" : "ブックマーク", 3 | "Bookm." : "ブックマーク", 4 | "No file provided for import" : "インポートするファイルが指定されていません", 5 | "Unsupported file type for import" : "インポートでは未サポートのファイルタイプ", 6 | "Some Error happened." : "エラーが発生しました。", 7 | "Error" : "エラー", 8 | "Tags" : "タグ", 9 | "Filter by tag" : "タグによるフィルター", 10 | "Are you sure you want to remove this bookmark?" : "このブックマークを削除してもよろしいですか?", 11 | "Warning" : "警告", 12 | "Are you sure you want to remove this tag from every entry?" : "すべてのエントリからこのタグを削除してもよろしいですか?", 13 | "Import error" : "インポートエラー", 14 | "Import completed successfully." : "インポートは正常に完了しました。", 15 | "Uploading..." : "アップロード中...", 16 | "Add a bookmark" : "ブックマークを追加", 17 | "This URL is already bookmarked! Overwrite?" : "このURLはすでにブックマークされています!上書きしますか?", 18 | "The title of the page" : "ページのタイトル", 19 | "The address of the page" : "ページのアドレス", 20 | "Description of the page" : "ページの説明", 21 | "Save" : "保存", 22 | "Delete" : "削除", 23 | "Edit" : "編集", 24 | "Cancel" : "キャンセル", 25 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" : "Webページをすぐにブックマークしたい場合は、これをブラウザーのブックマークにドラッグし、クリックしてください:", 26 | "Add to ownCloud" : "ownCloud に追加", 27 | "Address" : "アドレス", 28 | "Filterable Tags" : "絞り込み可能なタグ", 29 | "You have no bookmarks" : "ブックマークがありません", 30 | "You can also import a bookmark file" : "ブックマークファイルをインポートすることもできます。", 31 | "Bookmarklet" : "ブックマークレット", 32 | "Export & Import" : "エクスポートとインポート", 33 | "Export" : "エクスポート", 34 | "Import" : "インポート" 35 | },"pluralForm" :"nplurals=1; plural=0;" 36 | } -------------------------------------------------------------------------------- /l10n/ja.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "bookmarks", 3 | { 4 | "Bookmarks" : "ブックマーク", 5 | "Bookm." : "ブックマーク", 6 | "No file provided for import" : "インポートするファイルが指定されていません", 7 | "Unsupported file type for import" : "インポートでは未サポートのファイルタイプ", 8 | "Some Error happened." : "エラーが発生しました。", 9 | "Error" : "エラー", 10 | "Tags" : "タグ", 11 | "Filter by tag" : "タグによるフィルター", 12 | "Are you sure you want to remove this bookmark?" : "このブックマークを削除してもよろしいですか?", 13 | "Warning" : "警告", 14 | "Are you sure you want to remove this tag from every entry?" : "すべてのエントリからこのタグを削除してもよろしいですか?", 15 | "Import error" : "インポートエラー", 16 | "Import completed successfully." : "インポートは正常に完了しました。", 17 | "Uploading..." : "アップロード中...", 18 | "Add a bookmark" : "ブックマークを追加", 19 | "This URL is already bookmarked! Overwrite?" : "このURLはすでにブックマークされています!上書きしますか?", 20 | "The title of the page" : "ページのタイトル", 21 | "The address of the page" : "ページのアドレス", 22 | "Description of the page" : "ページの説明", 23 | "Save" : "保存", 24 | "Delete" : "削除", 25 | "Edit" : "編集", 26 | "Cancel" : "キャンセル", 27 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" : "Webページをすぐにブックマークしたい場合は、これをブラウザーのブックマークにドラッグし、クリックしてください:", 28 | "Add to ownCloud" : "ownCloud に追加", 29 | "Address" : "アドレス", 30 | "Filterable Tags" : "絞り込み可能なタグ", 31 | "You have no bookmarks" : "ブックマークがありません", 32 | "You can also import a bookmark file" : "ブックマークファイルをインポートすることもできます。", 33 | "Bookmarklet" : "ブックマークレット", 34 | "Export & Import" : "エクスポートとインポート", 35 | "Export" : "エクスポート", 36 | "Import" : "インポート" 37 | }, 38 | "nplurals=1; plural=0;"); 39 | -------------------------------------------------------------------------------- /controller/lib/search.php: -------------------------------------------------------------------------------- 1 | 8 | * 9 | * This library is free software; you can redistribute it and/or 10 | * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE 11 | * License as published by the Free Software Foundation; either 12 | * version 3 of the License, or any later version. 13 | * 14 | * This library is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU AFFERO GENERAL PUBLIC LICENSE for more details. 18 | * 19 | * You should have received a copy of the GNU Affero General Public 20 | * License along with this library. If not, see . 21 | * 22 | */ 23 | 24 | namespace OCA\Bookmarks\Controller\Lib; 25 | 26 | use \OCA\Bookmarks\Controller\Lib\Bookmarks; 27 | 28 | class Search extends \OCP\Search\Provider{ 29 | 30 | function search($query) { 31 | $results = array(); 32 | 33 | if (substr_count($query, ' ') > 0) { 34 | $search_words = explode(' ', $query); 35 | } else { 36 | $search_words = $query; 37 | } 38 | 39 | $db = \OC::$server->getDb(); 40 | $user = \OCP\User::getUser(); 41 | 42 | $bookmarks = Bookmarks::findBookmarks($user, $db, 0, 'id', $search_words, false); 43 | $l = \OC::$server->getL10N('bookmarks'); //resulttype can't be localized, javascript relies on that type 44 | foreach ($bookmarks as $bookmark) { 45 | $results[] = new \OC_Search_Result($bookmark['title'], $bookmark['title'], $bookmark['url'], (string) $l->t('Bookm.')); 46 | } 47 | 48 | return $results; 49 | } 50 | 51 | } 52 | -------------------------------------------------------------------------------- /l10n/vi.php: -------------------------------------------------------------------------------- 1 | "Đánh dấu", 4 | "Bookm." => "Bookm.", 5 | "No file provided for import" => "Không có tập tin nào để nhập vào", 6 | "Unsupported file type for import" => "Loại tập tin không được hỗ trợ để nhập vào", 7 | "Some Error happened." => "Một số lỗi xảy ra.", 8 | "Error" => "Lỗi", 9 | "Tags" => "Tags", 10 | "Filter by tag" => "Lọc theo tag", 11 | "Are you sure you want to remove this bookmark?" => "Bạn có chắc chắn muốn xóa dấu trang này?", 12 | "Warning" => "Cảnh báo", 13 | "Are you sure you want to remove this tag from every entry?" => "Bạn có chắc chắn bạn muốn loại bỏ tags này ?", 14 | "Import error" => "Lỗi khi nhập", 15 | "Import completed successfully." => "Nhập vào thành công", 16 | "Uploading..." => "tải lên...", 17 | "Add a bookmark" => " Thêm bookmark", 18 | "This URL is already bookmarked! Overwrite?" => "URL này đã được đánh dấu! Ghi đè lên?", 19 | "The title of the page" => "Tiêu đề trang", 20 | "The address of the page" => "Địa chỉ trang", 21 | "Description of the page" => "Mô tả trang", 22 | "Save" => "Lưu", 23 | "Delete" => "Xóa", 24 | "Edit" => "Sửa", 25 | "Cancel" => "Hủy", 26 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" => "Kéo vào trình duyệt làm bookmark ,khi bạn muốn đánh dấu một trang web một cách nhanh chóng:", 27 | "Add to ownCloud" => "Thêm vào ownCloud", 28 | "Address" => "Địa chỉ", 29 | "Filterable Tags" => "Lọc theo tag", 30 | "You have no bookmarks" => "Bạn chưa có bookmark nào", 31 | "You can also import a bookmark file" => "Bạn cũng có thể thử nhập vào một tập tin bookmark", 32 | "Bookmarklet" => "Bookmarklet", 33 | "Export & Import" => "Xuất ra & Nhập vào", 34 | "Export" => "Xuất ra", 35 | "Import" => "Nhập vào" 36 | ); 37 | $PLURAL_FORMS = "nplurals=1; plural=0;"; 38 | -------------------------------------------------------------------------------- /l10n/he.php: -------------------------------------------------------------------------------- 1 | "סימניות", 4 | "Failed to import one bookmark, because: " => "נכשל ביבוא סימנייה אחת, מהסיבה:", 5 | "Bookm." => "סימניה.", 6 | "No file provided for import" => "לא סופק קובץ לייבוא", 7 | "Unsupported file type for import" => "סוג הקובץ אינו ניתן לייבוא", 8 | "Some Error happened." => "אירעו מספר שגיאות.", 9 | "Error" => "שגיאה", 10 | "Tags" => "תגיות", 11 | "Filter by tag" => "סנן לפי תגית", 12 | "Are you sure you want to remove this bookmark?" => "האם באמת להסיר סימנייה זו?", 13 | "Warning" => "אזהרה", 14 | "Are you sure you want to remove this tag from every entry?" => "האם אתה בטוח שברצונך להסיר את התגית מכל הרשומות?", 15 | "Import error" => "שגיאת יבוא", 16 | "Import completed successfully." => "ייבוא הושלם בהצלחה.", 17 | "Uploading..." => "העלאה...", 18 | "Add a bookmark" => "הוסף סימניה", 19 | "This URL is already bookmarked! Overwrite?" => "כתובת אינטרנט זו כבר סומנה כסימנייה! האם לדרוס?", 20 | "The title of the page" => "כותרת הדף", 21 | "The address of the page" => "כתובת הדף", 22 | "Description of the page" => "תיאור הדף", 23 | "Save" => "שמירה", 24 | "Delete" => "מחיקה", 25 | "Edit" => "עריכה", 26 | "Cancel" => "ביטול", 27 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" => "ניתן לגרור את הקישור הזה אל סרגל הסימניות בדפדפן שלך וללחוץ עליו כאשר מעוניינים ליצור סימניה לאתר במהירות.", 28 | "Add to ownCloud" => "הוסף לownCloud", 29 | "Address" => "כתובת", 30 | "Filterable Tags" => "תגיות סינון", 31 | "You have no bookmarks" => "אין ברשותך סימניות", 32 | "You can also import a bookmark file" => "ניתן גם ליבא קובץ סימניות", 33 | "Bookmarklet" => "יישומון סימנייה", 34 | "Export & Import" => "ייבוא וייצוא", 35 | "Export" => "יצוא", 36 | "Import" => "יבא" 37 | ); 38 | $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 39 | -------------------------------------------------------------------------------- /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 ([bookmarks](https://github.com/owncloud/bookmarks/issues)) is *only* for issues within the ownCloud bookmarks 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 | -------------------------------------------------------------------------------- /l10n/en_GB.php: -------------------------------------------------------------------------------- 1 | "Bookmarks", 4 | "Bookm." => "Bookm.", 5 | "No file provided for import" => "No file provided for import", 6 | "Unsupported file type for import" => "Unsupported file type for import", 7 | "Some Error happened." => "Some Error happened.", 8 | "Error" => "Error", 9 | "Tags" => "Tags", 10 | "Filter by tag" => "Filter by tag", 11 | "Are you sure you want to remove this bookmark?" => "Are you sure you want to remove this bookmark?", 12 | "Warning" => "Warning", 13 | "Are you sure you want to remove this tag from every entry?" => "Are you sure you want to remove this tag from every entry?", 14 | "Import error" => "Import error", 15 | "Import completed successfully." => "Import completed successfully.", 16 | "Uploading..." => "Uploading...", 17 | "Add a bookmark" => "Add a bookmark", 18 | "This URL is already bookmarked! Overwrite?" => "This URL is already bookmarked! Overwrite?", 19 | "The title of the page" => "The title of the page", 20 | "The address of the page" => "The address of the page", 21 | "Description of the page" => "Description of the page", 22 | "Save" => "Save", 23 | "Delete" => "Delete", 24 | "Edit" => "Edit", 25 | "Cancel" => "Cancel", 26 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" => "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:", 27 | "Add to ownCloud" => "Add to ownCloud", 28 | "Address" => "Address", 29 | "Filterable Tags" => "Filterable Tags", 30 | "You have no bookmarks" => "You have no bookmarks", 31 | "You can also import a bookmark file" => "You can also import a bookmark file", 32 | "Bookmarklet" => "Bookmarklet", 33 | "Export & Import" => "Export & Import", 34 | "Export" => "Export", 35 | "Import" => "Import" 36 | ); 37 | $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 38 | -------------------------------------------------------------------------------- /l10n/sv.php: -------------------------------------------------------------------------------- 1 | "Bokmärken", 4 | "Bookm." => "Bokm.", 5 | "No file provided for import" => "Ingen fil försedd för import", 6 | "Unsupported file type for import" => "Filtypen stöds ej för import", 7 | "Some Error happened." => "Något fel inträffade", 8 | "Error" => "Fel", 9 | "Tags" => "Taggar", 10 | "Filter by tag" => "Filtrera på etikett", 11 | "Are you sure you want to remove this bookmark?" => "Är du säker på att du vill ta bort detta bokmärke?", 12 | "Warning" => "Varning", 13 | "Are you sure you want to remove this tag from every entry?" => "Är du säker på att du vill ta bort denna tagg från varje post?", 14 | "Import error" => "Importfel", 15 | "Import completed successfully." => "Import slutförd.", 16 | "Uploading..." => "Laddar upp...", 17 | "Add a bookmark" => "Lägg till ett bokmärke", 18 | "This URL is already bookmarked! Overwrite?" => "Denna länk är redan bokmärkt. Skriva över?", 19 | "The title of the page" => "Titel på sidan", 20 | "The address of the page" => "Adress till sidan", 21 | "Description of the page" => "Beskrivning av sidan", 22 | "Save" => "Spara", 23 | "Delete" => "Radera", 24 | "Edit" => "Redigera", 25 | "Cancel" => "Avbryt", 26 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" => "Dra till din webbläsares bokmärken och klicka på det när du vill bokmärka en webbsida snabbt:", 27 | "Add to ownCloud" => "Lägg till på ownCloud", 28 | "Address" => "Adress", 29 | "Filterable Tags" => "Filtrerbara Taggar", 30 | "You have no bookmarks" => "Du har inga bokmärken", 31 | "You can also import a bookmark file" => "Du kan också importera en bokmärkesfil", 32 | "Bookmarklet" => "Bokmärke", 33 | "Export & Import" => "Export & Import", 34 | "Export" => "Exportera", 35 | "Import" => "Importera" 36 | ); 37 | $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 38 | -------------------------------------------------------------------------------- /l10n/id.php: -------------------------------------------------------------------------------- 1 | "Markah", 4 | "Bookm." => "Markah", 5 | "No file provided for import" => "Tidak ada berkas untuk diimpor", 6 | "Unsupported file type for import" => "Tipe berkas tidak didukung untuk diimpor", 7 | "Some Error happened." => "Terjadi beberapa kesalahan.", 8 | "Error" => "Kesalahan", 9 | "Tags" => "Tag", 10 | "Filter by tag" => "Filter berdasar tag", 11 | "Are you sure you want to remove this bookmark?" => "Apakah Anda yakin ingin menghapus markah ini?", 12 | "Warning" => "Peringatan", 13 | "Are you sure you want to remove this tag from every entry?" => "Yakin ingin menghapus tag ini dari semua entri?", 14 | "Import error" => "Galat ketika mengimpor", 15 | "Import completed successfully." => "Proses impor selesai dengan sukses.", 16 | "Uploading..." => "Mengunggah...", 17 | "Add a bookmark" => "Tambah markah", 18 | "This URL is already bookmarked! Overwrite?" => "URL ini telah di markahi! Timpa?", 19 | "The title of the page" => "Judul halaman", 20 | "The address of the page" => "Alamat halaman", 21 | "Description of the page" => "Deskripsi halaman", 22 | "Save" => "Simpan", 23 | "Delete" => "Hapus", 24 | "Edit" => "Sunting", 25 | "Cancel" => "Batal", 26 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" => "Seret ke bilah alat markah peramban Anda untuk diklik, jika Anda ingin membuat markah halaman web dengan cepat:", 27 | "Add to ownCloud" => "Tambah ke ownCloud", 28 | "Address" => "Alamat", 29 | "Filterable Tags" => "Tag dapat Disaring", 30 | "You have no bookmarks" => "Anda tidak punya markah", 31 | "You can also import a bookmark file" => "Anda juga dapat mengimpor berkas markah", 32 | "Bookmarklet" => "Bookmarklet", 33 | "Export & Import" => "Ekspor & Impor", 34 | "Export" => "Ekspor", 35 | "Import" => "Impor" 36 | ); 37 | $PLURAL_FORMS = "nplurals=1; plural=0;"; 38 | -------------------------------------------------------------------------------- /l10n/vi.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Bookmarks" : "Đánh dấu", 3 | "Bookm." : "Bookm.", 4 | "No file provided for import" : "Không có tập tin nào để nhập vào", 5 | "Unsupported file type for import" : "Loại tập tin không được hỗ trợ để nhập vào", 6 | "Some Error happened." : "Một số lỗi xảy ra.", 7 | "Error" : "Lỗi", 8 | "Tags" : "Tags", 9 | "Filter by tag" : "Lọc theo tag", 10 | "Are you sure you want to remove this bookmark?" : "Bạn có chắc chắn muốn xóa dấu trang này?", 11 | "Warning" : "Cảnh báo", 12 | "Are you sure you want to remove this tag from every entry?" : "Bạn có chắc chắn bạn muốn loại bỏ tags này ?", 13 | "Import error" : "Lỗi khi nhập", 14 | "Import completed successfully." : "Nhập vào thành công", 15 | "Uploading..." : "tải lên...", 16 | "Add a bookmark" : " Thêm bookmark", 17 | "This URL is already bookmarked! Overwrite?" : "URL này đã được đánh dấu! Ghi đè lên?", 18 | "The title of the page" : "Tiêu đề trang", 19 | "The address of the page" : "Địa chỉ trang", 20 | "Description of the page" : "Mô tả trang", 21 | "Save" : "Lưu", 22 | "Delete" : "Xóa", 23 | "Edit" : "Sửa", 24 | "Cancel" : "Hủy", 25 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" : "Kéo vào trình duyệt làm bookmark ,khi bạn muốn đánh dấu một trang web một cách nhanh chóng:", 26 | "Add to ownCloud" : "Thêm vào ownCloud", 27 | "Address" : "Địa chỉ", 28 | "Filterable Tags" : "Lọc theo tag", 29 | "You have no bookmarks" : "Bạn chưa có bookmark nào", 30 | "You can also import a bookmark file" : "Bạn cũng có thể thử nhập vào một tập tin bookmark", 31 | "Bookmarklet" : "Bookmarklet", 32 | "Export & Import" : "Xuất ra & Nhập vào", 33 | "Export" : "Xuất ra", 34 | "Import" : "Nhập vào" 35 | },"pluralForm" :"nplurals=1; plural=0;" 36 | } -------------------------------------------------------------------------------- /l10n/sk_SK.php: -------------------------------------------------------------------------------- 1 | "Záložky", 4 | "Bookm." => "Zál.", 5 | "No file provided for import" => "Žiadny súbor na import", 6 | "Unsupported file type for import" => "Nepodporovaný typ súboru pre import", 7 | "Some Error happened." => "Stala sa nejaká chyba", 8 | "Error" => "Chyba", 9 | "Tags" => "Značky", 10 | "Filter by tag" => "Filtrovať podľa značky", 11 | "Are you sure you want to remove this bookmark?" => "Naozaj chcete odstrániť túto záložku?", 12 | "Warning" => "Upozornenie", 13 | "Are you sure you want to remove this tag from every entry?" => "Naozaj ste si istý, že chcete odstrániť túto značku z každého záznamu?", 14 | "Import error" => "Chyba importu", 15 | "Import completed successfully." => "Import prebehol úspešne.", 16 | "Uploading..." => "Odosielanie...", 17 | "Add a bookmark" => "Pridať záložku", 18 | "This URL is already bookmarked! Overwrite?" => "Táto URL už je medzi záložkami! Prepísať?", 19 | "The title of the page" => "Názov stránky", 20 | "The address of the page" => "Adresa stránky", 21 | "Description of the page" => "Popis stránky", 22 | "Save" => "Uložiť", 23 | "Delete" => "Zmazať", 24 | "Edit" => "Upraviť", 25 | "Cancel" => "Zrušiť", 26 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" => "Presuňte toto do vášho prehliadača a kliknite ak chcete aktuálnu stránku uložiť do záložiek.", 27 | "Add to ownCloud" => "Pridať do ownCloudu", 28 | "Address" => "Adresa", 29 | "Filterable Tags" => "Filtrovateľné značky", 30 | "You have no bookmarks" => "Nemáte žiadne záložky", 31 | "You can also import a bookmark file" => "Môžete tiež importovať súbor so záložkami", 32 | "Bookmarklet" => "Bookmarklet", 33 | "Export & Import" => "Export & Import", 34 | "Export" => "Export", 35 | "Import" => "Import" 36 | ); 37 | $PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; 38 | -------------------------------------------------------------------------------- /l10n/da.php: -------------------------------------------------------------------------------- 1 | "Bogmærker", 4 | "Bookm." => "Bogm.", 5 | "No file provided for import" => "Ingen fil opgivet til import", 6 | "Unsupported file type for import" => "Filtypen understøttes ikke for import", 7 | "Some Error happened." => "Der opstod en fejl.", 8 | "Error" => "Fejl", 9 | "Tags" => "Mærker", 10 | "Filter by tag" => "Filtrér efter mærke", 11 | "Are you sure you want to remove this bookmark?" => "Er du sikker på du vil slette dette bogmærke?", 12 | "Warning" => "Advarsel", 13 | "Are you sure you want to remove this tag from every entry?" => "Er du sikker på at du vil fjerne dette mærke fra alle poster?", 14 | "Import error" => "Fejl ved import", 15 | "Import completed successfully." => "Importen blev fuldført.", 16 | "Uploading..." => "Uploader...", 17 | "Add a bookmark" => "Tilføj bogmærke", 18 | "This URL is already bookmarked! Overwrite?" => "Der er allerede et bogmærke for denne URL! Overskriv?", 19 | "The title of the page" => "Sidens titel", 20 | "The address of the page" => "Sidens adresse", 21 | "Description of the page" => "Sidens beskrivelse", 22 | "Save" => "Gem", 23 | "Delete" => "Slet", 24 | "Edit" => "Redigér", 25 | "Cancel" => "Annullér", 26 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" => "Træk denne til dine browserbogmærker og klik på den, når du ønsker at et bogmærke til hjemmesiden hurtigt:", 27 | "Add to ownCloud" => "Tilføj til ownCloud", 28 | "Address" => "Adresse", 29 | "Filterable Tags" => "Filtrérbare mærker", 30 | "You have no bookmarks" => "Du har ingen bogmærker", 31 | "You can also import a bookmark file" => "Du kan også importere en fil med bogmærker", 32 | "Bookmarklet" => "Bookmarklet", 33 | "Export & Import" => "Eksport & import", 34 | "Export" => "Eksportér", 35 | "Import" => "Importér" 36 | ); 37 | $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 38 | -------------------------------------------------------------------------------- /l10n/eo.php: -------------------------------------------------------------------------------- 1 | "Legosignoj", 4 | "Bookm." => "Legsign.", 5 | "No file provided for import" => "Neniu dosiero aldonita por enporti", 6 | "Unsupported file type for import" => "Dosiertipo nekongrua kun enporto", 7 | "Some Error happened." => "Iu eraro okazis.", 8 | "Error" => "Eraro", 9 | "Tags" => "Etikedoj", 10 | "Filter by tag" => "Filtri laŭ etikedo", 11 | "Are you sure you want to remove this bookmark?" => "Ĉu vi certe volas forigi ĉi tiun legosignon?", 12 | "Warning" => "Averto", 13 | "Are you sure you want to remove this tag from every entry?" => "Ĉu vi vere volas forigi ĉi tiun etikedon el ĉiu ero?", 14 | "Import error" => "Enporta eraro", 15 | "Import completed successfully." => "Enporto plenumiĝis sukcese.", 16 | "Uploading..." => "Alŝutante...", 17 | "Add a bookmark" => "Aldoni legosignon", 18 | "This URL is already bookmarked! Overwrite?" => "Ĉu tiu adreso jam estas legosigno! Ĉu anstataŭigi?", 19 | "The title of the page" => "Titolo de la paĝo", 20 | "The address of the page" => "Adreso de la paĝo", 21 | "Description of the page" => "Priskribo de la paĝo", 22 | "Save" => "Konservi", 23 | "Delete" => "Forigi", 24 | "Edit" => "Redakti", 25 | "Cancel" => "Nuligi", 26 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" => "Ŝovu tion ĉi al la legosignoj de via TTT-legilo kaj klaku ĝin, se vi volas rapide legosignigi TTT-paĝon:", 27 | "Add to ownCloud" => "Aldoni al ownCloud", 28 | "Address" => "Adreso", 29 | "Filterable Tags" => "Filtreblaj etikedoj", 30 | "You have no bookmarks" => "Vi havas neniun legosignon", 31 | "You can also import a bookmark file" => "Vi ankaŭ povas enporti legosignodosieron", 32 | "Bookmarklet" => "Kodosigno", 33 | "Export & Import" => "Malenporti kaj enporti", 34 | "Export" => "Elporti", 35 | "Import" => "Enporti" 36 | ); 37 | $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 38 | -------------------------------------------------------------------------------- /l10n/fa.php: -------------------------------------------------------------------------------- 1 | "نشانک‌ها", 4 | "Bookm." => "Bookm", 5 | "No file provided for import" => "هیچ فایلی وارد نشده است.", 6 | "Unsupported file type for import" => "نوع فایل برای وارد کردن معتبر نیست", 7 | "Some Error happened." => "یک خطا پیش آمد.", 8 | "Error" => "خطا", 9 | "Tags" => "برچسب‌ها", 10 | "Filter by tag" => "فیلتر بر اساس برچسب", 11 | "Are you sure you want to remove this bookmark?" => "آیا از حذف این نشانک اطمینان دارید ؟", 12 | "Warning" => "اخطار", 13 | "Are you sure you want to remove this tag from every entry?" => "آیا مطمئن هستید که میخواهید این برچسب را از هر مطلب حذف کنید؟", 14 | "Import error" => "وارد کردن خطا", 15 | "Import completed successfully." => "وارد کردن با موفقیت انجام شد", 16 | "Uploading..." => "درحال بارگذاری...", 17 | "Add a bookmark" => "اضافه کردن یک نشانک", 18 | "This URL is already bookmarked! Overwrite?" => "این لینک قبلا نشانک گذاری شده است . آیا میخواهید بازنویسی کنید ؟", 19 | "The title of the page" => "عنوان صفحه", 20 | "The address of the page" => "آدرس صحفه", 21 | "Description of the page" => "توضیحات صفحه", 22 | "Save" => "ذخیره", 23 | "Delete" => "حذف", 24 | "Edit" => "ویرایش", 25 | "Cancel" => "منصرف شدن", 26 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" => "هنگامی که می‌خواهید کی صفحه‌ی اینترنتی را بسرعت نشان کنید، این را به نشانه‌های مرورگر خود بکشید و روی آن کلیک کنید.", 27 | "Add to ownCloud" => "افزودن به ownCloud", 28 | "Address" => "آدرس", 29 | "Filterable Tags" => "برچسب های قابل فیلتر شدن", 30 | "You have no bookmarks" => "شما هیچ نشانکی ندارید", 31 | "You can also import a bookmark file" => "شما همچنین می توانید یک فایل نشانه دار را وارد نمایید .", 32 | "Bookmarklet" => "بوکمارک لت", 33 | "Export & Import" => "وارد کردن و خروجی گرفتن", 34 | "Export" => "خروجی گرفتن", 35 | "Import" => "وارد کردن" 36 | ); 37 | $PLURAL_FORMS = "nplurals=1; plural=0;"; 38 | -------------------------------------------------------------------------------- /l10n/vi.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "bookmarks", 3 | { 4 | "Bookmarks" : "Đánh dấu", 5 | "Bookm." : "Bookm.", 6 | "No file provided for import" : "Không có tập tin nào để nhập vào", 7 | "Unsupported file type for import" : "Loại tập tin không được hỗ trợ để nhập vào", 8 | "Some Error happened." : "Một số lỗi xảy ra.", 9 | "Error" : "Lỗi", 10 | "Tags" : "Tags", 11 | "Filter by tag" : "Lọc theo tag", 12 | "Are you sure you want to remove this bookmark?" : "Bạn có chắc chắn muốn xóa dấu trang này?", 13 | "Warning" : "Cảnh báo", 14 | "Are you sure you want to remove this tag from every entry?" : "Bạn có chắc chắn bạn muốn loại bỏ tags này ?", 15 | "Import error" : "Lỗi khi nhập", 16 | "Import completed successfully." : "Nhập vào thành công", 17 | "Uploading..." : "tải lên...", 18 | "Add a bookmark" : " Thêm bookmark", 19 | "This URL is already bookmarked! Overwrite?" : "URL này đã được đánh dấu! Ghi đè lên?", 20 | "The title of the page" : "Tiêu đề trang", 21 | "The address of the page" : "Địa chỉ trang", 22 | "Description of the page" : "Mô tả trang", 23 | "Save" : "Lưu", 24 | "Delete" : "Xóa", 25 | "Edit" : "Sửa", 26 | "Cancel" : "Hủy", 27 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" : "Kéo vào trình duyệt làm bookmark ,khi bạn muốn đánh dấu một trang web một cách nhanh chóng:", 28 | "Add to ownCloud" : "Thêm vào ownCloud", 29 | "Address" : "Địa chỉ", 30 | "Filterable Tags" : "Lọc theo tag", 31 | "You have no bookmarks" : "Bạn chưa có bookmark nào", 32 | "You can also import a bookmark file" : "Bạn cũng có thể thử nhập vào một tập tin bookmark", 33 | "Bookmarklet" : "Bookmarklet", 34 | "Export & Import" : "Xuất ra & Nhập vào", 35 | "Export" : "Xuất ra", 36 | "Import" : "Nhập vào" 37 | }, 38 | "nplurals=1; plural=0;"); 39 | -------------------------------------------------------------------------------- /l10n/et_EE.php: -------------------------------------------------------------------------------- 1 | "Järjehoidjad", 4 | "Bookm." => "Järjeh.", 5 | "No file provided for import" => "Imporditav fail puudub", 6 | "Unsupported file type for import" => "Toetuseta failitüübi import", 7 | "Some Error happened." => "Ilmnes mingi tõrge.", 8 | "Error" => "Tõrge", 9 | "Tags" => "Sildid", 10 | "Filter by tag" => "Filtreeri siltide järgi", 11 | "Are you sure you want to remove this bookmark?" => "Kas sa tõesti soovid seda järjehoidjat eemaldada?", 12 | "Warning" => "Hoiatus", 13 | "Are you sure you want to remove this tag from every entry?" => "Oled sa kindel, et sa soovid kõigilt sissekannetelt seda silti eemaldada?", 14 | "Import error" => "Viga importimisel", 15 | "Import completed successfully." => "Import on edukalt lõpetatud.", 16 | "Uploading..." => "Üleslaadimine...", 17 | "Add a bookmark" => "Lisa järjehoidja", 18 | "This URL is already bookmarked! Overwrite?" => "See URL on juba järjehoidjates. Kas kirjutada üle?", 19 | "The title of the page" => "Lehe pealkiri", 20 | "The address of the page" => "Lehe aadress", 21 | "Description of the page" => "Lehe kirjeldus", 22 | "Save" => "Salvesta", 23 | "Delete" => "Kustuta", 24 | "Edit" => "Muuda", 25 | "Cancel" => "Loobu", 26 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" => "Lohista see oma veebilehitseja järjehoidjatesse ja kliki sellele, kui sa soovid veebilehte kiirelt lisada:", 27 | "Add to ownCloud" => "Lisa ownCloudi", 28 | "Address" => "Aadress", 29 | "Filterable Tags" => "Filtreeritavad sildid", 30 | "You have no bookmarks" => "Sul pole järjehoidjaid", 31 | "You can also import a bookmark file" => "Järjehoidjafaili on võimalik importida", 32 | "Bookmarklet" => "Järjehoidja vidin", 33 | "Export & Import" => "Eksport ja import", 34 | "Export" => "Ekspordi", 35 | "Import" => "Impordi" 36 | ); 37 | $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 38 | -------------------------------------------------------------------------------- /l10n/he.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Bookmarks" : "סימניות", 3 | "Failed to import one bookmark, because: " : "נכשל ביבוא סימנייה אחת, מהסיבה:", 4 | "Bookm." : "סימניה.", 5 | "No file provided for import" : "לא סופק קובץ לייבוא", 6 | "Unsupported file type for import" : "סוג הקובץ אינו ניתן לייבוא", 7 | "Some Error happened." : "אירעו מספר שגיאות.", 8 | "Error" : "שגיאה", 9 | "Tags" : "תגיות", 10 | "Filter by tag" : "סנן לפי תגית", 11 | "Are you sure you want to remove this bookmark?" : "האם באמת להסיר סימנייה זו?", 12 | "Warning" : "אזהרה", 13 | "Are you sure you want to remove this tag from every entry?" : "האם אתה בטוח שברצונך להסיר את התגית מכל הרשומות?", 14 | "Import error" : "שגיאת יבוא", 15 | "Import completed successfully." : "ייבוא הושלם בהצלחה.", 16 | "Uploading..." : "העלאה...", 17 | "Add a bookmark" : "הוסף סימניה", 18 | "This URL is already bookmarked! Overwrite?" : "כתובת אינטרנט זו כבר סומנה כסימנייה! האם לדרוס?", 19 | "The title of the page" : "כותרת הדף", 20 | "The address of the page" : "כתובת הדף", 21 | "Description of the page" : "תיאור הדף", 22 | "Save" : "שמירה", 23 | "Delete" : "מחיקה", 24 | "Edit" : "עריכה", 25 | "Cancel" : "ביטול", 26 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" : "ניתן לגרור את הקישור הזה אל סרגל הסימניות בדפדפן שלך וללחוץ עליו כאשר מעוניינים ליצור סימניה לאתר במהירות.", 27 | "Add to ownCloud" : "הוסף לownCloud", 28 | "Address" : "כתובת", 29 | "Filterable Tags" : "תגיות סינון", 30 | "You have no bookmarks" : "אין ברשותך סימניות", 31 | "You can also import a bookmark file" : "ניתן גם ליבא קובץ סימניות", 32 | "Bookmarklet" : "יישומון סימנייה", 33 | "Export & Import" : "ייבוא וייצוא", 34 | "Export" : "יצוא", 35 | "Import" : "יבא" 36 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 37 | } -------------------------------------------------------------------------------- /l10n/sr.php: -------------------------------------------------------------------------------- 1 | "Обележивачи", 4 | "Bookm." => "Обел.", 5 | "No file provided for import" => "Нема фајла за увоз", 6 | "Unsupported file type for import" => "Неподржан тип фајла за увоз", 7 | "Some Error happened." => "Десила се нека грешка.", 8 | "Error" => "Грешка", 9 | "Tags" => "Ознаке", 10 | "Filter by tag" => "Филтрирај по ознаци", 11 | "Are you sure you want to remove this bookmark?" => "Желите ли заиста да уклоните овај обележивач?", 12 | "Warning" => "Упозорење", 13 | "Are you sure you want to remove this tag from every entry?" => "Желите ли заиста да уклоните ову ознаку из сваког уноса?", 14 | "Import error" => "Грешка увоза", 15 | "Import completed successfully." => "Увоз је успешно завршен.", 16 | "Uploading..." => "Отпремам…", 17 | "Add a bookmark" => "Додај обележивач", 18 | "This URL is already bookmarked! Overwrite?" => "Овај УРЛ је већ обележен! Да пребришем?", 19 | "The title of the page" => "Наслов странице", 20 | "The address of the page" => "Адреса странице", 21 | "Description of the page" => "Опис странице", 22 | "Save" => "Сачувај", 23 | "Delete" => "Обриши", 24 | "Edit" => "Уреди", 25 | "Cancel" => "Одустани", 26 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" => "Превуците ово у обележиваче прегледача и кликните ако на брзину желите да обележите веб страницу:", 27 | "Add to ownCloud" => "Додај у оунКлауд", 28 | "Address" => "Адреса", 29 | "Filterable Tags" => "Филтрирајуће ознаке", 30 | "You have no bookmarks" => "Немате обележивача", 31 | "You can also import a bookmark file" => "Можете и да увезете фајл обележивача", 32 | "Bookmarklet" => "Аплет обележивача", 33 | "Export & Import" => "Извоз и увоз", 34 | "Export" => "Извези", 35 | "Import" => "Увези" 36 | ); 37 | $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);"; 38 | -------------------------------------------------------------------------------- /l10n/sr@latin.php: -------------------------------------------------------------------------------- 1 | "Obeleživači", 4 | "Bookm." => "Obel.", 5 | "No file provided for import" => "Nema fajla za uvoz", 6 | "Unsupported file type for import" => "Nepodržan tip fajla za uvoz", 7 | "Some Error happened." => "Desila se neka greška.", 8 | "Error" => "Greška", 9 | "Tags" => "Oznake", 10 | "Filter by tag" => "Filtriraj po oznaci", 11 | "Are you sure you want to remove this bookmark?" => "Želite li zaista da uklonite ovaj obeleživač?", 12 | "Warning" => "Upozorenje", 13 | "Are you sure you want to remove this tag from every entry?" => "Želite li zaista da uklonite ovu oznaku iz svakog unosa?", 14 | "Import error" => "Greška uvoza", 15 | "Import completed successfully." => "Uvoz je uspešno završen.", 16 | "Uploading..." => "Otpremam…", 17 | "Add a bookmark" => "Dodaj obeleživač", 18 | "This URL is already bookmarked! Overwrite?" => "Ovaj URL je već obeležen! Da prebrišem?", 19 | "The title of the page" => "Naslov stranice", 20 | "The address of the page" => "Adresa stranice", 21 | "Description of the page" => "Opis stranice", 22 | "Save" => "Sačuvaj", 23 | "Delete" => "Obriši", 24 | "Edit" => "Uredi", 25 | "Cancel" => "Odustani", 26 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" => "Prevucite ovo u obeleživače pregledača i kliknite ako na brzinu želite da obeležite veb stranicu:", 27 | "Add to ownCloud" => "Dodaj u ownCloud", 28 | "Address" => "Adresa", 29 | "Filterable Tags" => "Filtrirajuće oznake", 30 | "You have no bookmarks" => "Nemate obeleživača", 31 | "You can also import a bookmark file" => "Možete i da uvezete fajl obeleživača", 32 | "Bookmarklet" => "Aplet obeleživača", 33 | "Export & Import" => "Izvoz i uvoz", 34 | "Export" => "Izvezi", 35 | "Import" => "Uvezi" 36 | ); 37 | $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);"; 38 | -------------------------------------------------------------------------------- /l10n/bg_BG.php: -------------------------------------------------------------------------------- 1 | "Отметки", 4 | "Bookm." => "Отмет.", 5 | "No file provided for import" => "Не беше предоставен файл за зареждане", 6 | "Unsupported file type for import" => "Неподдържан файл за внасяне.", 7 | "Some Error happened." => "Случисе някаква Грешка.", 8 | "Error" => "Грешка", 9 | "Tags" => "Етикети", 10 | "Filter by tag" => "Филтриране по етикет", 11 | "Are you sure you want to remove this bookmark?" => "Сигурен ли си, че искаш да премахнеш отметката?", 12 | "Warning" => "Предупреждение", 13 | "Are you sure you want to remove this tag from every entry?" => "Сигурен ли си че желаеш да премахнеш този етикет от всеки запис?", 14 | "Import error" => "Грешка при внасянето", 15 | "Import completed successfully." => "Внасянето завърши успешно.", 16 | "Uploading..." => "Качване...", 17 | "Add a bookmark" => "Добави отметка", 18 | "This URL is already bookmarked! Overwrite?" => "Това URL вече е отбелязано! Презаписване?", 19 | "The title of the page" => "Заглавие на страницата", 20 | "The address of the page" => "Адрес на страницата", 21 | "Description of the page" => "Описание на страницата", 22 | "Save" => "Запис", 23 | "Delete" => "Изтриване", 24 | "Edit" => "Промяна", 25 | "Cancel" => "Отказ", 26 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" => "Довлачи това в лентата с отметки на браузъра си и го натискай, когато искаш да отметнеш бързо някоя страница:", 27 | "Add to ownCloud" => "Добави в ownCloud", 28 | "Address" => "Адрес", 29 | "Filterable Tags" => "Етикети подлежащи на Филтриране", 30 | "You have no bookmarks" => "Нямаш отметки", 31 | "You can also import a bookmark file" => "Можеш също да заредиш файл с отметки", 32 | "Bookmarklet" => "Отметка", 33 | "Export & Import" => "Експорт и Внасяне", 34 | "Export" => "Експорт", 35 | "Import" => "Внасяне" 36 | ); 37 | $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 38 | -------------------------------------------------------------------------------- /l10n/nn_NO.php: -------------------------------------------------------------------------------- 1 | "Bokmerkje", 4 | "Bookm." => "Bokm.", 5 | "No file provided for import" => "Inga fil gjeve for importering", 6 | "Unsupported file type for import" => "Ustøtta filtype for importering", 7 | "Some Error happened." => "Ein feil oppstod.", 8 | "Error" => "Feil", 9 | "Tags" => "Emneord", 10 | "Filter by tag" => "Filtrer etter emneord", 11 | "Are you sure you want to remove this bookmark?" => "Er du sikker på at du vil fjerne dette bokmerket?", 12 | "Warning" => "Åtvaring", 13 | "Are you sure you want to remove this tag from every entry?" => "Er du sikker på at du vil fjerna dette emneordet frå alle oppføringane?", 14 | "Import error" => "Feil ved importering", 15 | "Import completed successfully." => "Importering fullførte utan feil.", 16 | "Uploading..." => "Lastar opp …", 17 | "Add a bookmark" => "Legg til eit bokmerkje", 18 | "This URL is already bookmarked! Overwrite?" => "Denne URL er allereie bokmerkt, overskriv?", 19 | "The title of the page" => "Tittelen på sida", 20 | "The address of the page" => "Adressa til sida", 21 | "Description of the page" => "Skildring av sida", 22 | "Save" => "Lagra", 23 | "Delete" => "Slett", 24 | "Edit" => "Endra", 25 | "Cancel" => "Avbryt", 26 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" => "Dra denne knappen til bokmerkjelinja i nettlesaren din og klikk han når du vil laga eit bokmerkje raskt:", 27 | "Add to ownCloud" => "Legg til i ownCloud", 28 | "Address" => "Adresse", 29 | "Filterable Tags" => "Filtreringsbare emneord", 30 | "You have no bookmarks" => "Du har inga bokmerkje", 31 | "You can also import a bookmark file" => "Du kan og importere ei bokmerke fil", 32 | "Bookmarklet" => "Bokmerkjeknapp", 33 | "Export & Import" => "Eksporter/importer", 34 | "Export" => "Eksporter", 35 | "Import" => "Importer" 36 | ); 37 | $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 38 | -------------------------------------------------------------------------------- /l10n/pl.php: -------------------------------------------------------------------------------- 1 | "Zakładki", 4 | "Bookm." => "Zakładka", 5 | "No file provided for import" => "Nie wybrano plików do importu", 6 | "Unsupported file type for import" => "Nieobsługiwany typ pliku do importu", 7 | "Some Error happened." => "Wystąpił błąd.", 8 | "Error" => "Błąd", 9 | "Tags" => "Tagi", 10 | "Filter by tag" => "Filtruj po tagach", 11 | "Are you sure you want to remove this bookmark?" => "Usunąć tę zakładkę?", 12 | "Warning" => "Ostrzeżenie", 13 | "Are you sure you want to remove this tag from every entry?" => "Czy na pewno chcesz usunąć ten tag z każdego wpisu?", 14 | "Import error" => "Błąd importu", 15 | "Import completed successfully." => "Importowanie zostało pomyślnie ukończone.", 16 | "Uploading..." => "Wgrywanie....", 17 | "Add a bookmark" => "Dodaj zakładkę", 18 | "This URL is already bookmarked! Overwrite?" => "Istnieje już zakładka dla tego adresu URL! Zastąpić ją?", 19 | "The title of the page" => "Tytuł strony", 20 | "The address of the page" => "Adres strony", 21 | "Description of the page" => "Opis strony", 22 | "Save" => "Zapisz", 23 | "Delete" => "Usuń", 24 | "Edit" => "Edytuj", 25 | "Cancel" => "Anuluj", 26 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" => "Przeciągnij to do zakładek w przeglądarce i kliknij, jeśli chcesz szybko dodać stronę do zakładek:", 27 | "Add to ownCloud" => "Dodaj do ownCloud", 28 | "Address" => "Adres", 29 | "Filterable Tags" => "Tagi możliwe do przefiltrowania", 30 | "You have no bookmarks" => "Nie masz żadnych zakładek", 31 | "You can also import a bookmark file" => "Możesz również zaimportować plik z zakładkami", 32 | "Bookmarklet" => "Zakładka", 33 | "Export & Import" => "Eksportuj i Importuj", 34 | "Export" => "Export", 35 | "Import" => "Import" 36 | ); 37 | $PLURAL_FORMS = "nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; 38 | -------------------------------------------------------------------------------- /l10n/th_TH.php: -------------------------------------------------------------------------------- 1 | "รายการโปรด", 4 | "Bookm." => "รายการโปรด", 5 | "No file provided for import" => "ไม่พบไฟล์สำหรับการนำเข้าข้อมูล", 6 | "Unsupported file type for import" => "ประเภทของไฟล์ที่ต้องการนำเข้าไม่ได้รับการรองรับให้ใช้งาน", 7 | "Some Error happened." => "มีข้อผิดพลาดเกิดขึ้น", 8 | "Error" => "ข้อผิดพลาด", 9 | "Tags" => "ป้ายกำกับ", 10 | "Filter by tag" => "แสดงข้อมูลตามป้ายกำกับ", 11 | "Are you sure you want to remove this bookmark?" => "คุณแน่ใจแล้วหรือว่าต้องการลบรายการโปรดนี้", 12 | "Warning" => "คำเตือน", 13 | "Are you sure you want to remove this tag from every entry?" => "คุณแน่ใจแล้วหรือว่าต้องการลบป้ายกำกับนี้ออกจากทุกๆรายการ", 14 | "Import error" => "นำเข้าข้อมูลผิดพลาด", 15 | "Import completed successfully." => "นำเข้าข้อมูลเสร็จเรียบร้อยแล้ว", 16 | "Uploading..." => "กำลังอัพโหลด...", 17 | "Add a bookmark" => "เพิ่มรายการโปรด", 18 | "This URL is already bookmarked! Overwrite?" => "URL นี้มีอยู่แล้วในบุ๊คมาร์ค! ให้เขียนทับ?", 19 | "The title of the page" => "ชื่อของหน้า", 20 | "The address of the page" => "ที่อยู่ของหน้า", 21 | "Description of the page" => "คำอธิบายเกี่ยวกับหน้า", 22 | "Save" => "บันทึก", 23 | "Delete" => "ลบ", 24 | "Edit" => "แก้ไข", 25 | "Cancel" => "ยกเลิก", 26 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" => "ลากสิ่งนี้ไปไว้ที่รายการโปรดในโปรแกรมบราวเซอร์ของคุณ แล้วคลิกที่นั่น, เมื่อคุณต้องการเก็บหน้าเว็บเพจเข้าไปไว้ในรายการโปรดอย่างรวดเร็ว", 27 | "Add to ownCloud" => "เพิ่มใน ownCloud", 28 | "Address" => "ที่อยู่", 29 | "Filterable Tags" => "กรองแท็ก", 30 | "You have no bookmarks" => "คุณยังไม่มีรายการโปรด", 31 | "You can also import a bookmark file" => "นอกจากนี้คุณยังสามารถนำเข้าไฟล์รายการโปรด", 32 | "Bookmarklet" => "Bookmarklet", 33 | "Export & Import" => "ส่งออก & นำเข้า", 34 | "Export" => "ส่งออก", 35 | "Import" => "นำเข้า" 36 | ); 37 | $PLURAL_FORMS = "nplurals=1; plural=0;"; 38 | -------------------------------------------------------------------------------- /l10n/he.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "bookmarks", 3 | { 4 | "Bookmarks" : "סימניות", 5 | "Failed to import one bookmark, because: " : "נכשל ביבוא סימנייה אחת, מהסיבה:", 6 | "Bookm." : "סימניה.", 7 | "No file provided for import" : "לא סופק קובץ לייבוא", 8 | "Unsupported file type for import" : "סוג הקובץ אינו ניתן לייבוא", 9 | "Some Error happened." : "אירעו מספר שגיאות.", 10 | "Error" : "שגיאה", 11 | "Tags" : "תגיות", 12 | "Filter by tag" : "סנן לפי תגית", 13 | "Are you sure you want to remove this bookmark?" : "האם באמת להסיר סימנייה זו?", 14 | "Warning" : "אזהרה", 15 | "Are you sure you want to remove this tag from every entry?" : "האם אתה בטוח שברצונך להסיר את התגית מכל הרשומות?", 16 | "Import error" : "שגיאת יבוא", 17 | "Import completed successfully." : "ייבוא הושלם בהצלחה.", 18 | "Uploading..." : "העלאה...", 19 | "Add a bookmark" : "הוסף סימניה", 20 | "This URL is already bookmarked! Overwrite?" : "כתובת אינטרנט זו כבר סומנה כסימנייה! האם לדרוס?", 21 | "The title of the page" : "כותרת הדף", 22 | "The address of the page" : "כתובת הדף", 23 | "Description of the page" : "תיאור הדף", 24 | "Save" : "שמירה", 25 | "Delete" : "מחיקה", 26 | "Edit" : "עריכה", 27 | "Cancel" : "ביטול", 28 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" : "ניתן לגרור את הקישור הזה אל סרגל הסימניות בדפדפן שלך וללחוץ עליו כאשר מעוניינים ליצור סימניה לאתר במהירות.", 29 | "Add to ownCloud" : "הוסף לownCloud", 30 | "Address" : "כתובת", 31 | "Filterable Tags" : "תגיות סינון", 32 | "You have no bookmarks" : "אין ברשותך סימניות", 33 | "You can also import a bookmark file" : "ניתן גם ליבא קובץ סימניות", 34 | "Bookmarklet" : "יישומון סימנייה", 35 | "Export & Import" : "ייבוא וייצוא", 36 | "Export" : "יצוא", 37 | "Import" : "יבא" 38 | }, 39 | "nplurals=2; plural=(n != 1);"); 40 | -------------------------------------------------------------------------------- /l10n/en_GB.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Bookmarks" : "Bookmarks", 3 | "Bookm." : "Bookm.", 4 | "No file provided for import" : "No file provided for import", 5 | "Unsupported file type for import" : "Unsupported file type for import", 6 | "Some Error happened." : "Some Error happened.", 7 | "Error" : "Error", 8 | "Tags" : "Tags", 9 | "Filter by tag" : "Filter by tag", 10 | "Are you sure you want to remove this bookmark?" : "Are you sure you want to remove this bookmark?", 11 | "Warning" : "Warning", 12 | "Are you sure you want to remove this tag from every entry?" : "Are you sure you want to remove this tag from every entry?", 13 | "Import error" : "Import error", 14 | "Import completed successfully." : "Import completed successfully.", 15 | "Uploading..." : "Uploading...", 16 | "Add a bookmark" : "Add a bookmark", 17 | "This URL is already bookmarked! Overwrite?" : "This URL is already bookmarked! Overwrite?", 18 | "The title of the page" : "The title of the page", 19 | "The address of the page" : "The address of the page", 20 | "Description of the page" : "Description of the page", 21 | "Save" : "Save", 22 | "Delete" : "Delete", 23 | "Edit" : "Edit", 24 | "Cancel" : "Cancel", 25 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" : "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:", 26 | "Add to ownCloud" : "Add to ownCloud", 27 | "Address" : "Address", 28 | "Filterable Tags" : "Filterable Tags", 29 | "You have no bookmarks" : "You have no bookmarks", 30 | "You can also import a bookmark file" : "You can also import a bookmark file", 31 | "Bookmarklet" : "Bookmarklet", 32 | "Export & Import" : "Export & Import", 33 | "Export" : "Export", 34 | "Import" : "Import" 35 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 36 | } -------------------------------------------------------------------------------- /l10n/sv.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Bookmarks" : "Bokmärken", 3 | "Bookm." : "Bokm.", 4 | "No file provided for import" : "Ingen fil försedd för import", 5 | "Unsupported file type for import" : "Filtypen stöds ej för import", 6 | "Some Error happened." : "Något fel inträffade", 7 | "Error" : "Fel", 8 | "Tags" : "Taggar", 9 | "Filter by tag" : "Filtrera på etikett", 10 | "Are you sure you want to remove this bookmark?" : "Är du säker på att du vill ta bort detta bokmärke?", 11 | "Warning" : "Varning", 12 | "Are you sure you want to remove this tag from every entry?" : "Är du säker på att du vill ta bort denna tagg från varje post?", 13 | "Import error" : "Importfel", 14 | "Import completed successfully." : "Import slutförd.", 15 | "Uploading..." : "Laddar upp...", 16 | "Add a bookmark" : "Lägg till ett bokmärke", 17 | "This URL is already bookmarked! Overwrite?" : "Denna länk är redan bokmärkt. Skriva över?", 18 | "The title of the page" : "Titel på sidan", 19 | "The address of the page" : "Adress till sidan", 20 | "Description of the page" : "Beskrivning av sidan", 21 | "Save" : "Spara", 22 | "Delete" : "Radera", 23 | "Edit" : "Redigera", 24 | "Cancel" : "Avbryt", 25 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" : "Dra till din webbläsares bokmärken och klicka på det när du vill bokmärka en webbsida snabbt:", 26 | "Add to ownCloud" : "Lägg till på ownCloud", 27 | "Address" : "Adress", 28 | "Filterable Tags" : "Filtrerbara Taggar", 29 | "You have no bookmarks" : "Du har inga bokmärken", 30 | "You can also import a bookmark file" : "Du kan också importera en bokmärkesfil", 31 | "Bookmarklet" : "Bokmärke", 32 | "Export & Import" : "Export & Import", 33 | "Export" : "Exportera", 34 | "Import" : "Importera" 35 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 36 | } -------------------------------------------------------------------------------- /l10n/lv.php: -------------------------------------------------------------------------------- 1 | "Grāmatzīmes", 4 | "Bookm." => "Grāmatz.", 5 | "No file provided for import" => "Neviena datne nav dota importēšanai", 6 | "Unsupported file type for import" => "Importēšanai neatbalstītie datņu tipi", 7 | "Some Error happened." => "Notikusi kāda kļūda", 8 | "Error" => "Kļūda", 9 | "Tags" => "Birkas", 10 | "Filter by tag" => "Atlasīt pēc birkas", 11 | "Are you sure you want to remove this bookmark?" => "Vai tiešām vēlaties izņemt šo grāmatzīmi?", 12 | "Warning" => "Brīdinājums", 13 | "Are you sure you want to remove this tag from every entry?" => "Vai tiešām vēlaties izņemt šo birku no katra ieraksta?", 14 | "Import error" => "Importēšanas kļūda", 15 | "Import completed successfully." => "Importēšana ir veiksmīgi pabeigta.", 16 | "Uploading..." => "Augšupielādē...", 17 | "Add a bookmark" => "Pievienot grāmatzīmi", 18 | "This URL is already bookmarked! Overwrite?" => "Šī saite jau ir pievienota grāmatzīmēm. Pārrakstīt?", 19 | "The title of the page" => "Lapas virsraksts", 20 | "The address of the page" => "Lapas adrese", 21 | "Description of the page" => "Lapas apraksts", 22 | "Save" => "Saglabāt", 23 | "Delete" => "Izdzēst", 24 | "Edit" => "Rediģēt", 25 | "Cancel" => "Atcelt", 26 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" => "Ievelc šo savās pārlūka grāmatzīmēs un spied uz tā, kad vēlies ātri pievienot tīmekļa lapu grāmatzīmēm:", 27 | "Add to ownCloud" => "Pievienot ownCloud", 28 | "Address" => "Adrese", 29 | "Filterable Tags" => "Atlasāmas birkas", 30 | "You have no bookmarks" => "Jums nav grāmatzīmju", 31 | "You can also import a bookmark file" => "Jūs varat arī importēt grāmatzīmes datni", 32 | "Bookmarklet" => "Sīkgrāmatzīme", 33 | "Export & Import" => "Eksportēt un importēt", 34 | "Export" => "Eksportēt", 35 | "Import" => "Importēt" 36 | ); 37 | $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"; 38 | -------------------------------------------------------------------------------- /l10n/id.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Bookmarks" : "Markah", 3 | "Bookm." : "Markah", 4 | "No file provided for import" : "Tidak ada berkas untuk diimpor", 5 | "Unsupported file type for import" : "Tipe berkas tidak didukung untuk diimpor", 6 | "Some Error happened." : "Terjadi beberapa kesalahan.", 7 | "Error" : "Kesalahan", 8 | "Tags" : "Tag", 9 | "Filter by tag" : "Filter berdasar tag", 10 | "Are you sure you want to remove this bookmark?" : "Apakah Anda yakin ingin menghapus markah ini?", 11 | "Warning" : "Peringatan", 12 | "Are you sure you want to remove this tag from every entry?" : "Yakin ingin menghapus tag ini dari semua entri?", 13 | "Import error" : "Galat ketika mengimpor", 14 | "Import completed successfully." : "Proses impor selesai dengan sukses.", 15 | "Uploading..." : "Mengunggah...", 16 | "Add a bookmark" : "Tambah markah", 17 | "This URL is already bookmarked! Overwrite?" : "URL ini telah di markahi! Timpa?", 18 | "The title of the page" : "Judul halaman", 19 | "The address of the page" : "Alamat halaman", 20 | "Description of the page" : "Deskripsi halaman", 21 | "Save" : "Simpan", 22 | "Delete" : "Hapus", 23 | "Edit" : "Sunting", 24 | "Cancel" : "Batal", 25 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" : "Seret ke bilah alat markah peramban Anda untuk diklik, jika Anda ingin membuat markah halaman web dengan cepat:", 26 | "Add to ownCloud" : "Tambah ke ownCloud", 27 | "Address" : "Alamat", 28 | "Filterable Tags" : "Tag dapat Disaring", 29 | "You have no bookmarks" : "Anda tidak punya markah", 30 | "You can also import a bookmark file" : "Anda juga dapat mengimpor berkas markah", 31 | "Bookmarklet" : "Bookmarklet", 32 | "Export & Import" : "Ekspor & Impor", 33 | "Export" : "Ekspor", 34 | "Import" : "Impor" 35 | },"pluralForm" :"nplurals=1; plural=0;" 36 | } -------------------------------------------------------------------------------- /l10n/nb_NO.php: -------------------------------------------------------------------------------- 1 | "Bokmerker", 4 | "Bookm." => "Bokmrk.", 5 | "No file provided for import" => "Ingen fil valgt for importering", 6 | "Unsupported file type for import" => "Ikke støttet filtype for importering", 7 | "Some Error happened." => "Det oppstod en feil.", 8 | "Error" => "Feil", 9 | "Tags" => "Merkelapper", 10 | "Filter by tag" => "Filtrer ut fra merkelapp", 11 | "Are you sure you want to remove this bookmark?" => "Er du sikker på at du vil fjerne dette bokmerket?", 12 | "Warning" => "Advarsel", 13 | "Are you sure you want to remove this tag from every entry?" => "Er du sikker på at du vil slette denne merkelappen fra alle oppføringene?", 14 | "Import error" => "Importerings-feil", 15 | "Import completed successfully." => "Importering fullførte vellykket.", 16 | "Uploading..." => "Laster opp...", 17 | "Add a bookmark" => "Legg til et bokmerke", 18 | "This URL is already bookmarked! Overwrite?" => "Denne URL-en er allerede i et bokmerke. Overskrive?", 19 | "The title of the page" => "Sidens tittel", 20 | "The address of the page" => "Sidens adresse", 21 | "Description of the page" => "Beskrivelse av siden", 22 | "Save" => "Lagre", 23 | "Delete" => "Slett", 24 | "Edit" => "Endre", 25 | "Cancel" => "Avbryt", 26 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" => "Dra denne til bokmerkene i nettleseren din og klikk på den når du ønsker å raskt legge til en nettside som bokmerke:", 27 | "Add to ownCloud" => "Legg til i ownCloud", 28 | "Address" => "Adresse", 29 | "Filterable Tags" => "Filtrerbare merkelapper", 30 | "You have no bookmarks" => "Du har ingen bokmerker", 31 | "You can also import a bookmark file" => "Du kan også imortere en bokmerke-fil", 32 | "Bookmarklet" => "Bokmerke-applet", 33 | "Export & Import" => "Eksport og import", 34 | "Export" => "Eksporter", 35 | "Import" => "Importer" 36 | ); 37 | $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 38 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Bookmarks app 2 | ============ 3 | 4 | Maintainers: 5 | ------------ 6 | - [Brice Maron] aka eMerzh (https://github.com/eMerzh) 7 | 8 | Developer setup info: 9 | --------------------- 10 | ### Installation: 11 | Just clone this repo into one of your apps directory. 12 | 13 | 14 | Status : 15 | --------- 16 | Rewrite by [Stefan Klemm] aka ganomi (https://github.com/ganomi) 17 | 18 | * This is a refactored / rewritten version of the bookmarks app using the app framework 19 | * Dependency Injection for user and db is used througout the controllers 20 | * The Routing features a consistent rest api 21 | * The Routing provides some legacy routes, so that for exampe the Android Bookmarks App still works. 22 | * Merged all the changes from https://github.com/owncloud/bookmarks/pull/68 and added visual fixes. App uses the App Framework Styling on the Client side now. 23 | 24 | There is a publicly available api that provides access to bookmarks per user. (This is usefull in connection with the Wordpress Plugin https://github.com/mario-nolte/oc2wp-bookmarks) 25 | 26 | Public Rest Api (JSON Formatting): 27 | --------- 28 | Example Url: 29 | 30 | ../apps/bookmarks/public/rest/v1/bookmark?user=username&password=password&tags[]=firsttag&tags[]=anothertag&select[]=description&conjunction=AND&sortby=description 31 | 32 | Parameters: 33 | 34 | * user is a mandatory parameter. This will return all bookmarks from the specific user marked as public. (not yet possible!) 35 | * by providing the users password all bookmarks will be returned 36 | * tags[] can take multiple arguments and they are used to filter the requested bookmarks by tags 37 | * conjunction (default = or) sets the tag filter to OR or to AND 38 | * select[] takes multiple arguments. By default only url and title per bookmark are returned. Further you can select any attribute of the bookmarks table and also the attribute "tags" 39 | * sortby takes and attribute that results will be sorted by descending. -------------------------------------------------------------------------------- /l10n/az.php: -------------------------------------------------------------------------------- 1 | "Sayt qeydiyyatları", 4 | "Bookm." => "Qeyd.", 5 | "No file provided for import" => "Götürmək üçün heç bir fayl təqdim edilməyib", 6 | "Unsupported file type for import" => "Fayl tipi götürülmə üçün dəstəklənmir", 7 | "Some Error happened." => "Bəzi səhv baş verdi.", 8 | "Error" => "Səhv", 9 | "Tags" => "Işarələr", 10 | "Filter by tag" => "Əsas-a görə süzgəc", 11 | "Are you sure you want to remove this bookmark?" => "Bu işarətləməni silməyinizdən əminsinizmi?", 12 | "Warning" => "Xəbərdarlıq", 13 | "Are you sure you want to remove this tag from every entry?" => "İstənilən qeydiyyatdan bu başlığın silinməsinə əminsinizmi?", 14 | "Import error" => "Əlavə səhvi", 15 | "Import completed successfully." => "Əlavə uğurla bitdi.", 16 | "Uploading..." => "Serverə yüklənir...", 17 | "Add a bookmark" => "Sayt qeydıyyatı əlavə et", 18 | "This URL is already bookmarked! Overwrite?" => "URL artıq işarətlənib! Yenidən işarətlənsin?", 19 | "The title of the page" => "Səhifənin başlığı", 20 | "The address of the page" => "Səhifənin ünvanı", 21 | "Description of the page" => "Səhifə üçün açıqlama", 22 | "Save" => "Saxlamaq", 23 | "Delete" => "Sil", 24 | "Edit" => "Dəyişiklik et", 25 | "Cancel" => "Dayandır", 26 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" => "Web səhifəni tez qeydə almaq istəyirsinizsə, onu öz browser-nizin qeydiyyat ünvanına dartın və üstünə sıxın.", 27 | "Add to ownCloud" => "ownCloud-a əlavə et", 28 | "Address" => "Ünvan", 29 | "Filterable Tags" => "Fitlrlənəbilən işarətlər", 30 | "You have no bookmarks" => "Sizin səhifə qeydiyyatınız yoxdur", 31 | "You can also import a bookmark file" => "Siz həmçinin işartlənmə faylını import edə bilərsiniz", 32 | "Bookmarklet" => "Bookmarklet", 33 | "Export & Import" => "Çıxarış & Əlavə ", 34 | "Export" => "Çıxarış", 35 | "Import" => "Əlavə et" 36 | ); 37 | $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 38 | -------------------------------------------------------------------------------- /l10n/ca.php: -------------------------------------------------------------------------------- 1 | "Adreces d'interès", 4 | "Bookm." => "Marcador", 5 | "No file provided for import" => "No heu proporcionat cap fitxer a importar", 6 | "Unsupported file type for import" => "Importació d'un tipus de fitxer no implementat", 7 | "Some Error happened." => "Hi ha hagut algun error.", 8 | "Error" => "Error", 9 | "Tags" => "Etiquetes", 10 | "Filter by tag" => "Filtrat per etiqueta", 11 | "Are you sure you want to remove this bookmark?" => "Estàs segur de que vols eliminar aquest marcador?", 12 | "Warning" => "Avís", 13 | "Are you sure you want to remove this tag from every entry?" => "Segur que voleu eliminar aquesta etiqueta de cada entrada?", 14 | "Import error" => "Error en importar", 15 | "Import completed successfully." => "La importació ha acabat amb èxit", 16 | "Uploading..." => "Pujant...", 17 | "Add a bookmark" => "Afegeix una adreça d'interès", 18 | "This URL is already bookmarked! Overwrite?" => "Aquesta URL ja és un marcador! Sobreescriure?", 19 | "The title of the page" => "El títol de la pàgina", 20 | "The address of the page" => "L'adreça de la pàgina", 21 | "Description of the page" => "Descripció de la pàgina", 22 | "Save" => "Desa", 23 | "Delete" => "Esborra", 24 | "Edit" => "Edita", 25 | "Cancel" => "Cancel·la", 26 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" => "Arrossegueu-ho al navegador i feu-hi un clic quan volgueu marcar ràpidament una adreça d'interès:", 27 | "Add to ownCloud" => "Afegeix a ownCloud", 28 | "Address" => "Adreça", 29 | "Filterable Tags" => "Etiquetes filtrables", 30 | "You have no bookmarks" => "No teniu adreces d'interès", 31 | "You can also import a bookmark file" => "També pots importar un arxiu de marcador", 32 | "Bookmarklet" => "Bookmarklet", 33 | "Export & Import" => "Exporta i importa", 34 | "Export" => "Exporta", 35 | "Import" => "Importa" 36 | ); 37 | $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 38 | -------------------------------------------------------------------------------- /l10n/en_GB.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "bookmarks", 3 | { 4 | "Bookmarks" : "Bookmarks", 5 | "Bookm." : "Bookm.", 6 | "No file provided for import" : "No file provided for import", 7 | "Unsupported file type for import" : "Unsupported file type for import", 8 | "Some Error happened." : "Some Error happened.", 9 | "Error" : "Error", 10 | "Tags" : "Tags", 11 | "Filter by tag" : "Filter by tag", 12 | "Are you sure you want to remove this bookmark?" : "Are you sure you want to remove this bookmark?", 13 | "Warning" : "Warning", 14 | "Are you sure you want to remove this tag from every entry?" : "Are you sure you want to remove this tag from every entry?", 15 | "Import error" : "Import error", 16 | "Import completed successfully." : "Import completed successfully.", 17 | "Uploading..." : "Uploading...", 18 | "Add a bookmark" : "Add a bookmark", 19 | "This URL is already bookmarked! Overwrite?" : "This URL is already bookmarked! Overwrite?", 20 | "The title of the page" : "The title of the page", 21 | "The address of the page" : "The address of the page", 22 | "Description of the page" : "Description of the page", 23 | "Save" : "Save", 24 | "Delete" : "Delete", 25 | "Edit" : "Edit", 26 | "Cancel" : "Cancel", 27 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" : "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:", 28 | "Add to ownCloud" : "Add to ownCloud", 29 | "Address" : "Address", 30 | "Filterable Tags" : "Filterable Tags", 31 | "You have no bookmarks" : "You have no bookmarks", 32 | "You can also import a bookmark file" : "You can also import a bookmark file", 33 | "Bookmarklet" : "Bookmarklet", 34 | "Export & Import" : "Export & Import", 35 | "Export" : "Export", 36 | "Import" : "Import" 37 | }, 38 | "nplurals=2; plural=(n != 1);"); 39 | -------------------------------------------------------------------------------- /l10n/sv.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "bookmarks", 3 | { 4 | "Bookmarks" : "Bokmärken", 5 | "Bookm." : "Bokm.", 6 | "No file provided for import" : "Ingen fil försedd för import", 7 | "Unsupported file type for import" : "Filtypen stöds ej för import", 8 | "Some Error happened." : "Något fel inträffade", 9 | "Error" : "Fel", 10 | "Tags" : "Taggar", 11 | "Filter by tag" : "Filtrera på etikett", 12 | "Are you sure you want to remove this bookmark?" : "Är du säker på att du vill ta bort detta bokmärke?", 13 | "Warning" : "Varning", 14 | "Are you sure you want to remove this tag from every entry?" : "Är du säker på att du vill ta bort denna tagg från varje post?", 15 | "Import error" : "Importfel", 16 | "Import completed successfully." : "Import slutförd.", 17 | "Uploading..." : "Laddar upp...", 18 | "Add a bookmark" : "Lägg till ett bokmärke", 19 | "This URL is already bookmarked! Overwrite?" : "Denna länk är redan bokmärkt. Skriva över?", 20 | "The title of the page" : "Titel på sidan", 21 | "The address of the page" : "Adress till sidan", 22 | "Description of the page" : "Beskrivning av sidan", 23 | "Save" : "Spara", 24 | "Delete" : "Radera", 25 | "Edit" : "Redigera", 26 | "Cancel" : "Avbryt", 27 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" : "Dra till din webbläsares bokmärken och klicka på det när du vill bokmärka en webbsida snabbt:", 28 | "Add to ownCloud" : "Lägg till på ownCloud", 29 | "Address" : "Adress", 30 | "Filterable Tags" : "Filtrerbara Taggar", 31 | "You have no bookmarks" : "Du har inga bokmärken", 32 | "You can also import a bookmark file" : "Du kan också importera en bokmärkesfil", 33 | "Bookmarklet" : "Bokmärke", 34 | "Export & Import" : "Export & Import", 35 | "Export" : "Exportera", 36 | "Import" : "Importera" 37 | }, 38 | "nplurals=2; plural=(n != 1);"); 39 | -------------------------------------------------------------------------------- /l10n/is.php: -------------------------------------------------------------------------------- 1 | "Bókamerki", 4 | "Bookm." => "Bókam.", 5 | "No file provided for import" => "Engin skrá valin til innflutnings", 6 | "Unsupported file type for import" => "Ekki er hægt að flytja inn þessa tegund af bókamerki", 7 | "Some Error happened." => "Einhver villa varð.", 8 | "Error" => "Villa", 9 | "Tags" => "Merki", 10 | "Filter by tag" => "Sía eftir merkjum", 11 | "Are you sure you want to remove this bookmark?" => "Ertu viss um að þú viljir fjarlægja þetta bókamerki?", 12 | "Warning" => "Aðvörun", 13 | "Are you sure you want to remove this tag from every entry?" => "Ertu viss um að þú viljir fjarlægja þetta merki úr öllum færslum?", 14 | "Import error" => "Innflutningsvilla", 15 | "Import completed successfully." => "Tókst að flytja inn", 16 | "Uploading..." => "Sendi inn ...", 17 | "Add a bookmark" => "Bæta við bókamerki", 18 | "This URL is already bookmarked! Overwrite?" => "Þessi slóð er þegar bókamerkt! Skrifa yfir?", 19 | "The title of the page" => "Titill síðunnar", 20 | "The address of the page" => "Slóð á síðuna", 21 | "Description of the page" => "Lýsing á síðunni", 22 | "Save" => "Vista", 23 | "Delete" => "Eyða", 24 | "Edit" => "Breyta", 25 | "Cancel" => "Hætta við", 26 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" => "Dragðu þetta yfir í bókamerkin í vafranum þínu og smelltu, ef þú vilt bæta við bókamerki fyrir þessa vefsíðu á fljótlegan hátt:", 27 | "Add to ownCloud" => "Bæta við í ownCloud", 28 | "Address" => "Slóð", 29 | "Filterable Tags" => "Síanlegt merki", 30 | "You have no bookmarks" => "Þú ert ekki með nein bókamerki", 31 | "You can also import a bookmark file" => "Þú getur einnig flutt inn bókamerkjaskrá", 32 | "Bookmarklet" => "Bookmarklet", 33 | "Export & Import" => "Inn- og útflutningur", 34 | "Export" => "Flytja út", 35 | "Import" => "Flytja inn" 36 | ); 37 | $PLURAL_FORMS = "nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);"; 38 | -------------------------------------------------------------------------------- /l10n/sk_SK.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Bookmarks" : "Záložky", 3 | "Bookm." : "Zál.", 4 | "No file provided for import" : "Žiadny súbor na import", 5 | "Unsupported file type for import" : "Nepodporovaný typ súboru pre import", 6 | "Some Error happened." : "Stala sa nejaká chyba", 7 | "Error" : "Chyba", 8 | "Tags" : "Značky", 9 | "Filter by tag" : "Filtrovať podľa značky", 10 | "Are you sure you want to remove this bookmark?" : "Naozaj chcete odstrániť túto záložku?", 11 | "Warning" : "Upozornenie", 12 | "Are you sure you want to remove this tag from every entry?" : "Naozaj ste si istý, že chcete odstrániť túto značku z každého záznamu?", 13 | "Import error" : "Chyba importu", 14 | "Import completed successfully." : "Import prebehol úspešne.", 15 | "Uploading..." : "Odosielanie...", 16 | "Add a bookmark" : "Pridať záložku", 17 | "This URL is already bookmarked! Overwrite?" : "Táto URL už je medzi záložkami! Prepísať?", 18 | "The title of the page" : "Názov stránky", 19 | "The address of the page" : "Adresa stránky", 20 | "Description of the page" : "Popis stránky", 21 | "Save" : "Uložiť", 22 | "Delete" : "Zmazať", 23 | "Edit" : "Upraviť", 24 | "Cancel" : "Zrušiť", 25 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" : "Presuňte toto do vášho prehliadača a kliknite ak chcete aktuálnu stránku uložiť do záložiek.", 26 | "Add to ownCloud" : "Pridať do ownCloudu", 27 | "Address" : "Adresa", 28 | "Filterable Tags" : "Filtrovateľné značky", 29 | "You have no bookmarks" : "Nemáte žiadne záložky", 30 | "You can also import a bookmark file" : "Môžete tiež importovať súbor so záložkami", 31 | "Bookmarklet" : "Bookmarklet", 32 | "Export & Import" : "Export & Import", 33 | "Export" : "Export", 34 | "Import" : "Import" 35 | },"pluralForm" :"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;" 36 | } -------------------------------------------------------------------------------- /l10n/uk.php: -------------------------------------------------------------------------------- 1 | "Закладки", 4 | "Bookm." => "Заклд.", 5 | "No file provided for import" => "Немає файла для імпорту", 6 | "Unsupported file type for import" => "Імпорт файлу даного типу не підтримується", 7 | "Some Error happened." => "Виникла помилка.", 8 | "Error" => "Помилка", 9 | "Tags" => "Теги", 10 | "Filter by tag" => "Фільтр по тегах", 11 | "Are you sure you want to remove this bookmark?" => "Ви впевнені, що хочете видалити цю закладку?", 12 | "Warning" => "Попередження", 13 | "Are you sure you want to remove this tag from every entry?" => "Ви впевнені, що бажаєте видалити цей тег з кожного запису ?", 14 | "Import error" => "Помилка імпорту", 15 | "Import completed successfully." => "Імпорт завершено успішно.", 16 | "Uploading..." => "Вивантаження...", 17 | "Add a bookmark" => "Додати закладку", 18 | "This URL is already bookmarked! Overwrite?" => "Цей URL-адрес вже в закладках! Переписати?", 19 | "The title of the page" => "Заголовок сторінки", 20 | "The address of the page" => "Адреса сторінки", 21 | "Description of the page" => "Опис сторінки", 22 | "Save" => "Зберегти", 23 | "Delete" => "Видалити", 24 | "Edit" => "Редагувати", 25 | "Cancel" => "Відмінити", 26 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" => "Перетягніть це в закладки вашого броузера і клікніть для того, щоб швидко закласти web-сторінку:", 27 | "Add to ownCloud" => "Додати до ownCloud", 28 | "Address" => "Адреса", 29 | "Filterable Tags" => "Фільтровані мітки", 30 | "You have no bookmarks" => "У вас немає закладок", 31 | "You can also import a bookmark file" => "Ви можете також спробувати імпортувати файл закладок", 32 | "Bookmarklet" => "Закладка-аплет", 33 | "Export & Import" => "Експорт та Імпорт", 34 | "Export" => "Експорт", 35 | "Import" => "Імпорт" 36 | ); 37 | $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);"; 38 | -------------------------------------------------------------------------------- /l10n/da.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Bookmarks" : "Bogmærker", 3 | "Bookm." : "Bogm.", 4 | "No file provided for import" : "Ingen fil opgivet til import", 5 | "Unsupported file type for import" : "Filtypen understøttes ikke for import", 6 | "Some Error happened." : "Der opstod en fejl.", 7 | "Error" : "Fejl", 8 | "Tags" : "Mærker", 9 | "Filter by tag" : "Filtrér efter mærke", 10 | "Are you sure you want to remove this bookmark?" : "Er du sikker på du vil slette dette bogmærke?", 11 | "Warning" : "Advarsel", 12 | "Are you sure you want to remove this tag from every entry?" : "Er du sikker på at du vil fjerne dette mærke fra alle poster?", 13 | "Import error" : "Fejl ved import", 14 | "Import completed successfully." : "Importen blev fuldført.", 15 | "Uploading..." : "Uploader...", 16 | "Add a bookmark" : "Tilføj bogmærke", 17 | "This URL is already bookmarked! Overwrite?" : "Der er allerede et bogmærke for denne URL! Overskriv?", 18 | "The title of the page" : "Sidens titel", 19 | "The address of the page" : "Sidens adresse", 20 | "Description of the page" : "Sidens beskrivelse", 21 | "Save" : "Gem", 22 | "Delete" : "Slet", 23 | "Edit" : "Redigér", 24 | "Cancel" : "Annullér", 25 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" : "Træk denne til dine browserbogmærker og klik på den, når du ønsker at et bogmærke til hjemmesiden hurtigt:", 26 | "Add to ownCloud" : "Tilføj til ownCloud", 27 | "Address" : "Adresse", 28 | "Filterable Tags" : "Filtrérbare mærker", 29 | "You have no bookmarks" : "Du har ingen bogmærker", 30 | "You can also import a bookmark file" : "Du kan også importere en fil med bogmærker", 31 | "Bookmarklet" : "Bookmarklet", 32 | "Export & Import" : "Eksport & import", 33 | "Export" : "Eksportér", 34 | "Import" : "Importér" 35 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 36 | } -------------------------------------------------------------------------------- /controller/rest/tagscontroller.php: -------------------------------------------------------------------------------- 1 | userId = $userId; 20 | $this->db = $db; 21 | } 22 | 23 | /** 24 | * @param string $old_name 25 | * @return JSONResponse 26 | * 27 | * @NoAdminRequired 28 | */ 29 | public function deleteTag($old_name = "") { 30 | 31 | if ($old_name == "") { 32 | return new JSONResponse(array(), Http::STATUS_BAD_REQUEST); 33 | } 34 | 35 | Bookmarks::deleteTag($this->userId, $this->db, $old_name); 36 | return new JSONResponse(array('status' => 'success')); 37 | } 38 | 39 | /** 40 | * @param string $old_name 41 | * @param string $new_name 42 | * @return JSONResponse 43 | * 44 | * @NoAdminRequired 45 | */ 46 | public function renameTag($old_name = "", $new_name = "") { 47 | 48 | if ($old_name == "" || $new_name == "") { 49 | return new JSONResponse(array(), Http::STATUS_BAD_REQUEST); 50 | } 51 | 52 | Bookmarks::renameTag($this->userId, $this->db, $old_name, $new_name); 53 | return new JSONResponse(array('status' => 'success')); 54 | } 55 | 56 | /** 57 | * @NoAdminRequired 58 | */ 59 | public function fullTags() { 60 | 61 | header("Cache-Control: no-cache, must-revalidate"); 62 | header("Expires: Sat, 26 Jul 1997 05:00:00 GMT"); 63 | 64 | $qtags = Bookmarks::findTags($this->userId, $this->db, array(), 0, 400); 65 | $tags = array(); 66 | foreach ($qtags as $tag) { 67 | $tags[] = $tag['tag']; 68 | } 69 | 70 | return new JSONResponse($tags); 71 | } 72 | 73 | } 74 | -------------------------------------------------------------------------------- /l10n/id.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "bookmarks", 3 | { 4 | "Bookmarks" : "Markah", 5 | "Bookm." : "Markah", 6 | "No file provided for import" : "Tidak ada berkas untuk diimpor", 7 | "Unsupported file type for import" : "Tipe berkas tidak didukung untuk diimpor", 8 | "Some Error happened." : "Terjadi beberapa kesalahan.", 9 | "Error" : "Kesalahan", 10 | "Tags" : "Tag", 11 | "Filter by tag" : "Filter berdasar tag", 12 | "Are you sure you want to remove this bookmark?" : "Apakah Anda yakin ingin menghapus markah ini?", 13 | "Warning" : "Peringatan", 14 | "Are you sure you want to remove this tag from every entry?" : "Yakin ingin menghapus tag ini dari semua entri?", 15 | "Import error" : "Galat ketika mengimpor", 16 | "Import completed successfully." : "Proses impor selesai dengan sukses.", 17 | "Uploading..." : "Mengunggah...", 18 | "Add a bookmark" : "Tambah markah", 19 | "This URL is already bookmarked! Overwrite?" : "URL ini telah di markahi! Timpa?", 20 | "The title of the page" : "Judul halaman", 21 | "The address of the page" : "Alamat halaman", 22 | "Description of the page" : "Deskripsi halaman", 23 | "Save" : "Simpan", 24 | "Delete" : "Hapus", 25 | "Edit" : "Sunting", 26 | "Cancel" : "Batal", 27 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" : "Seret ke bilah alat markah peramban Anda untuk diklik, jika Anda ingin membuat markah halaman web dengan cepat:", 28 | "Add to ownCloud" : "Tambah ke ownCloud", 29 | "Address" : "Alamat", 30 | "Filterable Tags" : "Tag dapat Disaring", 31 | "You have no bookmarks" : "Anda tidak punya markah", 32 | "You can also import a bookmark file" : "Anda juga dapat mengimpor berkas markah", 33 | "Bookmarklet" : "Bookmarklet", 34 | "Export & Import" : "Ekspor & Impor", 35 | "Export" : "Ekspor", 36 | "Import" : "Impor" 37 | }, 38 | "nplurals=1; plural=0;"); 39 | -------------------------------------------------------------------------------- /l10n/eo.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Bookmarks" : "Legosignoj", 3 | "Bookm." : "Legsign.", 4 | "No file provided for import" : "Neniu dosiero aldonita por enporti", 5 | "Unsupported file type for import" : "Dosiertipo nekongrua kun enporto", 6 | "Some Error happened." : "Iu eraro okazis.", 7 | "Error" : "Eraro", 8 | "Tags" : "Etikedoj", 9 | "Filter by tag" : "Filtri laŭ etikedo", 10 | "Are you sure you want to remove this bookmark?" : "Ĉu vi certe volas forigi ĉi tiun legosignon?", 11 | "Warning" : "Averto", 12 | "Are you sure you want to remove this tag from every entry?" : "Ĉu vi vere volas forigi ĉi tiun etikedon el ĉiu ero?", 13 | "Import error" : "Enporta eraro", 14 | "Import completed successfully." : "Enporto plenumiĝis sukcese.", 15 | "Uploading..." : "Alŝutante...", 16 | "Add a bookmark" : "Aldoni legosignon", 17 | "This URL is already bookmarked! Overwrite?" : "Ĉu tiu adreso jam estas legosigno! Ĉu anstataŭigi?", 18 | "The title of the page" : "Titolo de la paĝo", 19 | "The address of the page" : "Adreso de la paĝo", 20 | "Description of the page" : "Priskribo de la paĝo", 21 | "Save" : "Konservi", 22 | "Delete" : "Forigi", 23 | "Edit" : "Redakti", 24 | "Cancel" : "Nuligi", 25 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" : "Ŝovu tion ĉi al la legosignoj de via TTT-legilo kaj klaku ĝin, se vi volas rapide legosignigi TTT-paĝon:", 26 | "Add to ownCloud" : "Aldoni al ownCloud", 27 | "Address" : "Adreso", 28 | "Filterable Tags" : "Filtreblaj etikedoj", 29 | "You have no bookmarks" : "Vi havas neniun legosignon", 30 | "You can also import a bookmark file" : "Vi ankaŭ povas enporti legosignodosieron", 31 | "Bookmarklet" : "Kodosigno", 32 | "Export & Import" : "Malenporti kaj enporti", 33 | "Export" : "Elporti", 34 | "Import" : "Enporti" 35 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 36 | } -------------------------------------------------------------------------------- /l10n/gl.php: -------------------------------------------------------------------------------- 1 | "Marcadores", 4 | "Bookm." => "Marc.", 5 | "No file provided for import" => "Non foi fornecido un ficheiro para importar", 6 | "Unsupported file type for import" => "Tipo de ficheiro non admitido para a importación", 7 | "Some Error happened." => "Produciuse algún erro.", 8 | "Error" => "Erro", 9 | "Tags" => "Etiquetas", 10 | "Filter by tag" => "Filtrar segundo a etiqueta", 11 | "Are you sure you want to remove this bookmark?" => "Confirma que quere eliminar este marcador?", 12 | "Warning" => "Aviso", 13 | "Are you sure you want to remove this tag from every entry?" => "Confirma que quere eliminar esta etiqueta de todas as entradas?", 14 | "Import error" => "Produciuse un erro na importación", 15 | "Import completed successfully." => "A importación completouse correctamente.", 16 | "Uploading..." => "Enviando...", 17 | "Add a bookmark" => "Engadir un marcador", 18 | "This URL is already bookmarked! Overwrite?" => "Este URL xa está marcado! Quere sobrescribilo?", 19 | "The title of the page" => "O título da páxina", 20 | "The address of the page" => "O enderezo desta páxina", 21 | "Description of the page" => "Descrición da páxina", 22 | "Save" => "Gardar", 23 | "Delete" => "Eliminar", 24 | "Edit" => "Editar", 25 | "Cancel" => "Cancelar", 26 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" => "Arrastre isto aos marcadores do seu navegador e prema nel cando queira marcar unha páxina con rapidez:", 27 | "Add to ownCloud" => "Engadir no ownCloud", 28 | "Address" => "Enderezo", 29 | "Filterable Tags" => "Etiquetas filtrábeis", 30 | "You have no bookmarks" => "Non ten marcadores", 31 | "You can also import a bookmark file" => "Tamén pode importar un ficheiro de marcadores", 32 | "Bookmarklet" => "Marcador", 33 | "Export & Import" => "Exportar e importar", 34 | "Export" => "Exportar", 35 | "Import" => "Importar" 36 | ); 37 | $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 38 | -------------------------------------------------------------------------------- /l10n/mk.php: -------------------------------------------------------------------------------- 1 | "Обележувачи", 4 | "Bookm." => "Обел.", 5 | "No file provided for import" => "Не е дадена датотека за увоз", 6 | "Unsupported file type for import" => "Неподржнан тип на датотека за внес", 7 | "Some Error happened." => "Се случи некоја грешка.", 8 | "Error" => "Грешка", 9 | "Tags" => "Ознаки", 10 | "Filter by tag" => "Филтрирај по ознака", 11 | "Are you sure you want to remove this bookmark?" => "Дали сте сигурни дека сакате да го отстраните овој обележувач?", 12 | "Warning" => "Предупредување", 13 | "Are you sure you want to remove this tag from every entry?" => "Дали сте сигурни дека сакате да ја отстраните оваа ознака од секој внес?", 14 | "Import error" => "Грешка при увоз", 15 | "Import completed successfully." => "Увозот заврши успешно", 16 | "Uploading..." => "Подигнувам...", 17 | "Add a bookmark" => "Додади обележувач", 18 | "This URL is already bookmarked! Overwrite?" => "URL-то е веќе обележано. Да го пребришам?", 19 | "The title of the page" => "Насловот на страницата", 20 | "The address of the page" => "Адресата на страницата", 21 | "Description of the page" => "Опис на страницата", 22 | "Save" => "Сними", 23 | "Delete" => "Избриши", 24 | "Edit" => "Уреди", 25 | "Cancel" => "Откажи", 26 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" => "Повлечете го ова во папката со обележувачи во Вашиот прелистувач и кликнете го кога сакате брзо да направите обележувач:", 27 | "Add to ownCloud" => "Додади во ownCloud", 28 | "Address" => "Адреса", 29 | "Filterable Tags" => "Филтрирачки ознаки", 30 | "You have no bookmarks" => "Немате обележувачи", 31 | "You can also import a bookmark file" => "Можете исто така да увезете и датотека за обележувачи ", 32 | "Bookmarklet" => "Обележувач", 33 | "Export & Import" => "Извези и увези", 34 | "Export" => "Извези", 35 | "Import" => "Внеси" 36 | ); 37 | $PLURAL_FORMS = "nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;"; 38 | -------------------------------------------------------------------------------- /l10n/fa.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Bookmarks" : "نشانک‌ها", 3 | "Bookm." : "Bookm", 4 | "No file provided for import" : "هیچ فایلی وارد نشده است.", 5 | "Unsupported file type for import" : "نوع فایل برای وارد کردن معتبر نیست", 6 | "Some Error happened." : "یک خطا پیش آمد.", 7 | "Error" : "خطا", 8 | "Tags" : "برچسب‌ها", 9 | "Filter by tag" : "فیلتر بر اساس برچسب", 10 | "Are you sure you want to remove this bookmark?" : "آیا از حذف این نشانک اطمینان دارید ؟", 11 | "Warning" : "اخطار", 12 | "Are you sure you want to remove this tag from every entry?" : "آیا مطمئن هستید که میخواهید این برچسب را از هر مطلب حذف کنید؟", 13 | "Import error" : "وارد کردن خطا", 14 | "Import completed successfully." : "وارد کردن با موفقیت انجام شد", 15 | "Uploading..." : "درحال بارگذاری...", 16 | "Add a bookmark" : "اضافه کردن یک نشانک", 17 | "This URL is already bookmarked! Overwrite?" : "این لینک قبلا نشانک گذاری شده است . آیا میخواهید بازنویسی کنید ؟", 18 | "The title of the page" : "عنوان صفحه", 19 | "The address of the page" : "آدرس صحفه", 20 | "Description of the page" : "توضیحات صفحه", 21 | "Save" : "ذخیره", 22 | "Delete" : "حذف", 23 | "Edit" : "ویرایش", 24 | "Cancel" : "منصرف شدن", 25 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" : "هنگامی که می‌خواهید کی صفحه‌ی اینترنتی را بسرعت نشان کنید، این را به نشانه‌های مرورگر خود بکشید و روی آن کلیک کنید.", 26 | "Add to ownCloud" : "افزودن به ownCloud", 27 | "Address" : "آدرس", 28 | "Filterable Tags" : "برچسب های قابل فیلتر شدن", 29 | "You have no bookmarks" : "شما هیچ نشانکی ندارید", 30 | "You can also import a bookmark file" : "شما همچنین می توانید یک فایل نشانه دار را وارد نمایید .", 31 | "Bookmarklet" : "بوکمارک لت", 32 | "Export & Import" : "وارد کردن و خروجی گرفتن", 33 | "Export" : "خروجی گرفتن", 34 | "Import" : "وارد کردن" 35 | },"pluralForm" :"nplurals=1; plural=0;" 36 | } -------------------------------------------------------------------------------- /l10n/pt_PT.php: -------------------------------------------------------------------------------- 1 | "Marcadores", 4 | "Bookm." => "Marc.", 5 | "No file provided for import" => "Não foi indicado qualquer ficheiro para importar", 6 | "Unsupported file type for import" => "Tipo de ficheiro não suportado para importar", 7 | "Some Error happened." => "Ocorreu algum tipo erro.", 8 | "Error" => "Erro", 9 | "Tags" => "Etiquetas", 10 | "Filter by tag" => "Filtrar por etiqueta", 11 | "Are you sure you want to remove this bookmark?" => "Tem a certeza que deseja remover este marcador?", 12 | "Warning" => "Aviso", 13 | "Are you sure you want to remove this tag from every entry?" => "Tem a certeza que deseja remover esta etiqueta de cada entrada?", 14 | "Import error" => "Erro de importação", 15 | "Import completed successfully." => "Importação bem sucedida.", 16 | "Uploading..." => "A enviar...", 17 | "Add a bookmark" => "Adicionar um marcador", 18 | "This URL is already bookmarked! Overwrite?" => "Este URL já existe nos marcadores! Deseja Substituir?", 19 | "The title of the page" => "O titulo da página", 20 | "The address of the page" => "O endereço da página", 21 | "Description of the page" => "Descrição da página", 22 | "Save" => "Guardar", 23 | "Delete" => "Eliminar", 24 | "Edit" => "Editar", 25 | "Cancel" => "Cancelar", 26 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" => "Arraste isto para os marcadores do seu navegador e clique nele quando quiser marcar uma página da Web rapidamente:", 27 | "Add to ownCloud" => "Adicionar à ownCloud", 28 | "Address" => "Endereço", 29 | "Filterable Tags" => "Etiquetas Filtráveis", 30 | "You have no bookmarks" => "Não tem marcadores", 31 | "You can also import a bookmark file" => "Também pode importar um ficheiro de marcadores", 32 | "Bookmarklet" => "Marcador de JavaScript", 33 | "Export & Import" => "Exportar & Importar", 34 | "Export" => "Exportar", 35 | "Import" => "Importar" 36 | ); 37 | $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 38 | -------------------------------------------------------------------------------- /l10n/sk_SK.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "bookmarks", 3 | { 4 | "Bookmarks" : "Záložky", 5 | "Bookm." : "Zál.", 6 | "No file provided for import" : "Žiadny súbor na import", 7 | "Unsupported file type for import" : "Nepodporovaný typ súboru pre import", 8 | "Some Error happened." : "Stala sa nejaká chyba", 9 | "Error" : "Chyba", 10 | "Tags" : "Značky", 11 | "Filter by tag" : "Filtrovať podľa značky", 12 | "Are you sure you want to remove this bookmark?" : "Naozaj chcete odstrániť túto záložku?", 13 | "Warning" : "Upozornenie", 14 | "Are you sure you want to remove this tag from every entry?" : "Naozaj ste si istý, že chcete odstrániť túto značku z každého záznamu?", 15 | "Import error" : "Chyba importu", 16 | "Import completed successfully." : "Import prebehol úspešne.", 17 | "Uploading..." : "Odosielanie...", 18 | "Add a bookmark" : "Pridať záložku", 19 | "This URL is already bookmarked! Overwrite?" : "Táto URL už je medzi záložkami! Prepísať?", 20 | "The title of the page" : "Názov stránky", 21 | "The address of the page" : "Adresa stránky", 22 | "Description of the page" : "Popis stránky", 23 | "Save" : "Uložiť", 24 | "Delete" : "Zmazať", 25 | "Edit" : "Upraviť", 26 | "Cancel" : "Zrušiť", 27 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" : "Presuňte toto do vášho prehliadača a kliknite ak chcete aktuálnu stránku uložiť do záložiek.", 28 | "Add to ownCloud" : "Pridať do ownCloudu", 29 | "Address" : "Adresa", 30 | "Filterable Tags" : "Filtrovateľné značky", 31 | "You have no bookmarks" : "Nemáte žiadne záložky", 32 | "You can also import a bookmark file" : "Môžete tiež importovať súbor so záložkami", 33 | "Bookmarklet" : "Bookmarklet", 34 | "Export & Import" : "Export & Import", 35 | "Export" : "Export", 36 | "Import" : "Import" 37 | }, 38 | "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"); 39 | -------------------------------------------------------------------------------- /l10n/sr.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Bookmarks" : "Обележивачи", 3 | "Bookm." : "Обел.", 4 | "No file provided for import" : "Нема фајла за увоз", 5 | "Unsupported file type for import" : "Неподржан тип фајла за увоз", 6 | "Some Error happened." : "Десила се нека грешка.", 7 | "Error" : "Грешка", 8 | "Tags" : "Ознаке", 9 | "Filter by tag" : "Филтрирај по ознаци", 10 | "Are you sure you want to remove this bookmark?" : "Желите ли заиста да уклоните овај обележивач?", 11 | "Warning" : "Упозорење", 12 | "Are you sure you want to remove this tag from every entry?" : "Желите ли заиста да уклоните ову ознаку из сваког уноса?", 13 | "Import error" : "Грешка увоза", 14 | "Import completed successfully." : "Увоз је успешно завршен.", 15 | "Uploading..." : "Отпремам…", 16 | "Add a bookmark" : "Додај обележивач", 17 | "This URL is already bookmarked! Overwrite?" : "Овај УРЛ је већ обележен! Да пребришем?", 18 | "The title of the page" : "Наслов странице", 19 | "The address of the page" : "Адреса странице", 20 | "Description of the page" : "Опис странице", 21 | "Save" : "Сачувај", 22 | "Delete" : "Обриши", 23 | "Edit" : "Уреди", 24 | "Cancel" : "Одустани", 25 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" : "Превуците ово у обележиваче прегледача и кликните ако на брзину желите да обележите веб страницу:", 26 | "Add to ownCloud" : "Додај у оунКлауд", 27 | "Address" : "Адреса", 28 | "Filterable Tags" : "Филтрирајуће ознаке", 29 | "You have no bookmarks" : "Немате обележивача", 30 | "You can also import a bookmark file" : "Можете и да увезете фајл обележивача", 31 | "Bookmarklet" : "Аплет обележивача", 32 | "Export & Import" : "Извоз и увоз", 33 | "Export" : "Извези", 34 | "Import" : "Увези" 35 | },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);" 36 | } -------------------------------------------------------------------------------- /img/bookmarks.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /l10n/da.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "bookmarks", 3 | { 4 | "Bookmarks" : "Bogmærker", 5 | "Bookm." : "Bogm.", 6 | "No file provided for import" : "Ingen fil opgivet til import", 7 | "Unsupported file type for import" : "Filtypen understøttes ikke for import", 8 | "Some Error happened." : "Der opstod en fejl.", 9 | "Error" : "Fejl", 10 | "Tags" : "Mærker", 11 | "Filter by tag" : "Filtrér efter mærke", 12 | "Are you sure you want to remove this bookmark?" : "Er du sikker på du vil slette dette bogmærke?", 13 | "Warning" : "Advarsel", 14 | "Are you sure you want to remove this tag from every entry?" : "Er du sikker på at du vil fjerne dette mærke fra alle poster?", 15 | "Import error" : "Fejl ved import", 16 | "Import completed successfully." : "Importen blev fuldført.", 17 | "Uploading..." : "Uploader...", 18 | "Add a bookmark" : "Tilføj bogmærke", 19 | "This URL is already bookmarked! Overwrite?" : "Der er allerede et bogmærke for denne URL! Overskriv?", 20 | "The title of the page" : "Sidens titel", 21 | "The address of the page" : "Sidens adresse", 22 | "Description of the page" : "Sidens beskrivelse", 23 | "Save" : "Gem", 24 | "Delete" : "Slet", 25 | "Edit" : "Redigér", 26 | "Cancel" : "Annullér", 27 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" : "Træk denne til dine browserbogmærker og klik på den, når du ønsker at et bogmærke til hjemmesiden hurtigt:", 28 | "Add to ownCloud" : "Tilføj til ownCloud", 29 | "Address" : "Adresse", 30 | "Filterable Tags" : "Filtrérbare mærker", 31 | "You have no bookmarks" : "Du har ingen bogmærker", 32 | "You can also import a bookmark file" : "Du kan også importere en fil med bogmærker", 33 | "Bookmarklet" : "Bookmarklet", 34 | "Export & Import" : "Eksport & import", 35 | "Export" : "Eksportér", 36 | "Import" : "Importér" 37 | }, 38 | "nplurals=2; plural=(n != 1);"); 39 | -------------------------------------------------------------------------------- /l10n/et_EE.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Bookmarks" : "Järjehoidjad", 3 | "Bookm." : "Järjeh.", 4 | "No file provided for import" : "Imporditav fail puudub", 5 | "Unsupported file type for import" : "Toetuseta failitüübi import", 6 | "Some Error happened." : "Ilmnes mingi tõrge.", 7 | "Error" : "Tõrge", 8 | "Tags" : "Sildid", 9 | "Filter by tag" : "Filtreeri siltide järgi", 10 | "Are you sure you want to remove this bookmark?" : "Kas sa tõesti soovid seda järjehoidjat eemaldada?", 11 | "Warning" : "Hoiatus", 12 | "Are you sure you want to remove this tag from every entry?" : "Oled sa kindel, et sa soovid kõigilt sissekannetelt seda silti eemaldada?", 13 | "Import error" : "Viga importimisel", 14 | "Import completed successfully." : "Import on edukalt lõpetatud.", 15 | "Uploading..." : "Üleslaadimine...", 16 | "Add a bookmark" : "Lisa järjehoidja", 17 | "This URL is already bookmarked! Overwrite?" : "See URL on juba järjehoidjates. Kas kirjutada üle?", 18 | "The title of the page" : "Lehe pealkiri", 19 | "The address of the page" : "Lehe aadress", 20 | "Description of the page" : "Lehe kirjeldus", 21 | "Save" : "Salvesta", 22 | "Delete" : "Kustuta", 23 | "Edit" : "Muuda", 24 | "Cancel" : "Loobu", 25 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" : "Lohista see oma veebilehitseja järjehoidjatesse ja kliki sellele, kui sa soovid veebilehte kiirelt lisada:", 26 | "Add to ownCloud" : "Lisa ownCloudi", 27 | "Address" : "Aadress", 28 | "Filterable Tags" : "Filtreeritavad sildid", 29 | "You have no bookmarks" : "Sul pole järjehoidjaid", 30 | "You can also import a bookmark file" : "Järjehoidjafaili on võimalik importida", 31 | "Bookmarklet" : "Järjehoidja vidin", 32 | "Export & Import" : "Eksport ja import", 33 | "Export" : "Ekspordi", 34 | "Import" : "Impordi" 35 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 36 | } -------------------------------------------------------------------------------- /l10n/sl.php: -------------------------------------------------------------------------------- 1 | "Zaznamki", 4 | "Bookm." => "Zaznam.", 5 | "No file provided for import" => "Ni navedene datoteke za uvoz", 6 | "Unsupported file type for import" => "Vrsta datoteke ni podprta za uvoz", 7 | "Some Error happened." => "Prišlo je do napake.", 8 | "Error" => "Napaka", 9 | "Tags" => "Oznake", 10 | "Filter by tag" => "Razvrsti po oznakah", 11 | "Are you sure you want to remove this bookmark?" => "Ali ste prepričani, da želite izbrisati zaznamek?", 12 | "Warning" => "Opozorilo", 13 | "Are you sure you want to remove this tag from every entry?" => "Ali res želite odstraniti te oznake iz vsakega vnosa?", 14 | "Import error" => "Napaka med uvozom", 15 | "Import completed successfully." => "Uvoz je uspešno zaključen.", 16 | "Uploading..." => "Poteka pošiljanje ...", 17 | "Add a bookmark" => "Dodaj zaznamek", 18 | "This URL is already bookmarked! Overwrite?" => "Spletni naslov je že dodan med zaznamke. Ali ga želite prepisati?", 19 | "The title of the page" => "Naziv strani", 20 | "The address of the page" => "Naslov strani", 21 | "Description of the page" => "Opis strani", 22 | "Save" => "Shrani", 23 | "Delete" => "Izbriši", 24 | "Edit" => "Uredi", 25 | "Cancel" => "Prekliči", 26 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" => "Povlecite gumb med zaznamke in kliknite nanj, kadar želite obiskano spletno stran hitro dodati med svoje zaznamke:", 27 | "Add to ownCloud" => "Dodaj v oblak ownCloud", 28 | "Address" => "Naslov", 29 | "Filterable Tags" => "Oznake, ki jih je mogoče filtrirati", 30 | "You have no bookmarks" => "Ni shranjenih zaznamkov", 31 | "You can also import a bookmark file" => "Uvoziti je mogoče tudi datoteko zaznamkov", 32 | "Bookmarklet" => "Vstavek za zaznamke", 33 | "Export & Import" => "Izvoz in uvoz", 34 | "Export" => "Izvozi", 35 | "Import" => "Uvozi" 36 | ); 37 | $PLURAL_FORMS = "nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"; 38 | -------------------------------------------------------------------------------- /tests/publiccontroller_test.php: -------------------------------------------------------------------------------- 1 | userid = "testuser"; 18 | $this->request = \OC::$server->getRequest(); 19 | $this->db = \OC::$server->getDb(); 20 | $this->userManager = \OC::$server->getUserManager(); 21 | $this->publicController = new PublicController("bookmarks", $this->request, $this->db, $this->userManager); 22 | } 23 | 24 | function testPublicQueryNoUser() { 25 | $output = $this->publicController->returnAsJson(null, "apassword", null); 26 | $data = $output->getData(); 27 | $status = $data['status']; 28 | $this->assertEquals($status, 'error'); 29 | } 30 | 31 | function testPublicQueryWrongUser() { 32 | $output = $this->publicController->returnAsJson("cqc43dr4rx3x4xatr4", "apassword", null); 33 | $data = $output->getData(); 34 | $status = $data['status']; 35 | $this->assertEquals($status, 'error'); 36 | } 37 | 38 | function testPublicQuery() { 39 | 40 | Bookmarks::addBookmark($this->userid, $this->db, "http://www.golem.de", "Golem", array("four"), "PublicNoTag", true); 41 | Bookmarks::addBookmark($this->userid, $this->db, "http://www.9gag.com", "9gag", array("two", "three"), "PublicTag", true); 42 | 43 | $output = $this->publicController->returnAsJson($this->userid); 44 | $data = $output->getData(); 45 | $this->assertEquals(2, count($data)); 46 | 47 | $this->cleanDB(); 48 | } 49 | 50 | function cleanDB() { 51 | $query1 = OC_DB::prepare('DELETE FROM *PREFIX*bookmarks'); 52 | $query1->execute(); 53 | $query2 = OC_DB::prepare('DELETE FROM *PREFIX*bookmarks_tags'); 54 | $query2->execute(); 55 | } 56 | 57 | } 58 | -------------------------------------------------------------------------------- /l10n/ast.php: -------------------------------------------------------------------------------- 1 | "Marcadores", 4 | "Bookm." => "Marcad.", 5 | "No file provided for import" => "Nun s'especificó nengún ficheru pa importar", 6 | "Unsupported file type for import" => "Tipu de ficheru non sofitáu pa importar", 7 | "Some Error happened." => "Dalgún error asocedió", 8 | "Error" => "Fallu", 9 | "Tags" => "Etiquetes", 10 | "Filter by tag" => "Filtriar por etiquetes", 11 | "Are you sure you want to remove this bookmark?" => "¿De xuru quies desaniciar esti marcador?", 12 | "Warning" => "Avisu", 13 | "Are you sure you want to remove this tag from every entry?" => "¿De xuru que quies desaniciar esta etiqueta de toles entraes?", 14 | "Import error" => "Fallu d'importación", 15 | "Import completed successfully." => "Importacióncompletada correchamente", 16 | "Uploading..." => "Xubiendo...", 17 | "Add a bookmark" => "Amestar un marcador", 18 | "This URL is already bookmarked! Overwrite?" => "¡Esta URL ya ta marcada! ¿Quies sobrescribila?", 19 | "The title of the page" => "El títulu de la páxina", 20 | "The address of the page" => "La direición de la páxina", 21 | "Description of the page" => "Descripción de la páxina", 22 | "Save" => "Guardar", 23 | "Delete" => "Desaniciar", 24 | "Edit" => "Editar", 25 | "Cancel" => "Encaboxar", 26 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" => "Arrastra dende equí a los marcadores del to restolador web, y fai clic cuando quieras marcar una páxina web rápidamente:", 27 | "Add to ownCloud" => "Amestar a ownCloud", 28 | "Address" => "Direición", 29 | "Filterable Tags" => "Etiquetes filtrables", 30 | "You have no bookmarks" => "Nun tienes marcadores", 31 | "You can also import a bookmark file" => "Tamién pues importar un ficheru de marcadores", 32 | "Bookmarklet" => "Marcador de JavaScript", 33 | "Export & Import" => "Importar y Esportar", 34 | "Export" => "Esportar", 35 | "Import" => "Importar" 36 | ); 37 | $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 38 | -------------------------------------------------------------------------------- /l10n/cs_CZ.php: -------------------------------------------------------------------------------- 1 | "Záložky", 4 | "Failed to import one bookmark, because: " => "Selhal import jedné záložky z důvodu:", 5 | "Bookm." => "Zál.", 6 | "No file provided for import" => "Nebyl vybrán soubor k importu", 7 | "Unsupported file type for import" => "Nepodporovaný typ souboru pro import", 8 | "Some Error happened." => "Došlo k chybě.", 9 | "Error" => "Chyba", 10 | "Tags" => "Značky", 11 | "Filter by tag" => "Filtrovat podle značky", 12 | "Are you sure you want to remove this bookmark?" => "Opravdu chcete odstranit tuto záložku?", 13 | "Warning" => "Varování", 14 | "Are you sure you want to remove this tag from every entry?" => "Opravdu jste si jisti, že si přejete odstranit tuto značku z každého záznamu?", 15 | "Import error" => "Chyba při importu", 16 | "Import completed successfully." => "Import úspěšně dokončen.", 17 | "Uploading..." => "Odesílám...", 18 | "Add a bookmark" => "Přidat záložku", 19 | "This URL is already bookmarked! Overwrite?" => "Adresa URL je již mezi záložkami! Přepsat?", 20 | "The title of the page" => "Název stránky", 21 | "The address of the page" => "Adresa stránky", 22 | "Description of the page" => "Popis stránky", 23 | "Save" => "Uložit", 24 | "Delete" => "Smazat", 25 | "Edit" => "Upravit", 26 | "Cancel" => "Zrušit", 27 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" => "Přetáhněte do Vašeho prohlížeče a klikněte, pokud si přejete rychle uložit stránku do záložek:", 28 | "Add to ownCloud" => "Přidat do ownCloudu", 29 | "Address" => "Adresa", 30 | "Filterable Tags" => "Filtrovatelné tagy", 31 | "You have no bookmarks" => "Nemáte žádné záložky", 32 | "You can also import a bookmark file" => "Můžete také importovat soubor záložek", 33 | "Bookmarklet" => "Rutina pro záložky", 34 | "Export & Import" => "Export a import", 35 | "Export" => "Exportovat", 36 | "Import" => "Importovat" 37 | ); 38 | $PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; 39 | -------------------------------------------------------------------------------- /l10n/sr@latin.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Bookmarks" : "Obeleživači", 3 | "Bookm." : "Obel.", 4 | "No file provided for import" : "Nema fajla za uvoz", 5 | "Unsupported file type for import" : "Nepodržan tip fajla za uvoz", 6 | "Some Error happened." : "Desila se neka greška.", 7 | "Error" : "Greška", 8 | "Tags" : "Oznake", 9 | "Filter by tag" : "Filtriraj po oznaci", 10 | "Are you sure you want to remove this bookmark?" : "Želite li zaista da uklonite ovaj obeleživač?", 11 | "Warning" : "Upozorenje", 12 | "Are you sure you want to remove this tag from every entry?" : "Želite li zaista da uklonite ovu oznaku iz svakog unosa?", 13 | "Import error" : "Greška uvoza", 14 | "Import completed successfully." : "Uvoz je uspešno završen.", 15 | "Uploading..." : "Otpremam…", 16 | "Add a bookmark" : "Dodaj obeleživač", 17 | "This URL is already bookmarked! Overwrite?" : "Ovaj URL je već obeležen! Da prebrišem?", 18 | "The title of the page" : "Naslov stranice", 19 | "The address of the page" : "Adresa stranice", 20 | "Description of the page" : "Opis stranice", 21 | "Save" : "Sačuvaj", 22 | "Delete" : "Obriši", 23 | "Edit" : "Uredi", 24 | "Cancel" : "Odustani", 25 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" : "Prevucite ovo u obeleživače pregledača i kliknite ako na brzinu želite da obeležite veb stranicu:", 26 | "Add to ownCloud" : "Dodaj u ownCloud", 27 | "Address" : "Adresa", 28 | "Filterable Tags" : "Filtrirajuće oznake", 29 | "You have no bookmarks" : "Nemate obeleživača", 30 | "You can also import a bookmark file" : "Možete i da uvezete fajl obeleživača", 31 | "Bookmarklet" : "Aplet obeleživača", 32 | "Export & Import" : "Izvoz i uvoz", 33 | "Export" : "Izvezi", 34 | "Import" : "Uvezi" 35 | },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);" 36 | } -------------------------------------------------------------------------------- /l10n/bg_BG.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Bookmarks" : "Отметки", 3 | "Bookm." : "Отмет.", 4 | "No file provided for import" : "Не беше предоставен файл за зареждане", 5 | "Unsupported file type for import" : "Неподдържан файл за внасяне.", 6 | "Some Error happened." : "Случисе някаква Грешка.", 7 | "Error" : "Грешка", 8 | "Tags" : "Етикети", 9 | "Filter by tag" : "Филтриране по етикет", 10 | "Are you sure you want to remove this bookmark?" : "Сигурен ли си, че искаш да премахнеш отметката?", 11 | "Warning" : "Предупреждение", 12 | "Are you sure you want to remove this tag from every entry?" : "Сигурен ли си че желаеш да премахнеш този етикет от всеки запис?", 13 | "Import error" : "Грешка при внасянето", 14 | "Import completed successfully." : "Внасянето завърши успешно.", 15 | "Uploading..." : "Качване...", 16 | "Add a bookmark" : "Добави отметка", 17 | "This URL is already bookmarked! Overwrite?" : "Това URL вече е отбелязано! Презаписване?", 18 | "The title of the page" : "Заглавие на страницата", 19 | "The address of the page" : "Адрес на страницата", 20 | "Description of the page" : "Описание на страницата", 21 | "Save" : "Запис", 22 | "Delete" : "Изтриване", 23 | "Edit" : "Промяна", 24 | "Cancel" : "Отказ", 25 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" : "Довлачи това в лентата с отметки на браузъра си и го натискай, когато искаш да отметнеш бързо някоя страница:", 26 | "Add to ownCloud" : "Добави в ownCloud", 27 | "Address" : "Адрес", 28 | "Filterable Tags" : "Етикети подлежащи на Филтриране", 29 | "You have no bookmarks" : "Нямаш отметки", 30 | "You can also import a bookmark file" : "Можеш също да заредиш файл с отметки", 31 | "Bookmarklet" : "Отметка", 32 | "Export & Import" : "Експорт и Внасяне", 33 | "Export" : "Експорт", 34 | "Import" : "Внасяне" 35 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 36 | } -------------------------------------------------------------------------------- /l10n/eo.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "bookmarks", 3 | { 4 | "Bookmarks" : "Legosignoj", 5 | "Bookm." : "Legsign.", 6 | "No file provided for import" : "Neniu dosiero aldonita por enporti", 7 | "Unsupported file type for import" : "Dosiertipo nekongrua kun enporto", 8 | "Some Error happened." : "Iu eraro okazis.", 9 | "Error" : "Eraro", 10 | "Tags" : "Etikedoj", 11 | "Filter by tag" : "Filtri laŭ etikedo", 12 | "Are you sure you want to remove this bookmark?" : "Ĉu vi certe volas forigi ĉi tiun legosignon?", 13 | "Warning" : "Averto", 14 | "Are you sure you want to remove this tag from every entry?" : "Ĉu vi vere volas forigi ĉi tiun etikedon el ĉiu ero?", 15 | "Import error" : "Enporta eraro", 16 | "Import completed successfully." : "Enporto plenumiĝis sukcese.", 17 | "Uploading..." : "Alŝutante...", 18 | "Add a bookmark" : "Aldoni legosignon", 19 | "This URL is already bookmarked! Overwrite?" : "Ĉu tiu adreso jam estas legosigno! Ĉu anstataŭigi?", 20 | "The title of the page" : "Titolo de la paĝo", 21 | "The address of the page" : "Adreso de la paĝo", 22 | "Description of the page" : "Priskribo de la paĝo", 23 | "Save" : "Konservi", 24 | "Delete" : "Forigi", 25 | "Edit" : "Redakti", 26 | "Cancel" : "Nuligi", 27 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" : "Ŝovu tion ĉi al la legosignoj de via TTT-legilo kaj klaku ĝin, se vi volas rapide legosignigi TTT-paĝon:", 28 | "Add to ownCloud" : "Aldoni al ownCloud", 29 | "Address" : "Adreso", 30 | "Filterable Tags" : "Filtreblaj etikedoj", 31 | "You have no bookmarks" : "Vi havas neniun legosignon", 32 | "You can also import a bookmark file" : "Vi ankaŭ povas enporti legosignodosieron", 33 | "Bookmarklet" : "Kodosigno", 34 | "Export & Import" : "Malenporti kaj enporti", 35 | "Export" : "Elporti", 36 | "Import" : "Enporti" 37 | }, 38 | "nplurals=2; plural=(n != 1);"); 39 | -------------------------------------------------------------------------------- /l10n/nn_NO.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Bookmarks" : "Bokmerkje", 3 | "Bookm." : "Bokm.", 4 | "No file provided for import" : "Inga fil gjeve for importering", 5 | "Unsupported file type for import" : "Ustøtta filtype for importering", 6 | "Some Error happened." : "Ein feil oppstod.", 7 | "Error" : "Feil", 8 | "Tags" : "Emneord", 9 | "Filter by tag" : "Filtrer etter emneord", 10 | "Are you sure you want to remove this bookmark?" : "Er du sikker på at du vil fjerne dette bokmerket?", 11 | "Warning" : "Åtvaring", 12 | "Are you sure you want to remove this tag from every entry?" : "Er du sikker på at du vil fjerna dette emneordet frå alle oppføringane?", 13 | "Import error" : "Feil ved importering", 14 | "Import completed successfully." : "Importering fullførte utan feil.", 15 | "Uploading..." : "Lastar opp …", 16 | "Add a bookmark" : "Legg til eit bokmerkje", 17 | "This URL is already bookmarked! Overwrite?" : "Denne URL er allereie bokmerkt, overskriv?", 18 | "The title of the page" : "Tittelen på sida", 19 | "The address of the page" : "Adressa til sida", 20 | "Description of the page" : "Skildring av sida", 21 | "Save" : "Lagra", 22 | "Delete" : "Slett", 23 | "Edit" : "Endra", 24 | "Cancel" : "Avbryt", 25 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" : "Dra denne knappen til bokmerkjelinja i nettlesaren din og klikk han når du vil laga eit bokmerkje raskt:", 26 | "Add to ownCloud" : "Legg til i ownCloud", 27 | "Address" : "Adresse", 28 | "Filterable Tags" : "Filtreringsbare emneord", 29 | "You have no bookmarks" : "Du har inga bokmerkje", 30 | "You can also import a bookmark file" : "Du kan og importere ei bokmerke fil", 31 | "Bookmarklet" : "Bokmerkjeknapp", 32 | "Export & Import" : "Eksporter/importer", 33 | "Export" : "Eksporter", 34 | "Import" : "Importer" 35 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 36 | } -------------------------------------------------------------------------------- /l10n/pl.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Bookmarks" : "Zakładki", 3 | "Bookm." : "Zakładka", 4 | "No file provided for import" : "Nie wybrano plików do importu", 5 | "Unsupported file type for import" : "Nieobsługiwany typ pliku do importu", 6 | "Some Error happened." : "Wystąpił błąd.", 7 | "Error" : "Błąd", 8 | "Tags" : "Tagi", 9 | "Filter by tag" : "Filtruj po tagach", 10 | "Are you sure you want to remove this bookmark?" : "Usunąć tę zakładkę?", 11 | "Warning" : "Ostrzeżenie", 12 | "Are you sure you want to remove this tag from every entry?" : "Czy na pewno chcesz usunąć ten tag z każdego wpisu?", 13 | "Import error" : "Błąd importu", 14 | "Import completed successfully." : "Importowanie zostało pomyślnie ukończone.", 15 | "Uploading..." : "Wgrywanie....", 16 | "Add a bookmark" : "Dodaj zakładkę", 17 | "This URL is already bookmarked! Overwrite?" : "Istnieje już zakładka dla tego adresu URL! Zastąpić ją?", 18 | "The title of the page" : "Tytuł strony", 19 | "The address of the page" : "Adres strony", 20 | "Description of the page" : "Opis strony", 21 | "Save" : "Zapisz", 22 | "Delete" : "Usuń", 23 | "Edit" : "Edytuj", 24 | "Cancel" : "Anuluj", 25 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" : "Przeciągnij to do zakładek w przeglądarce i kliknij, jeśli chcesz szybko dodać stronę do zakładek:", 26 | "Add to ownCloud" : "Dodaj do ownCloud", 27 | "Address" : "Adres", 28 | "Filterable Tags" : "Tagi możliwe do przefiltrowania", 29 | "You have no bookmarks" : "Nie masz żadnych zakładek", 30 | "You can also import a bookmark file" : "Możesz również zaimportować plik z zakładkami", 31 | "Bookmarklet" : "Zakładka", 32 | "Export & Import" : "Eksportuj i Importuj", 33 | "Export" : "Export", 34 | "Import" : "Import" 35 | },"pluralForm" :"nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);" 36 | } -------------------------------------------------------------------------------- /l10n/es_MX.php: -------------------------------------------------------------------------------- 1 | "Marcadores", 4 | "Bookm." => "Marc.", 5 | "No file provided for import" => "No se especificó un archivo para importar", 6 | "Unsupported file type for import" => "Tipo de archivo no soportado para importar", 7 | "Some Error happened." => "Ocurrió algún error", 8 | "Error" => "Error", 9 | "Tags" => "Etiquetas", 10 | "Filter by tag" => "Filtrar por etiquetas", 11 | "Are you sure you want to remove this bookmark?" => "¿Estás seguro de querer eliminar este marcado?", 12 | "Warning" => "Precaución", 13 | "Are you sure you want to remove this tag from every entry?" => "¿Está seguro de que desea eliminar esta etiqueta de todas las entradas?", 14 | "Import error" => "Error de importación", 15 | "Import completed successfully." => "Importación completada con éxito.", 16 | "Uploading..." => "Subiendo...", 17 | "Add a bookmark" => "Agregar a marcadores", 18 | "This URL is already bookmarked! Overwrite?" => "Esta URL ya tiene un marcador! ¿Deseas sobreescribir?", 19 | "The title of the page" => "Título de la página", 20 | "The address of the page" => "Dirección de la página", 21 | "Description of the page" => "Descripción de la página", 22 | "Save" => "Guardar", 23 | "Delete" => "Eliminar", 24 | "Edit" => "Editar", 25 | "Cancel" => "Cancelar", 26 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" => "Arrastre desde aquí a los marcadores de su navegador, y haga clic cuando quiera marcar una página web rápidamente:", 27 | "Add to ownCloud" => "Agregar a ownCloud", 28 | "Address" => "Dirección", 29 | "Filterable Tags" => "Etiquetas filtrables", 30 | "You have no bookmarks" => "No tiene marcadores", 31 | "You can also import a bookmark file" => "También puedes importar un archivo de marcadores", 32 | "Bookmarklet" => "Marcador de JavaScript", 33 | "Export & Import" => "Exportar e Importar", 34 | "Export" => "Exportar", 35 | "Import" => "Importar" 36 | ); 37 | $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 38 | -------------------------------------------------------------------------------- /l10n/fa.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "bookmarks", 3 | { 4 | "Bookmarks" : "نشانک‌ها", 5 | "Bookm." : "Bookm", 6 | "No file provided for import" : "هیچ فایلی وارد نشده است.", 7 | "Unsupported file type for import" : "نوع فایل برای وارد کردن معتبر نیست", 8 | "Some Error happened." : "یک خطا پیش آمد.", 9 | "Error" : "خطا", 10 | "Tags" : "برچسب‌ها", 11 | "Filter by tag" : "فیلتر بر اساس برچسب", 12 | "Are you sure you want to remove this bookmark?" : "آیا از حذف این نشانک اطمینان دارید ؟", 13 | "Warning" : "اخطار", 14 | "Are you sure you want to remove this tag from every entry?" : "آیا مطمئن هستید که میخواهید این برچسب را از هر مطلب حذف کنید؟", 15 | "Import error" : "وارد کردن خطا", 16 | "Import completed successfully." : "وارد کردن با موفقیت انجام شد", 17 | "Uploading..." : "درحال بارگذاری...", 18 | "Add a bookmark" : "اضافه کردن یک نشانک", 19 | "This URL is already bookmarked! Overwrite?" : "این لینک قبلا نشانک گذاری شده است . آیا میخواهید بازنویسی کنید ؟", 20 | "The title of the page" : "عنوان صفحه", 21 | "The address of the page" : "آدرس صحفه", 22 | "Description of the page" : "توضیحات صفحه", 23 | "Save" : "ذخیره", 24 | "Delete" : "حذف", 25 | "Edit" : "ویرایش", 26 | "Cancel" : "منصرف شدن", 27 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" : "هنگامی که می‌خواهید کی صفحه‌ی اینترنتی را بسرعت نشان کنید، این را به نشانه‌های مرورگر خود بکشید و روی آن کلیک کنید.", 28 | "Add to ownCloud" : "افزودن به ownCloud", 29 | "Address" : "آدرس", 30 | "Filterable Tags" : "برچسب های قابل فیلتر شدن", 31 | "You have no bookmarks" : "شما هیچ نشانکی ندارید", 32 | "You can also import a bookmark file" : "شما همچنین می توانید یک فایل نشانه دار را وارد نمایید .", 33 | "Bookmarklet" : "بوکمارک لت", 34 | "Export & Import" : "وارد کردن و خروجی گرفتن", 35 | "Export" : "خروجی گرفتن", 36 | "Import" : "وارد کردن" 37 | }, 38 | "nplurals=1; plural=0;"); 39 | -------------------------------------------------------------------------------- /l10n/ia.php: -------------------------------------------------------------------------------- 1 | "Marcatores de libro", 4 | "Bookm." => "Marcat.", 5 | "No file provided for import" => "Il non ha alcun file de importar", 6 | "Unsupported file type for import" => "Typo de file non supportate per importation", 7 | "Some Error happened." => "Un error ha occurrite.", 8 | "Error" => "Error", 9 | "Tags" => "Etiquettas", 10 | "Filter by tag" => "Filtra per etiquetta", 11 | "Are you sure you want to remove this bookmark?" => "Es tu secur de voler remover iste marcator?", 12 | "Warning" => "Aviso", 13 | "Are you sure you want to remove this tag from every entry?" => "Tu es secur que tu vole remover iste etiquetta ex omne entratas?", 14 | "Import error" => "Error de importation", 15 | "Import completed successfully." => "Importation completate con successo.", 16 | "Uploading..." => "Incargante...", 17 | "Add a bookmark" => "Adde un marcator de libro", 18 | "This URL is already bookmarked! Overwrite?" => "Iste URL es jam inter le marcatores! Superscriber?", 19 | "The title of the page" => "Le titulo del pagina", 20 | "The address of the page" => "Le adresse del pagina", 21 | "Description of the page" => "Description del pagina", 22 | "Save" => "Salveguardar", 23 | "Delete" => "Deler", 24 | "Edit" => "Modificar", 25 | "Cancel" => "Cancellar", 26 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" => "Trahe isto in tu marcatores de libro de navigator e pulsa, quando tu vole memorar un pagina web rapidemente:", 27 | "Add to ownCloud" => "Adde a ownCloud", 28 | "Address" => "Adresse", 29 | "Filterable Tags" => "Etiquettas filtrabile", 30 | "You have no bookmarks" => "Tu non ha marcatores de libro", 31 | "You can also import a bookmark file" => "Tu pote etiam importar un file de marcatores de libro", 32 | "Bookmarklet" => "Bookmarklet", 33 | "Export & Import" => "Exportation & Importation", 34 | "Export" => "Exportar", 35 | "Import" => "Importar" 36 | ); 37 | $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 38 | -------------------------------------------------------------------------------- /l10n/oc.php: -------------------------------------------------------------------------------- 1 | "Favorits", 4 | "Bookm." => "Fav.", 5 | "No file provided for import" => "Cap de fichièr pas provesit per l'importacion", 6 | "Unsupported file type for import" => "Tipe de fichièr pas pres en carga a l'importacion", 7 | "Some Error happened." => "Una error s'es produsida.", 8 | "Error" => "Error", 9 | "Tags" => "Etiquetas", 10 | "Filter by tag" => "Filtrar per etiqueta", 11 | "Are you sure you want to remove this bookmark?" => "Sètz segur que volètz suprimir aqueste favorit ?", 12 | "Warning" => "Atencion", 13 | "Are you sure you want to remove this tag from every entry?" => "Sètz segur que volètz levar aquesta etiqueta de cada entrada ?", 14 | "Import error" => "Error d'importacion", 15 | "Import completed successfully." => "L'importacion s'es acabada amb succès.", 16 | "Uploading..." => "Mandadís en cors…", 17 | "Add a bookmark" => "Apondre un favorit", 18 | "This URL is already bookmarked! Overwrite?" => "Aqueste URL es ja en favorit ! Lo reescriure ?", 19 | "The title of the page" => "Lo títol de la pagina", 20 | "The address of the page" => "L'adreça de la pagina", 21 | "Description of the page" => "Descripcion de la pagina", 22 | "Save" => "Salvar", 23 | "Delete" => "Suprimir", 24 | "Edit" => "Modificar", 25 | "Cancel" => "Anullar", 26 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" => "Lisatz aquò dins los marcapaginas de vòstre navigador e clicatz dessús per apondre la pagina correnta a vòstres favorits :", 27 | "Add to ownCloud" => "Apondre a ownCloud", 28 | "Address" => "Adreça", 29 | "Filterable Tags" => "Etiquetas filtrablas", 30 | "You have no bookmarks" => "Avètz pas cap de favorit", 31 | "You can also import a bookmark file" => "Tanben podètz importar un fichièr de favorits", 32 | "Bookmarklet" => "Applisignet", 33 | "Export & Import" => "Importar e exportar", 34 | "Export" => "Exportar", 35 | "Import" => "Importar" 36 | ); 37 | $PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; 38 | -------------------------------------------------------------------------------- /l10n/th_TH.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Bookmarks" : "รายการโปรด", 3 | "Bookm." : "รายการโปรด", 4 | "No file provided for import" : "ไม่พบไฟล์สำหรับการนำเข้าข้อมูล", 5 | "Unsupported file type for import" : "ประเภทของไฟล์ที่ต้องการนำเข้าไม่ได้รับการรองรับให้ใช้งาน", 6 | "Some Error happened." : "มีข้อผิดพลาดเกิดขึ้น", 7 | "Error" : "ข้อผิดพลาด", 8 | "Tags" : "ป้ายกำกับ", 9 | "Filter by tag" : "แสดงข้อมูลตามป้ายกำกับ", 10 | "Are you sure you want to remove this bookmark?" : "คุณแน่ใจแล้วหรือว่าต้องการลบรายการโปรดนี้", 11 | "Warning" : "คำเตือน", 12 | "Are you sure you want to remove this tag from every entry?" : "คุณแน่ใจแล้วหรือว่าต้องการลบป้ายกำกับนี้ออกจากทุกๆรายการ", 13 | "Import error" : "นำเข้าข้อมูลผิดพลาด", 14 | "Import completed successfully." : "นำเข้าข้อมูลเสร็จเรียบร้อยแล้ว", 15 | "Uploading..." : "กำลังอัพโหลด...", 16 | "Add a bookmark" : "เพิ่มรายการโปรด", 17 | "This URL is already bookmarked! Overwrite?" : "URL นี้มีอยู่แล้วในบุ๊คมาร์ค! ให้เขียนทับ?", 18 | "The title of the page" : "ชื่อของหน้า", 19 | "The address of the page" : "ที่อยู่ของหน้า", 20 | "Description of the page" : "คำอธิบายเกี่ยวกับหน้า", 21 | "Save" : "บันทึก", 22 | "Delete" : "ลบ", 23 | "Edit" : "แก้ไข", 24 | "Cancel" : "ยกเลิก", 25 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" : "ลากสิ่งนี้ไปไว้ที่รายการโปรดในโปรแกรมบราวเซอร์ของคุณ แล้วคลิกที่นั่น, เมื่อคุณต้องการเก็บหน้าเว็บเพจเข้าไปไว้ในรายการโปรดอย่างรวดเร็ว", 26 | "Add to ownCloud" : "เพิ่มใน ownCloud", 27 | "Address" : "ที่อยู่", 28 | "Filterable Tags" : "กรองแท็ก", 29 | "You have no bookmarks" : "คุณยังไม่มีรายการโปรด", 30 | "You can also import a bookmark file" : "นอกจากนี้คุณยังสามารถนำเข้าไฟล์รายการโปรด", 31 | "Bookmarklet" : "Bookmarklet", 32 | "Export & Import" : "ส่งออก & นำเข้า", 33 | "Export" : "ส่งออก", 34 | "Import" : "นำเข้า" 35 | },"pluralForm" :"nplurals=1; plural=0;" 36 | } -------------------------------------------------------------------------------- /l10n/et_EE.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "bookmarks", 3 | { 4 | "Bookmarks" : "Järjehoidjad", 5 | "Bookm." : "Järjeh.", 6 | "No file provided for import" : "Imporditav fail puudub", 7 | "Unsupported file type for import" : "Toetuseta failitüübi import", 8 | "Some Error happened." : "Ilmnes mingi tõrge.", 9 | "Error" : "Tõrge", 10 | "Tags" : "Sildid", 11 | "Filter by tag" : "Filtreeri siltide järgi", 12 | "Are you sure you want to remove this bookmark?" : "Kas sa tõesti soovid seda järjehoidjat eemaldada?", 13 | "Warning" : "Hoiatus", 14 | "Are you sure you want to remove this tag from every entry?" : "Oled sa kindel, et sa soovid kõigilt sissekannetelt seda silti eemaldada?", 15 | "Import error" : "Viga importimisel", 16 | "Import completed successfully." : "Import on edukalt lõpetatud.", 17 | "Uploading..." : "Üleslaadimine...", 18 | "Add a bookmark" : "Lisa järjehoidja", 19 | "This URL is already bookmarked! Overwrite?" : "See URL on juba järjehoidjates. Kas kirjutada üle?", 20 | "The title of the page" : "Lehe pealkiri", 21 | "The address of the page" : "Lehe aadress", 22 | "Description of the page" : "Lehe kirjeldus", 23 | "Save" : "Salvesta", 24 | "Delete" : "Kustuta", 25 | "Edit" : "Muuda", 26 | "Cancel" : "Loobu", 27 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" : "Lohista see oma veebilehitseja järjehoidjatesse ja kliki sellele, kui sa soovid veebilehte kiirelt lisada:", 28 | "Add to ownCloud" : "Lisa ownCloudi", 29 | "Address" : "Aadress", 30 | "Filterable Tags" : "Filtreeritavad sildid", 31 | "You have no bookmarks" : "Sul pole järjehoidjaid", 32 | "You can also import a bookmark file" : "Järjehoidjafaili on võimalik importida", 33 | "Bookmarklet" : "Järjehoidja vidin", 34 | "Export & Import" : "Eksport ja import", 35 | "Export" : "Ekspordi", 36 | "Import" : "Impordi" 37 | }, 38 | "nplurals=2; plural=(n != 1);"); 39 | -------------------------------------------------------------------------------- /l10n/hu_HU.php: -------------------------------------------------------------------------------- 1 | "Könyvjelzők", 4 | "Bookm." => "Könyvj.", 5 | "No file provided for import" => "Nincs megadva az importálandó fájl", 6 | "Unsupported file type for import" => "Az importálandó fájltípus nem támogatott", 7 | "Some Error happened." => "Valami hiba történt", 8 | "Error" => "Hiba", 9 | "Tags" => "Címkék", 10 | "Filter by tag" => "Szűrés címkék szerint", 11 | "Are you sure you want to remove this bookmark?" => "Biztosan törölni szeretnéd ezt a könyvjelzőt?", 12 | "Warning" => "Figyelmeztetés", 13 | "Are you sure you want to remove this tag from every entry?" => "Biztos benne, hogy ezt a címkét el szeretné távolítani az összes bejegyzésből?", 14 | "Import error" => "Hiba történt az importáláskor", 15 | "Import completed successfully." => "Az importálás sikeresen befejeződött.", 16 | "Uploading..." => "Feltöltés...", 17 | "Add a bookmark" => "Könyvjelző hozzáadása", 18 | "This URL is already bookmarked! Overwrite?" => "Ez az URL már a könyvjelzők között van! Felül akarod írni?", 19 | "The title of the page" => "Az oldal neve", 20 | "The address of the page" => "Az oldal webcíme", 21 | "Description of the page" => "Az oldal leírása", 22 | "Save" => "Mentés", 23 | "Delete" => "Törlés", 24 | "Edit" => "Szerkesztés", 25 | "Cancel" => "Mégsem", 26 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" => "Húzza át ezt a gombot a böngészőprogram \"Könyvjelzők\" sávjába! Ha ezután rákattint, akkor az aktuális weboldal címét ide fogja menteni.", 27 | "Add to ownCloud" => "Hozzáadni az ownCloud-hoz", 28 | "Address" => "Cím", 29 | "Filterable Tags" => "Szűrhető címkék", 30 | "You have no bookmarks" => "Nincsenek könyvjelzői", 31 | "You can also import a bookmark file" => "Akár importálhatsz is egy könyvjelző fájlt", 32 | "Bookmarklet" => "Könyvjelző", 33 | "Export & Import" => "Export és import", 34 | "Export" => "Exportálás", 35 | "Import" => "Importálás" 36 | ); 37 | $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; 38 | -------------------------------------------------------------------------------- /l10n/sr.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "bookmarks", 3 | { 4 | "Bookmarks" : "Обележивачи", 5 | "Bookm." : "Обел.", 6 | "No file provided for import" : "Нема фајла за увоз", 7 | "Unsupported file type for import" : "Неподржан тип фајла за увоз", 8 | "Some Error happened." : "Десила се нека грешка.", 9 | "Error" : "Грешка", 10 | "Tags" : "Ознаке", 11 | "Filter by tag" : "Филтрирај по ознаци", 12 | "Are you sure you want to remove this bookmark?" : "Желите ли заиста да уклоните овај обележивач?", 13 | "Warning" : "Упозорење", 14 | "Are you sure you want to remove this tag from every entry?" : "Желите ли заиста да уклоните ову ознаку из сваког уноса?", 15 | "Import error" : "Грешка увоза", 16 | "Import completed successfully." : "Увоз је успешно завршен.", 17 | "Uploading..." : "Отпремам…", 18 | "Add a bookmark" : "Додај обележивач", 19 | "This URL is already bookmarked! Overwrite?" : "Овај УРЛ је већ обележен! Да пребришем?", 20 | "The title of the page" : "Наслов странице", 21 | "The address of the page" : "Адреса странице", 22 | "Description of the page" : "Опис странице", 23 | "Save" : "Сачувај", 24 | "Delete" : "Обриши", 25 | "Edit" : "Уреди", 26 | "Cancel" : "Одустани", 27 | "Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:" : "Превуците ово у обележиваче прегледача и кликните ако на брзину желите да обележите веб страницу:", 28 | "Add to ownCloud" : "Додај у оунКлауд", 29 | "Address" : "Адреса", 30 | "Filterable Tags" : "Филтрирајуће ознаке", 31 | "You have no bookmarks" : "Немате обележивача", 32 | "You can also import a bookmark file" : "Можете и да увезете фајл обележивача", 33 | "Bookmarklet" : "Аплет обележивача", 34 | "Export & Import" : "Извоз и увоз", 35 | "Export" : "Извези", 36 | "Import" : "Увези" 37 | }, 38 | "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 | --------------------------------------------------------------------------------