File manager - Edit - /home/jardides/www/Jardi-design/images/administrator/l10n.tar
Back
l10n.pl 0000604 00000013273 15247063743 0005670 0 ustar 00 #!/usr/bin/perl use strict; use Locale::PO; use Cwd; use Data::Dumper; use File::Path; sub crawlPrograms{ my( $dir, $ignore ) = @_; my @found = (); opendir( DIR, $dir ); my @files = readdir( DIR ); closedir( DIR ); @files = sort( @files ); foreach my $i ( @files ){ next if substr( $i, 0, 1 ) eq '.'; if( $i eq 'l10n' && !$ignore ){ push( @found, $dir ); } elsif( -d $dir.'/'.$i ){ push( @found, crawlPrograms( $dir.'/'.$i )); } } return @found; } sub crawlFiles{ my( $dir ) = @_; my @found = (); opendir( DIR, $dir ); my @files = readdir( DIR ); closedir( DIR ); @files = sort( @files ); foreach my $i ( @files ){ next if substr( $i, 0, 1 ) eq '.'; next if $i eq 'l10n'; if( -d $dir.'/'.$i ){ push( @found, crawlFiles( $dir.'/'.$i )); } else{ push(@found,$dir.'/'.$i) if $i =~ /.*(?<!\.min)\.js$/ || $i =~ /\.php$/; } } return @found; } sub readIgnorelist{ return () unless -e 'l10n/ignorelist'; my %ignore = (); open(IN,'l10n/ignorelist'); while(<IN>){ my $line = $_; chomp($line); $ignore{"./$line"}++; } close(IN); return %ignore; } sub getPluralInfo { my( $info ) = @_; # get string $info =~ s/.*Plural-Forms: (.+)\\n.*/$1/; $info =~ s/^(.*)\\n.*/$1/g; return $info; } sub init() { # let's get the version from stdout of xgettext my $out = `xgettext --version`; # we assume the first line looks like this 'xgettext (GNU gettext-tools) 0.19.3' $out = substr $out, 29, index($out, "\n")-29; $out =~ s/^\s+|\s+$//g; $out = "v" . $out; my $actual = version->parse($out); # 0.18.3 introduced JavaScript as a language option my $expected = version->parse('v0.18.3'); if ($actual < $expected) { die( "Minimum expected version of xgettext is " . $expected . ". Detected: " . $actual ); } } init(); my $task = shift( @ARGV ); my $place = '..'; die( "Usage: l10n.pl task\ntask: read, write\n" ) unless $task && $place; # Our current position my $whereami = cwd(); die( "Program must be executed in a l10n-folder called 'l10n'" ) unless $whereami =~ m/\/l10n$/; # Where are i18n-files? my @dirs = crawlPrograms( $place, 1 ); # Languages my @languages = (); opendir( DIR, '.' ); my @files = readdir( DIR ); closedir( DIR ); foreach my $i ( @files ){ push( @languages, $i ) if -d $i && substr( $i, 0, 1 ) ne '.'; } if( $task eq 'read' ){ rmtree( 'templates' ); mkdir( 'templates' ) unless -d 'templates'; print "Mode: reading\n"; foreach my $dir ( @dirs ){ my @temp = split( /\//, $dir ); my $app = pop( @temp ); chdir( $dir ); # parses the app info and creates an dummy file specialAppInfoFakeDummyForL10nScript.php `php $whereami/../build/l10nParseAppInfo.php`; my @totranslate = crawlFiles('.'); my %ignore = readIgnorelist(); my $output = "${whereami}/templates/$app.pot"; print " Processing $app\n"; foreach my $file ( @totranslate ){ next if $ignore{$file}; my $keywords = ''; if( $file =~ /\.js$/ ){ $keywords = '--keyword=t:2 --keyword=n:2,3'; } else{ $keywords = '--keyword=t --keyword=n:1,2'; } my $language = ( $file =~ /\.js$/ ? 'Javascript' : 'PHP'); my $joinexisting = ( -e $output ? '--join-existing' : ''); print " Reading $file\n"; `xgettext --output="$output" $joinexisting $keywords --language=$language "$file" --add-comments=TRANSLATORS --from-code=UTF-8 --package-version="8.0.0" --package-name="ownCloud Core" --msgid-bugs-address="translations\@owncloud.org"`; } rmtree( "specialAppInfoFakeDummyForL10nScript.php" ); chdir( $whereami ); } } elsif( $task eq 'write' ){ print "Mode: write\n"; foreach my $dir ( @dirs ){ my @temp = split( /\//, $dir ); my $app = pop( @temp ); chdir( $dir.'/l10n' ); print " Processing $app\n"; foreach my $language ( @languages ){ next if $language eq 'templates'; my $input = "${whereami}/$language/$app.po"; next unless -e $input; print " Language $language\n"; my $array = Locale::PO->load_file_asarray( $input ); # Create array my @strings = (); my @js_strings = (); my $plurals; TRANSLATIONS: foreach my $string ( @{$array} ){ if( $string->msgid() eq '""' ){ # Translator information $plurals = getPluralInfo( $string->msgstr()); } elsif( defined( $string->msgstr_n() )){ # plural translations my @variants = (); my $msgid = $string->msgid(); $msgid =~ s/^"(.*)"$/$1/; my $msgid_plural = $string->msgid_plural(); $msgid_plural =~ s/^"(.*)"$/$1/; my $identifier = "_" . $msgid."_::_".$msgid_plural . "_"; foreach my $variant ( sort { $a <=> $b} keys( %{$string->msgstr_n()} )){ next TRANSLATIONS if $string->msgstr_n()->{$variant} eq '""'; push( @variants, $string->msgstr_n()->{$variant} ); } push( @strings, "\"$identifier\" => array(".join(",", @variants).")"); push( @js_strings, "\"$identifier\" : [".join(",", @variants)."]"); } else{ # singular translations next TRANSLATIONS if $string->msgstr() eq '""'; push( @strings, $string->msgid()." => ".$string->msgstr()); push( @js_strings, $string->msgid()." : ".$string->msgstr()); } } next if $#strings == -1; # Skip empty files for (@strings) { s/\$/\\\$/g; } # delete old php file unlink "$language.php"; # Write js file open( OUT, ">$language.js" ); print OUT "OC.L10N.register(\n \"$app\",\n {\n "; print OUT join( ",\n ", @js_strings ); print OUT "\n},\n\"$plurals\");\n"; close( OUT ); # Write json file open( OUT, ">$language.json" ); print OUT "{ \"translations\": "; print OUT "{\n "; print OUT join( ",\n ", @js_strings ); print OUT "\n},\"pluralForm\" :\"$plurals\"\n}"; close( OUT ); } chdir( $whereami ); } } else{ print "unknown task!\n"; } rm-old.sh 0000604 00000002254 15247063743 0006304 0 ustar 00 #!/usr/bin/env bash lang=(ach ady af_ZA ak am_ET ar ast az bal be bg_BG bn_BD bn_IN bs ca cs_CZ cy_GB da de de_AT de_DE el en_GB en@pirate eo es es_AR es_CL es_MX et_EE eu fa fi_FI fil fr fy_NL gl gu he hi hr hu_HU hy ia id io is it ja jv ka_GE km kn ko ku_IQ la lb lo lt_LT lv mg mk ml ml_IN mn mr ms_MY mt_MT my_MM nb_NO nds ne nl nn_NO nqo oc or_IN pa pl pt_BR pt_PT ro ru si_LK sk_SK sl sq sr sr@latin su sv sw_KE ta_IN ta_LK te tg_TJ th_TH tl_PH tr tzl tzm ug uk ur_PK uz vi yo zh_CN zh_HK zh_TW) ignore="" for fignore in "${lang[@]}"; do ignore=${ignore}"-not -name ${fignore}.js -not -name ${fignore}.json " done find ../lib/l10n -type f $ignore -delete find ../settings/l10n -type f $ignore -delete find ../core/l10n -type f $ignore -delete find ../apps/files/l10n -type f $ignore -delete find ../apps/encryption/l10n -type f $ignore -delete find ../apps/files_external/l10n -type f $ignore -delete find ../apps/files_sharing/l10n -type f $ignore -delete find ../apps/files_trashbin/l10n -type f $ignore -delete find ../apps/files_versions/l10n -type f $ignore -delete find ../apps/user_ldap/l10n -type f $ignore -delete find ../apps/user_webdavauth/l10n -type f $ignore -delete .gitignore 0000604 00000000013 15247063743 0006535 0 ustar 00 *.po *.pot .tx/config 0000604 00000000264 15247063743 0006456 0 ustar 00 [main] host = https://www.transifex.com lang_map = ja_JP: ja [nextcloud.contacts] file_filter = <lang>/contacts.po source_file = templates/contacts.pot source_lang = en type = PO id.json 0000604 00000000453 15247100614 0006031 0 ustar 00 { "translations": { "Contact birthdays" : "Ulang tahun kontak", "Personal" : "Pribadi", "Contacts" : "Kontak", "Technical details" : "Rincian teknis", "Remote Address: %s" : "Alamat remote: %s", "Request ID: %s" : "ID Permintaan: %s" },"pluralForm" :"nplurals=1; plural=0;" } bg.js 0000604 00000011602 15247100614 0005466 0 ustar 00 OC.L10N.register( "dav", { "Calendar" : "Календар", "Todos" : "Задачи", "{actor} created calendar {calendar}" : "{actor} направи календар {calendar}", "You created calendar {calendar}" : "Направихте календар {calendar}", "{actor} deleted calendar {calendar}" : "{actor} изтри календар {calendar}", "You deleted calendar {calendar}" : "Изтрихте календар {calendar}", "{actor} updated calendar {calendar}" : "{actor} обнови календар {calendar}", "You updated calendar {calendar}" : "Обновихте календар {calendar}", "{actor} shared calendar {calendar} with you" : "{actor} сподели календар {calendar} с теб", "You shared calendar {calendar} with {user}" : "Споделихте календар {calendar} с {user}", "{actor} shared calendar {calendar} with {user}" : "{actor} сподели календар {calendar} с {user}", "{actor} unshared calendar {calendar} from you" : "{actor} отказа споделяне на календар {calendar} с теб", "You unshared calendar {calendar} from {user}" : "Отказахте споделяне на календар {calendar} от {user}", "{actor} unshared calendar {calendar} from {user}" : "{actor} отказа споделяне на календар {calendar} от {user}", "{actor} unshared calendar {calendar} from themselves" : "{actor} отказа споделяне на календар {calendar} от себеси", "You shared calendar {calendar} with group {group}" : "Споделихте календар {calendar} с група {group}", "{actor} shared calendar {calendar} with group {group}" : "{actor} сподели календар {calendar} с група {group}", "You unshared calendar {calendar} from group {group}" : "Отказахте споделяне на календар {calendar} от група {group}", "{actor} unshared calendar {calendar} from group {group}" : "{actor} отказа споделяне с календар {calendar} от група {group}", "{actor} created event {event} in calendar {calendar}" : "{actor} създаде събитие {event} в календар {calendar}", "You created event {event} in calendar {calendar}" : "Създадохте събитие {event} в календар {calendar}", "{actor} deleted event {event} from calendar {calendar}" : "{actor} изтри събитие {event} от календар {calendar}", "You deleted event {event} from calendar {calendar}" : "Изтрихте събитие {event} от календар {calendar}", "{actor} updated event {event} in calendar {calendar}" : "{actor} обнови събитие {event} в календар {calendar}", "You updated event {event} in calendar {calendar}" : "Обновихте събитие {event} в календар {calendar}", "{actor} created todo {todo} in list {calendar}" : "{actor} създаде задача {todo} в списък {calendar}", "You created todo {todo} in list {calendar}" : "Създадохте задача {todo} в списък {calendar}", "{actor} deleted todo {todo} from list {calendar}" : "{actor} изтри задача {todo} от списък {calendar}", "You deleted todo {todo} from list {calendar}" : "Изтрихте задача {todo} от лист {calendar}", "{actor} updated todo {todo} in list {calendar}" : "{actor} актуализира задача {todo} в списък {calendar}", "You updated todo {todo} in list {calendar}" : "Променихте задача {todo} в списък {calendar}", "{actor} solved todo {todo} in list {calendar}" : "{actor} реши задача {todo} в списък {calendar}", "You solved todo {todo} in list {calendar}" : "Решихте задача {todo} в списък {calendar}", "{actor} reopened todo {todo} in list {calendar}" : "{actor} възобнови задача {todo} в списък {calendar}", "You reopened todo {todo} in list {calendar}" : "Възобновихте задача {todo} в списък {calendar}", "A <strong>calendar</strong> was modified" : "<strong>Календар</strong> беше променен", "A calendar <strong>event</strong> was modified" : "Календарно <strong>събитие</strong> беше променено", "A calendar <strong>todo</strong> was modified" : "Календарна <strong>задача</strong> беше променена", "Contact birthdays" : "Рождени дни на контакти", "Personal" : "Личен", "Contacts" : "Контакти", "Technical details" : "Технически детайли", "Remote Address: %s" : "Отдалечен адрес: %s", "Request ID: %s" : "ID на заявка: %s" }, "nplurals=2; plural=(n != 1);"); zh_TW.json 0000604 00000002611 15247100614 0006466 0 ustar 00 { "translations": { "Contacts" : "通訊錄", "Address book name" : "通訊錄名稱", "Import" : "匯入", "No contacts in here" : "這裡沒有聯絡人", "Name" : "名稱", "Organization" : "組織", "Title" : "標題", "Add field ..." : "新增欄位…", "No search result for {query}" : "沒有結果符合 {query}", "Postal code" : "郵遞區號", "City" : "城市", "State or province" : "州或省", "Country" : "國家", "Address" : "網址", "(new group)" : "(新群組)", "Last name" : "姓氏", "First name" : "名子", "Additional names" : "別名", "All contacts" : "所有聯絡人", "Not grouped" : "不在群組裡", "New contact" : "新聯絡人", "{addressbook} shared by {owner}" : "{addressbook} 由 {owner} 分享", "Nickname" : "暱稱", "Notes" : "筆記", "Website" : "網站", "Federated Cloud ID" : "聯盟式雲端 ID", "Home" : "家目錄", "Work" : "工作", "Other" : "其他", "Groups" : "群組", "Birthday" : "生日", "Email" : "Email", "Instant messaging" : "即時通訊", "Phone" : "電話", "Mobile" : "行動電話", "Fax" : "傳真", "Fax home" : "傳真(家)", "Fax work" : "傳真(公司)", "Pager" : "呼叫器", "Voice" : "語音", "Settings" : "設定" },"pluralForm" :"nplurals=1; plural=0;" } bg_BG.js 0000604 00000005035 15247100614 0006041 0 ustar 00 OC.L10N.register( "contacts", { "Contacts" : "Контакти", "Address book name" : "Име на адресна книга ", "Import" : "Внасяне", "The selected image is too big (max 1MB)" : "Избраното изображение е много голямо (до 1MB)", "No contacts in here" : "Тук няма контакти", "Name" : "Име", "Organization" : "Организация", "Title" : "Заглавие", "Add field ..." : "Добави поле ...", "No search result for {query}" : "Няма намерени резултати за {query}", "_%n contact_::_%n contacts_" : ["%n контакт","%n контакта"], "Post office box" : "Пощенска кутия", "Postal code" : "Пощенски код", "City" : "Град", "State or province" : "Област", "Country" : "Държава", "Address" : "Адрес", "(new group)" : "(нова група)", "Last name" : "Последно име", "First name" : "Първо име", "Additional names" : "Други имена", "Prefix" : "Представка", "Suffix" : "Наставка", "All contacts" : "Всички контакти", "Not grouped" : "Негрупирани", "New contact" : "Нов контакт", "{addressbook} shared by {owner}" : "{addressbook} споделена с {owner}", "Contact could not be created." : "Контакта не може да бъде създаден.", "No contacts in file. Only VCard files are allowed." : "Няма контакти във файла. Разрешени са само VCard файлове.", "Nickname" : "Псевдоним", "Detailed name" : "Детайлно име", "Notes" : "Бележки", "Website" : "Уеб страница", "Federated Cloud ID" : "Federated Cloud ID", "Home" : "Домашен", "Work" : "Работен", "Other" : "Друг...", "Groups" : "Групи", "Birthday" : "Рожден ден", "Anniversary" : "Годишнина", "Date of death" : "Дата на смърт", "Email" : "Имейл", "Instant messaging" : "Чат", "Phone" : "Телефон", "Mobile" : "Мобилен", "Fax" : "Факс", "Fax home" : "Факс домашен", "Fax work" : "Факс служебен", "Pager" : "Пейджър", "Voice" : "Гласов", "Social network" : "Социална мрежа", "Settings" : "Настройки" }, "nplurals=2; plural=(n != 1);"); es_MX.js 0000604 00000004060 15247100614 0006111 0 ustar 00 OC.L10N.register( "contacts", { "Contacts" : "Contactos", "Address book name" : "Nombre de la libreta de direcciones", "Import" : "Importar", "The selected image is too big (max 1MB)" : "La imagen seleccionad es demaciado grande (max 1MB)", "No contacts in here" : "No hay contactos aquí", "Name" : "Nombre", "Organization" : "Organización", "Title" : "Título", "Add field ..." : "Agregar campo", "No search result for {query}" : "No hay resultados en la busquede para {query}", "Post office box" : "Apartado de correos", "Postal code" : "Código postal", "City" : "Ciudad", "State or province" : "Estado o provincia", "Country" : "País", "Address" : "Dirección", "(new group)" : "(nuevo grupo)", "Last name" : "Apellido", "First name" : "Nombre", "Additional names" : "Nombres adicionales", "Prefix" : "Prefijo", "Suffix" : "Sufijo", "All contacts" : "Todos los contactos", "Not grouped" : "No agrupado", "New contact" : "Nuevo contacto", "{addressbook} shared by {owner}" : "{addressbook} compartido por {owner}", "Contact could not be created." : "El contacto no se ha podido crear", "No contacts in file. Only VCard files are allowed." : "No hay contactos en el archivo. Solo se permiten archivos VCard.", "Nickname" : "Alias", "Detailed name" : "Detalle de nombre", "Notes" : "Notas", "Website" : "Sitio Web", "Federated Cloud ID" : "Mensajería instantanea", "Home" : "Particular", "Work" : "Trabajo", "Other" : "Otro", "Groups" : "Grupos", "Birthday" : "Fecha de nacimiento", "Anniversary" : "Aniversario", "Date of death" : "Fecha de fallecimiento", "Email" : "E-mail", "Instant messaging" : "Mensajería instantanea", "Phone" : "Teléfono", "Mobile" : "Móvil", "Fax" : "Fax", "Fax home" : "Fax de casa", "Fax work" : "Fax de trabajo", "Pager" : "Localizador", "Voice" : "Voz", "Social network" : "Red social", "Settings" : "Ajustes" }, "nplurals=2; plural=(n != 1);"); pl.json 0000604 00000004245 15247100614 0006053 0 ustar 00 { "translations": { "Contacts" : "Kontakty", "Address book name" : "Nazwa książki adresowej", "Import" : "Importuj", "The selected image is too big (max 1MB)" : "Wybrany plik jest zbyt duży (maks. 1 MB)", "No contacts in here" : "Nie ma tu żadnych kontaktów", "Name" : "Nazwa", "Organization" : "Organizacja", "Title" : "Tytuł", "Add field ..." : "Dodaj pole ...", "No search result for {query}" : "Brak wyników wyszukiwania dla zapytania {query}", "_%n contact_::_%n contacts_" : ["%n kontakt","%n kontaktów","%n kontaktów"], "Post office box" : "Skrytka Pocztowa", "Postal code" : "Kod pocztowy", "City" : "Miasto", "State or province" : "Województwo ", "Country" : "Kraj", "Address" : "Adres", "(new group)" : "Nowa grupa", "Last name" : "Nazwisko", "First name" : "Imię", "Additional names" : "Dodatkowe nazwy", "Prefix" : "Przedrostek", "Suffix" : "Przyrostek", "All contacts" : "Wszystkie kontakty", "Not grouped" : "Nie zgrupowane", "New contact" : "Nowy kontakt", "{addressbook} shared by {owner}" : "Książka {addressbook} udostępniona przez {owner}", "Contact could not be created." : "Nie można utworzyć kontaktu", "No contacts in file. Only VCard files are allowed." : "Brak kontaktów w pliku. Dozwolone są tylko pliki VCard.", "Nickname" : "Nazwa", "Detailed name" : "Szczegółowa nazwa", "Notes" : "Notatki", "Website" : "Strona www", "Federated Cloud ID" : "ID chmury stowarzyszonej", "Home" : "Strona główna", "Work" : "Zawodowe", "Other" : "Inne", "Groups" : "Grupy", "Birthday" : "Urodziny", "Anniversary" : "Rocznica", "Date of death" : "Data śmierci", "Email" : "Email", "Instant messaging" : "Szybkie wiadomości", "Phone" : "Telefon", "Mobile" : "Komórka", "Fax" : "Faks", "Fax home" : "Faks domowy", "Fax work" : "Fakx pracowy", "Pager" : "Pager", "Voice" : "Połączenie głosowe", "Social network" : "Siec społecznościowa", "Settings" : "Ustawienia" },"pluralForm" :"nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);" } ja.js 0000604 00000005355 15247100614 0005500 0 ustar 00 OC.L10N.register( "contacts", { "Contacts" : "アドレス帳", "Download" : "ダウンロード", "ShowURL" : "URL表示", "Share Addressbook" : "アドレス帳を共有", "Delete Addressbook" : "アドレス帳を削除", "Share with users or groups" : "ユーザーまたはグループと共有する", "Delete" : "削除", "can edit" : "編集を許可", "Address book name" : "アドレス帳名", "Import" : "インポート", "The selected image is too big (max 1MB)" : "選択した画像容量が大きすぎます (最大1 MB)", "No contacts in here" : "連絡先がありません", "Name" : "名前", "Organization" : "所属", "Title" : "タイトル", "Add field ..." : "項目を追加", "No search result for {query}" : "{query} に関する検索結果はありません。", "_%n contact_::_%n contacts_" : ["件の連絡先"], "Post office box" : "私書箱", "Postal code" : "郵便番号", "City" : "市町村", "State or province" : "州/県", "Country" : "国名", "Address" : "アドレス", "(new group)" : "(新規グループ)", "Last name" : "姓", "First name" : "名", "Additional names" : "ミドルネーム", "Prefix" : "プレフィックス", "Suffix" : "サフィックス", "All contacts" : "すべての連絡先", "Not grouped" : "グループ化されていません", "New contact" : "新しい連絡先", "{addressbook} shared by {owner}" : " {owner}と共有中の{addressbook} ", "Contact could not be created." : "連絡先を作成できませんでした。", "No contacts in file. Only VCard files are allowed." : "コンタクトがファイルにありません。VCardファイルのみが有効です。", "Only VCard version 4.0 (RFC6350) or version 3.0 (RFC2426) are supported." : "VCardバージョン4.0(RFC6350)またはバージョン3.0(RFC2426)のみがサポートされています。", "Nickname" : "ニックネーム", "Detailed name" : "詳細名", "Notes" : "ノート", "Website" : "ウェブサイト", "Federated Cloud ID" : "クラウド連携ID", "Home" : "自宅", "Work" : "職場", "Other" : "その他", "Groups" : "グループ", "Birthday" : "誕生日", "Anniversary" : "記念日", "Date of death" : "命日", "Email" : "メール", "Instant messaging" : "インスタントメッセージ", "Phone" : "電話番号", "Mobile" : "携帯", "Fax" : "FAX", "Fax home" : "自宅FAX", "Fax work" : "職場FAX", "Pager" : "ポケベル", "Voice" : "音声番号", "Social network" : "ソーシャルネットワーク", "Settings" : "設定" }, "nplurals=1; plural=0;"); ja.json 0000604 00000005345 15247100614 0006034 0 ustar 00 { "translations": { "Contacts" : "アドレス帳", "Download" : "ダウンロード", "ShowURL" : "URL表示", "Share Addressbook" : "アドレス帳を共有", "Delete Addressbook" : "アドレス帳を削除", "Share with users or groups" : "ユーザーまたはグループと共有する", "Delete" : "削除", "can edit" : "編集を許可", "Address book name" : "アドレス帳名", "Import" : "インポート", "The selected image is too big (max 1MB)" : "選択した画像容量が大きすぎます (最大1 MB)", "No contacts in here" : "連絡先がありません", "Name" : "名前", "Organization" : "所属", "Title" : "タイトル", "Add field ..." : "項目を追加", "No search result for {query}" : "{query} に関する検索結果はありません。", "_%n contact_::_%n contacts_" : ["件の連絡先"], "Post office box" : "私書箱", "Postal code" : "郵便番号", "City" : "市町村", "State or province" : "州/県", "Country" : "国名", "Address" : "アドレス", "(new group)" : "(新規グループ)", "Last name" : "姓", "First name" : "名", "Additional names" : "ミドルネーム", "Prefix" : "プレフィックス", "Suffix" : "サフィックス", "All contacts" : "すべての連絡先", "Not grouped" : "グループ化されていません", "New contact" : "新しい連絡先", "{addressbook} shared by {owner}" : " {owner}と共有中の{addressbook} ", "Contact could not be created." : "連絡先を作成できませんでした。", "No contacts in file. Only VCard files are allowed." : "コンタクトがファイルにありません。VCardファイルのみが有効です。", "Only VCard version 4.0 (RFC6350) or version 3.0 (RFC2426) are supported." : "VCardバージョン4.0(RFC6350)またはバージョン3.0(RFC2426)のみがサポートされています。", "Nickname" : "ニックネーム", "Detailed name" : "詳細名", "Notes" : "ノート", "Website" : "ウェブサイト", "Federated Cloud ID" : "クラウド連携ID", "Home" : "自宅", "Work" : "職場", "Other" : "その他", "Groups" : "グループ", "Birthday" : "誕生日", "Anniversary" : "記念日", "Date of death" : "命日", "Email" : "メール", "Instant messaging" : "インスタントメッセージ", "Phone" : "電話番号", "Mobile" : "携帯", "Fax" : "FAX", "Fax home" : "自宅FAX", "Fax work" : "職場FAX", "Pager" : "ポケベル", "Voice" : "音声番号", "Social network" : "ソーシャルネットワーク", "Settings" : "設定" },"pluralForm" :"nplurals=1; plural=0;" } hu.json 0000604 00000011115 15247100614 0006046 0 ustar 00 { "translations": { "Calendar" : "Naptár", "Todos" : "Teendők", "{actor} created calendar {calendar}" : "{actor} létrehozta a naptárt: {calendar}", "You created calendar {calendar}" : "Létrehoztad a naptárt: {calendar}", "{actor} deleted calendar {calendar}" : "{actor} törölte a naptárt: {calendar}", "You deleted calendar {calendar}" : "Törölted a naptárt: {calendar}", "{actor} updated calendar {calendar}" : "{actor} frissítette a napárt: {calendar}", "You updated calendar {calendar}" : "Frissítetted a naptárt: {calendar}", "{actor} shared calendar {calendar} with you" : "{actor} megosztotta veled ezt a naptárt: {calendar}", "You shared calendar {calendar} with {user}" : "Megosztottad ezt a napárt: {calendar} vele: {user}", "{actor} shared calendar {calendar} with {user}" : "{actor} megosztotta ezt a napárt: {calendar} vele: {user}", "{actor} unshared calendar {calendar} from you" : "{actor} visszavonta töled a naptár megosztását: {calendar}", "You unshared calendar {calendar} from {user}" : "Visszavontad a naptár megosztását: {calendar} tőle: {user}", "{actor} unshared calendar {calendar} from {user}" : "{actor} visszavonta a naptár megosztását: {calendar} tőle: {user}", "{actor} unshared calendar {calendar} from themselves" : "{actor} visszavonta tőlük a naptár megosztását: {calendar}", "You shared calendar {calendar} with group {group}" : "Megosztottad ezt a naptárt: {calendar} evvel a csoporttal: {group}", "{actor} shared calendar {calendar} with group {group}" : "{actor} megosztotta ezt a naptárt: {calendar} evvel a csoporttal: {group}", "You unshared calendar {calendar} from group {group}" : "Visszavontad ennek a naptárnak a magosztását: {calendar} ettől a csoporttól: {group}", "{actor} unshared calendar {calendar} from group {group}" : "{actor} visszavonta ennek a naptárnak a magosztását: {calendar} ettől a csoporttól: {group}", "{actor} created event {event} in calendar {calendar}" : "{actor} létrehozta ezt az eseményt: {event} ebben a naptárban: {calendar}", "You created event {event} in calendar {calendar}" : "Létrehoztad ezt az eseményt: {event} ebben a naptárban: {calendar}", "{actor} deleted event {event} from calendar {calendar}" : "{actor} törölte ezt az eseményt: {event} ebből a naptárból: {calendar}", "You deleted event {event} from calendar {calendar}" : "Törölted ezt az eseményt: {event} ebből a naptárból: {calendar}", "{actor} updated event {event} in calendar {calendar}" : "{actor} frissítette ezt az eseményt: {event} ebben a naptárban: {calendar}", "You updated event {event} in calendar {calendar}" : "Frissítetted ezt az eseményt: {event} ebben a naptárban: {calendar}", "{actor} created todo {todo} in list {calendar}" : "{actor} létrehozta ezt a teendőt: {todo} ebben a listában: {calendar}", "You created todo {todo} in list {calendar}" : "Létrehoztad ezt a teendőt: {todo} ebben a listában: {calendar}", "{actor} deleted todo {todo} from list {calendar}" : "{actor} törölte ezt a teendőt: {todo} ebből a listából: {calendar}", "You deleted todo {todo} from list {calendar}" : "Törölted ezt a teendőt: {todo} ebből a listából: {calendar}", "{actor} updated todo {todo} in list {calendar}" : "{actor} frissítette ezt a teendőt: {todo} ebben a listában: {calendar}", "You updated todo {todo} in list {calendar}" : "Frissítetted ezt a teendőt: {todo} ebben a listában: {calendar}", "{actor} solved todo {todo} in list {calendar}" : "{actor} elintézte ezt a teendőt: {todo} ebben a listában: {calendar}", "You solved todo {todo} in list {calendar}" : "Elintézted ezt a teendőt: {todo} ebben a listában: {calendar}", "{actor} reopened todo {todo} in list {calendar}" : "{actor} újranyitotta ezt a teendőt: {todo} ebben a listában: {calendar}", "You reopened todo {todo} in list {calendar}" : "Újranyitottad ezt a teendőt: {todo} ebben a listában: {calendar}", "A <strong>calendar</strong> was modified" : "Egy <strong>naptár</strong> megváltozott", "A calendar <strong>event</strong> was modified" : "Egy naptár <strong>esemény</strong> megváltozott", "A calendar <strong>todo</strong> was modified" : "Egy naptár <strong>teendő</strong> megváltozott", "Contact birthdays" : "Születésnapok", "Personal" : "Személyes", "Contacts" : "Névjegyek", "Technical details" : "Technikai adatok", "Remote Address: %s" : "Távoli cím: %s", "Request ID: %s" : "Kérelem azonosító: %s" },"pluralForm" :"nplurals=2; plural=(n != 1);" } da.js 0000604 00000004010 15247100614 0005455 0 ustar 00 OC.L10N.register( "contacts", { "Contacts" : "Kontakter", "Address book name" : "Adressebogsnavn", "Import" : "Importér", "The selected image is too big (max 1MB)" : "Det valgte billede er for stort (max 1MB)", "No contacts in here" : "Ingen kontaktpersoner her", "Name" : "Navn", "Organization" : "Organisation", "Title" : "Titel", "Add field ..." : "Tilføj felt...", "No search result for {query}" : "Ingen søgeresultater for {query}", "_%n contact_::_%n contacts_" : ["%n kontaktperson","%n kontaktpersoner"], "Post office box" : "Postboks", "Postal code" : "Postnummer", "City" : "By", "State or province" : "Stat eller provins", "Country" : "Land", "Address" : "Adresse", "(new group)" : "(new group)", "Last name" : "Efternavn", "First name" : "Fornavn", "Additional names" : "Mellemnavne", "Prefix" : "Præfiks", "Suffix" : "Suffiks", "All contacts" : "Alle kontakter", "Not grouped" : "Ikke i gruppe", "New contact" : "Ny kontakt", "{addressbook} shared by {owner}" : "{addressbook} delt af {owner}", "Contact could not be created." : "Kontakt kunne ikke oprettes.", "No contacts in file. Only VCard files are allowed." : "Ingen kontakter i filen. Kun vCard filer accepteres.", "Nickname" : "Kaldenavn", "Detailed name" : "Detaljeret navn", "Notes" : "Noter", "Website" : "Hjemmeside", "Federated Cloud ID" : "Federated Cloud ID", "Home" : "Hjemme", "Work" : "Arbejde", "Other" : "Andet", "Groups" : "Grupper", "Birthday" : "Fødselsdag", "Anniversary" : "Årsdag", "Date of death" : "Dødsdato", "Email" : "E-mail", "Instant messaging" : "Instant Messaging", "Phone" : "Telefon", "Mobile" : "Mobil", "Fax" : "Fax", "Fax home" : "Fax hjemme", "Fax work" : "Fax arbejde", "Pager" : "Personsøger", "Voice" : "Telefonsvarer", "Social network" : "Socialt netværk", "Settings" : "Indstillinger" }, "nplurals=2; plural=(n != 1);"); el.json 0000604 00000005052 15247100614 0006035 0 ustar 00 { "translations": { "Contacts" : "Επαφές", "Address book name" : "Όνομα βιβλίου διευθύνσεων", "Import" : "Εισαγωγή", "The selected image is too big (max 1MB)" : "Η επιλεγμένη εικόνα είναι πολύ μεγάλη (max 1MB)", "No contacts in here" : "Δεν υπάρχουν επαφές εδώ", "Name" : "Όνομα", "Organization" : "Οργανισμός", "Title" : "Τίτλος", "Add field ..." : "Προσθήκη πεδίου...", "No search result for {query}" : "Δεν βρέθηκε αποτέλεσμα αναζήτησης για {query}", "_%n contact_::_%n contacts_" : ["%n επαφή","%n επαφές"], "Post office box" : "Ταχυδρομική θυρίδα", "Postal code" : "Ταχυδρομικός Κωδικός", "City" : "Πόλη", "State or province" : "Νομός ή περιφέρεια", "Country" : "Χώρα", "Address" : "Διεύθυνση", "(new group)" : "(νέα ομάδα)", "Last name" : "Επώνυμο", "First name" : "Όνομα", "Additional names" : "Επιπλέον ονόματα", "Prefix" : "Πρόθεμα", "Suffix" : "Κατάληξη", "All contacts" : "Όλες οι επαφές", "Not grouped" : "Οχι ομαδοποιημένα", "New contact" : "Νέα επαφή", "{addressbook} shared by {owner}" : "Το {addressbook} διαμοιράστηκε από τον/την {owner}", "No contacts in file. Only VCard files are allowed." : "Δεν υπάρχουν επαφές σε αρχείο. Μόνο VCard αρχεία επιτρέπονται.", "Nickname" : "Παρατσούκλι", "Detailed name" : "Λεπτομερές όνομα", "Notes" : "Σημειώσεις", "Website" : "Ιστοσελίδα", "Federated Cloud ID" : "Federated Cloud ID", "Home" : "Σπίτι", "Work" : "Εργασία", "Other" : "Άλλο", "Groups" : "Ομάδες", "Birthday" : "Γενέθλια", "Date of death" : "Ημερομηνία θανάτου", "Email" : "Ηλ. ταχυδρομείο", "Instant messaging" : "Άμεσα μηνύματα", "Phone" : "Τηλέφωνο", "Mobile" : "Κινητό", "Fax" : "Φαξ", "Fax home" : "Φαξ σπίτι", "Fax work" : "Φαξ εργασία", "Pager" : "Βομβητής", "Voice" : "Ομιλία", "Social network" : "Κοινωνικό δίκτυο", "Settings" : "Ρυθμίσεις" },"pluralForm" :"nplurals=2; plural=(n != 1);" } cs.json 0000604 00000010515 15247100614 0006042 0 ustar 00 { "translations": { "Calendar" : "Kalendář", "Todos" : "Úkoly", "{actor} created calendar {calendar}" : "{actor} vytvořil(a) kalendář {calendar}", "You created calendar {calendar}" : "Vytvořil(a", "{actor} deleted calendar {calendar}" : "{actor} smazal(a) kalendář {calendar}", "You deleted calendar {calendar}" : "Smazal(a) jste kalendář {calendar}", "{actor} updated calendar {calendar}" : "{actor} aktualizoval(a) kalendář {calendar}", "You updated calendar {calendar}" : "Aktualizoval(a) jste kalendář {calendar}", "{actor} shared calendar {calendar} with you" : "{actor} s vámi nasdílel(a) kalendář {calendar}", "You shared calendar {calendar} with {user}" : "S uživatelem {user} jste začal(a) sdílet kalendář {calendar}", "{actor} shared calendar {calendar} with {user}" : "{actor} začal sdílet kalendář {calendar} s uživatelem {user}", "{actor} unshared calendar {calendar} from you" : "{actor} s vámi přestal(a) sdílet kalendář {calendar}", "You unshared calendar {calendar} from {user}" : "S uživatelem {user} jste přestal(a) sdílet kalendář {calendar}", "{actor} unshared calendar {calendar} from {user}" : "{actor} přestal(a) sdílet kalendář {calendar} s uživatelem {user}", "{actor} unshared calendar {calendar} from themselves" : "{actor} přestal sdílet kalendář {calendar} sám se sebou", "You shared calendar {calendar} with group {group}" : "Se skupinou {group} jste začal(a) sdílet kalendář {calendar}", "{actor} shared calendar {calendar} with group {group}" : "{actor} nasdílel(a) kalendář {calendar} skupině {group}", "You unshared calendar {calendar} from group {group}" : "Zrušil(a) jste sdílení kalendáře {calendar} skupině {group}", "{actor} unshared calendar {calendar} from group {group}" : "{actor} přestal(a) sdílet kalendář {calendar} se skupinou {group}", "{actor} created event {event} in calendar {calendar}" : "{actor} vytvořil(a) událost {event} v kalendáři {calendar}", "You created event {event} in calendar {calendar}" : "V kalendáři {calendar} jste vytvořil(a) událost {event}", "{actor} deleted event {event} from calendar {calendar}" : "{actor} z kalendáře {calendar} smazal(a) událost {event}", "You deleted event {event} from calendar {calendar}" : "Smazal(a) jste událost {event} z kalendáře {calendar}", "{actor} updated event {event} in calendar {calendar}" : "{actor} aktualizoval(a) událost {event} v kalendáři {calendar}", "You updated event {event} in calendar {calendar}" : "Aktualizoval(a) jste událost {event} v kalendáři {calendar}", "{actor} created todo {todo} in list {calendar}" : "{actor} vytvořil(a) v seznamu {calendar} vytvořila úkol {todo}", "You created todo {todo} in list {calendar}" : "V seznamu {calendar} jste vytvořil(a) úkol {todo}", "{actor} deleted todo {todo} from list {calendar}" : "{actor} smazal(a) úkol {todo} ze seznamu {calendar}", "You deleted todo {todo} from list {calendar}" : "Ze seznamu {todo} jste smazal(a) úkol {todo}", "{actor} updated todo {todo} in list {calendar}" : "{actor} aktualizoval(a) úkol {todo} v seznamu {calendar}", "You updated todo {todo} in list {calendar}" : "Aktualizoval(a) jste úkol {todo} v seznamu {calendar}", "{actor} solved todo {todo} in list {calendar}" : "{actor} vyřešil(a) úkol {todo} v seznamu {calendar}", "You solved todo {todo} in list {calendar}" : "Vyřešil(a) jste úkol {todo} v seznamu {calendar}", "{actor} reopened todo {todo} in list {calendar}" : "{actor} znovu otevřel(a) úkol {todo} v seznamu {calendar}", "You reopened todo {todo} in list {calendar}" : "Znovu jste otevřel(a) úkol {todo} v seznamu {calendar}", "A <strong>calendar</strong> was modified" : "<strong>Kalendář</strong> byl změněn", "A calendar <strong>event</strong> was modified" : "<strong>Událost</strong> v kalendáři byla změněna", "A calendar <strong>todo</strong> was modified" : "<strong>Úkol</strong> v kalendáři byl změněn", "Contact birthdays" : "Narozeniny kontaktů", "Personal" : "Osobní", "Contacts" : "Kontakty", "Technical details" : "Technické detaily", "Remote Address: %s" : "Vzdálená adresa: %s", "Request ID: %s" : "ID požadavku: %s" },"pluralForm" :"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;" } nb_NO.js 0000604 00000004665 15247100614 0006104 0 ustar 00 OC.L10N.register( "contacts", { "Contacts" : "Kontakter", "Download" : "Last ned", "ShowURL" : "VisURL", "Share Addressbook" : "Del adressebok", "Delete Addressbook" : "Slett adressebok", "Share with users or groups" : "Del med brukere eller grupper", "Delete" : "Slett", "can edit" : "kan endre", "Address book name" : "Navn på adressebok", "Import" : "Importer", "The selected image is too big (max 1MB)" : "Det valgte bildet er for stort (maks 1MB)", "No contacts in here" : "Ingen kontakter her", "Name" : "Navn", "Organization" : "Organisasjon", "Title" : "Tittel", "Add field ..." : "Nytt felt ...", "Save changes" : "Lagre endringer", "No search result for {query}" : "Intet søkeresultat for {query}", "_%n contact_::_%n contacts_" : ["%n kontakt","%n kontakter"], "Post office box" : "Postboks", "Postal code" : "Postnummer", "City" : "By", "State or province" : "Stat eller fylke", "Country" : "Land", "Address" : "Adresse", "(new group)" : "(ny gruppe)", "Last name" : "Etternavn", "First name" : "Fornavn", "Additional names" : "Ev. mellomnavn", "Prefix" : "Prefiks", "Suffix" : "Suffiks", "All contacts" : "Alle kontakter", "Not grouped" : "Ikke gruppert", "New contact" : "Ny kontakt", "{addressbook} shared by {owner}" : "{addressbook} delt av {owner}", "Contact could not be created." : "Kontakten kunne ikke opprettes", "No contacts in file. Only VCard files are allowed." : "Ingen kontakter i filen. Kun VCard-filer er tillatt.", "Only VCard version 4.0 (RFC6350) or version 3.0 (RFC2426) are supported." : "Kun VCard versjon 4.0 (RFC6350) eller versjon 3.0 (RFC2426) er støttet.", "Nickname" : "Kallenavn", "Detailed name" : "Detaljert navn", "Notes" : "Notater", "Website" : "Nettsted", "Federated Cloud ID" : "ID for sammenknyttet sky", "Home" : "Hjem", "Work" : "Jobb", "Other" : "Annet", "Groups" : "Grupper", "Birthday" : "Bursdag", "Anniversary" : "Jubileum", "Date of death" : "Dødsdato", "Email" : "Epost", "Instant messaging" : "Direktemeldinger", "Phone" : "Telefon", "Mobile" : "Mobil", "Fax" : "Faks", "Fax home" : "Faks hjemme", "Fax work" : "Faks jobb", "Pager" : "Pager", "Voice" : "Svarer", "Social network" : "Sosialt nettverk", "Settings" : "Innstillinger" }, "nplurals=2; plural=(n != 1);"); sl.js 0000604 00000005110 15247100614 0005511 0 ustar 00 OC.L10N.register( "contacts", { "Contacts" : "Stiki", "Download" : "Prejmi", "ShowURL" : "Prikaži URL", "Share Addressbook" : "Deli Imenik", "Delete Addressbook" : "Pobriši Imenik", "Share with users or groups" : "Deli z uporabniki ali skupinami", "Delete" : "Pobriši", "can edit" : "lahko ureja", "Address book name" : "Ime imenika", "Import" : "Uvozi", "The selected image is too big (max 1MB)" : "Izbrana slika je prevelika (omejitev je 1 MB).", "No contacts in here" : "Ni dodanega nobenega stika!", "Name" : "Ime", "Organization" : "Ustanova", "Title" : "Naslov", "Add field ..." : "Dodaj polje ...", "No search result for {query}" : "Ni zadetkov iskanja za {query}", "_%n contact_::_%n contacts_" : ["%n stik","%n stika","%n stiki","%n stikov"], "Post office box" : "Poštni predal", "Postal code" : "Poštna številka", "City" : "Mesto", "State or province" : "Zvezna država ali provinca", "Country" : "Država", "Address" : "Naslov", "(new group)" : "(nova skupina)", "Last name" : "Priimek", "First name" : "Ime", "Additional names" : "Druga imena", "Prefix" : "Predpona", "Suffix" : "Pripona", "All contacts" : "Vsi stiki", "Not grouped" : "Brez skupine", "New contact" : "Nov stik", "{addressbook} shared by {owner}" : "Souporabo imenika {addressbook} je omogočil uporabnik {owner}", "Contact could not be created." : "Stika ni mogoče ustvariti.", "No contacts in file. Only VCard files are allowed." : "V datoteki ni vpisanih stikov. Dovoljeni so le vpisi datotek VCard.", "Only VCard version 4.0 (RFC6350) or version 3.0 (RFC2426) are supported." : "Samo VCard verziji 4.0 (RFC6350) ali verzija 3.0 (RFC2426) sta podprti.", "Nickname" : "Vzdevek", "Detailed name" : "Podrobno ime", "Notes" : "Sporočilca", "Website" : "Spletna stran", "Federated Cloud ID" : "ID zveznega oblaka", "Home" : "Domači naslov", "Work" : "Službeni naslov", "Other" : "Drugo", "Groups" : "Skupine", "Birthday" : "Rojstni dan", "Anniversary" : "Obletnica", "Date of death" : "Datum smrti", "Email" : "Elektronski naslov", "Instant messaging" : "Hipno sporočanje", "Phone" : "Telefon", "Mobile" : "Mobilni telefon", "Fax" : "Faks", "Fax home" : "Domači faks", "Fax work" : "Službeni faks", "Pager" : "Pozivnik", "Voice" : "Glas", "Social network" : "Družbeno omrežje", "Settings" : "Nastavitve" }, "nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"); fi.json 0000604 00000010222 15247100614 0006026 0 ustar 00 { "translations": { "Calendar" : "Kalenteri", "Todos" : "Tehtävät", "{actor} created calendar {calendar}" : "{actor} loi kalenterin {calendar}", "You created calendar {calendar}" : "Loit kalenterin {calendar}", "{actor} deleted calendar {calendar}" : "{actor} poisti kalenterin {calendar}", "You deleted calendar {calendar}" : "Poistit kalenterin {calendar}", "{actor} updated calendar {calendar}" : "{actor} päivitti kalenterin {calendar}", "You updated calendar {calendar}" : "Päivitit kalenterin {calendar}", "{actor} shared calendar {calendar} with you" : "{actor} jakoi kalenterin {calendar} kanssasi", "You shared calendar {calendar} with {user}" : "Jaoit kalenterin {calendar} käyttäjälle {user}", "{actor} shared calendar {calendar} with {user}" : "{actor} jakoi kalenterin {calendar} käyttäjälle {user}", "{actor} unshared calendar {calendar} from you" : "{actor} lopetti kalenterin {calendar} jakamisen kanssasi", "You unshared calendar {calendar} from {user}" : "Lopetit kalenterin {calendar} jakamisen käyttäjälle {user}", "{actor} unshared calendar {calendar} from {user}" : "{actor} lopetti kalenterin {calendar} jakamisen käyttäjälle {user}", "{actor} unshared calendar {calendar} from themselves" : "{actor} lopetti kalenterin {calendar} jakamisen itselleen", "You shared calendar {calendar} with group {group}" : "Jaoit kalenterin {calendar} ryhmälle {group}", "{actor} shared calendar {calendar} with group {group}" : "{actor} jakoi kalenterin {calendar} ryhmälle {group}", "You unshared calendar {calendar} from group {group}" : "Lopetit kalenterin {calendar} jakamisen ryhmälle {group}", "{actor} unshared calendar {calendar} from group {group}" : "{actor} lopetti kalenterin {calendar} jakamisen ryhmälle {group}", "{actor} created event {event} in calendar {calendar}" : "{actor} loi tapahtuman {event} kalenteriin {calendar}", "You created event {event} in calendar {calendar}" : "Loit tapahtuman {event} kalenteriin {calendar}", "{actor} deleted event {event} from calendar {calendar}" : "{actor} poisti tapahtuman {event} kalenterista {calendar}", "You deleted event {event} from calendar {calendar}" : "Poistit tapahtuman {event} kalenterista {calendar}", "{actor} updated event {event} in calendar {calendar}" : "{actor} päivitti tapahtuman {event} kalenteriin {calendar}", "You updated event {event} in calendar {calendar}" : "Päivitit tapahtuman {event} kalenteriin {calendar}", "{actor} created todo {todo} in list {calendar}" : "{actor} loi tehtävän {todo} listaan {calendar}", "You created todo {todo} in list {calendar}" : "Loit tehtävän {todo} listaan {calendar}", "{actor} deleted todo {todo} from list {calendar}" : "{actor} poisti tehtävän {todo} listasta {calendar}", "You deleted todo {todo} from list {calendar}" : "Poistit tehtävän {todo} listasta {calendar}", "{actor} updated todo {todo} in list {calendar}" : "{actor} päivitti tehtävän {todo} listassa {calendar}", "You updated todo {todo} in list {calendar}" : "Päivitit tehtävän {todo} listassa {calendar}", "{actor} solved todo {todo} in list {calendar}" : "{actor} suoritti tehtävän {todo} listasta {calendar}", "You solved todo {todo} in list {calendar}" : "Suoritit tehtävän {todo} listasta {calendar}", "{actor} reopened todo {todo} in list {calendar}" : "{actor} avasi uudelleen tehtävän {todo} listassa {calendar}", "You reopened todo {todo} in list {calendar}" : "Avasit uudelleen tehtävän {todo} listassa {calendar}", "A <strong>calendar</strong> was modified" : "<strong>Kalenteria</strong> on muokattu", "A calendar <strong>event</strong> was modified" : "Kalenterin <strong>tapahtumaa</strong> on muokattu", "A calendar <strong>todo</strong> was modified" : "Kalenterin <strong>tehtävää</strong> on muokattu", "Contact birthdays" : "Yhteystietojen syntymäpäivät", "Personal" : "Henkilökohtainen", "Contacts" : "Yhteystiedot", "Technical details" : "Tekniset yksityiskohdat", "Remote Address: %s" : "Etäosoite: %s", "Request ID: %s" : "Pyynnön tunniste: %s" },"pluralForm" :"nplurals=2; plural=(n != 1);" } es.js 0000604 00000005547 15247100614 0005520 0 ustar 00 OC.L10N.register( "contacts", { "Contacts" : "Contactos", "Download" : "Descargar", "ShowURL" : "Mostrar URL", "Share Addressbook" : "Compartir Lista de contactos", "Delete Addressbook" : "Borrar Lista de contactos", "Share with users or groups" : "Compartir con otros usuarios o grupos", "Delete" : "Eliminar", "can edit" : "puede editar", "Address book name" : "Nombre de libreta de direcciones", "Import" : "Importar", "The selected image is too big (max 1MB)" : "La imagen seleccionada es demasiada grande (máximo 1MB)", "This card is corrupted and has been fixed. Please check the data and trigger a save to make the changes permanent." : "Esta tarjeta esta corrupta y ha sido corregida. Por favor revise la información y ejecute guardar para hacer los cambios permanentes. ", "No contacts in here" : "No hay contactos aquí", "Name" : "Nombre", "Organization" : "Organización", "Title" : "Título", "Add field ..." : "Añadir campo ...", "Save changes" : "Guardar cambios", "No search result for {query}" : "Sin resultados para {query}", "_%n contact_::_%n contacts_" : ["%n contacto","%n contactos"], "Post office box" : "Apartado de correos", "Postal code" : "Código postal", "City" : "Ciudad", "State or province" : "Estado o provincia", "Country" : "País", "Address" : "Dirección", "(new group)" : "(nuevo grupo)", "Last name" : "Apellido", "First name" : "Nombre", "Additional names" : "Nombres adicionales", "Prefix" : "Prefijo", "Suffix" : "Sufijo", "All contacts" : "Todos los contactos", "Not grouped" : "No agrupado", "New contact" : "Nuevo contacto", "{addressbook} shared by {owner}" : "{addressbook} compartido por {owner}", "Contact could not be created." : "No se puede crear el contacto.", "No contacts in file. Only VCard files are allowed." : "No hay contactos en el archivo. Solamente se permiten archivos VCard.", "Only VCard version 4.0 (RFC6350) or version 3.0 (RFC2426) are supported." : "Solo las versiones VCard 4.0 (RFC6350) o 3.0 (RFC2426) son soportados.", "Nickname" : "Apodo", "Detailed name" : "Nombre", "Notes" : "Notas", "Website" : "Sitio web", "Federated Cloud ID" : "ID Nube Federada", "Home" : "Casa", "Work" : "Trabajo", "Other" : "Otro", "Groups" : "Grupos", "Birthday" : "Fecha de nacimiento", "Anniversary" : "Aniversario", "Date of death" : "Fecha de fallecimiento", "Email" : "Correo electrónico", "Instant messaging" : "Mensajería instantánea", "Phone" : "Teléfono", "Mobile" : "Móvil", "Fax" : "Fax", "Fax home" : "Fax hogareño", "Fax work" : "Fax del trabajo", "Pager" : "Localizador", "Voice" : "Voz", "Social network" : "Redes sociales", "Settings" : "Ajustes" }, "nplurals=2; plural=(n != 1);"); tr.json 0000604 00000003775 15247100614 0006074 0 ustar 00 { "translations": { "Contacts" : "Kişiler", "Address book name" : "Adres defteri adı", "Import" : "Al", "The selected image is too big (max 1MB)" : "Seçilmiş görsel çok büyük (en fazla 1MB)", "No contacts in here" : "Henüz bir kişi yok", "Name" : "Ad", "Organization" : "Kurum", "Title" : "Başlık", "Add field ..." : "Alan ekle...", "No search result for {query}" : "{query} aramasından bir sonuç alınamadı", "_%n contact_::_%n contacts_" : ["%n kişi","%n kişi"], "Post office box" : "Posta kutusu", "Postal code" : "Posta kodu", "City" : "İlçe", "State or province" : "Şehir", "Country" : "Ülke", "Address" : "Adres", "(new group)" : "(yeni grup)", "Last name" : "Soyad", "First name" : "Ad", "Additional names" : "Ek adlar", "Prefix" : "Ön ek", "Suffix" : "Son ek", "All contacts" : "Tüm kişiler", "Not grouped" : "Gruplanmamış", "New contact" : "Yeni kişi", "{addressbook} shared by {owner}" : "{owner} tarafından paylaşılmış {addressbook}", "Contact could not be created." : "Kişi oluşturulamadı.", "No contacts in file. Only VCard files are allowed." : "Dosyada herhangi bir kişi yok. Yalnız vCard dosyaları kullanılabilir.", "Nickname" : "Kısaltma", "Detailed name" : "Ayrıntılı ad", "Notes" : "Notlar", "Website" : "Web sitesi", "Federated Cloud ID" : "Birleşmiş Bulut Kimliği", "Home" : "Ev", "Work" : "İş", "Other" : "Diğer", "Groups" : "Gruplar", "Birthday" : "Doğum günü", "Anniversary" : "Yıl dönümü", "Date of death" : "Ölüm tarihi", "Email" : "E-posta", "Instant messaging" : "Anlık iletişim", "Phone" : "Telefon", "Mobile" : "Cep telefonu", "Fax" : "Faks", "Fax home" : "Ev faksı", "Fax work" : "İş faksı", "Pager" : "Çağrı cihazı", "Voice" : "Ses", "Social network" : "Sosyal ağ", "Settings" : "Ayarlar" },"pluralForm" :"nplurals=2; plural=(n > 1);" } nb.json 0000604 00000010273 15247100614 0006035 0 ustar 00 { "translations": { "Calendar" : "Kalender", "Todos" : "Gjøremål", "{actor} created calendar {calendar}" : "{actor} opprettet kalenderen {calendar}", "You created calendar {calendar}" : "Du opprettet kalenderen {calendar}", "{actor} deleted calendar {calendar}" : "{actor} slettet kalenderen {calendar}", "You deleted calendar {calendar}" : "Du slettet kalenderen {calendar}", "{actor} updated calendar {calendar}" : "{actor} oppdaterte kalenderen {calendar}", "You updated calendar {calendar}" : "Du oppdaterte kalenderen {calendar}", "{actor} shared calendar {calendar} with you" : "{actor} delte kalenderen {calendar} med deg", "You shared calendar {calendar} with {user}" : "Du delte kalenderen {calendar} med {user}", "{actor} shared calendar {calendar} with {user}" : "{actor} delte kalenderen {calendar} med {user}", "{actor} unshared calendar {calendar} from you" : "{actor} fjernet delingen av kalenderen {calendar} med deg", "You unshared calendar {calendar} from {user}" : "Du fjernet delingen av kalender {calendar} med {user}", "{actor} unshared calendar {calendar} from {user}" : "{actor} fjernet delingen av kalender {calendar} med {user}", "{actor} unshared calendar {calendar} from themselves" : "{actor} fjernet delingen av kalender {calendar} med seg selv", "You shared calendar {calendar} with group {group}" : "Du delte kalender {calendar} med gruppe {group}", "{actor} shared calendar {calendar} with group {group}" : "{actor} delte kalenderen {calendar} med gruppe {group}", "You unshared calendar {calendar} from group {group}" : "Du fjernet deling av kalenderen {calendar} med gruppe {group}", "{actor} unshared calendar {calendar} from group {group}" : "{actor} fjernet deling av kalenderen {calendar} med gruppe {group}", "{actor} created event {event} in calendar {calendar}" : "{actor} opprettet en hendelse {event} i kalenderen {calendar}", "You created event {event} in calendar {calendar}" : "Du opprettet en hendelse {event} i kalenderen {calendar}", "{actor} deleted event {event} from calendar {calendar}" : "{actor} slettet hendelsen {event} fra kalenderen {calendar}", "You deleted event {event} from calendar {calendar}" : "Du slettet hendelsen {event} fra kalenderen {calendar}", "{actor} updated event {event} in calendar {calendar}" : "{actor} oppdaterte hendelsen {event} i kalenderen {calendar}", "You updated event {event} in calendar {calendar}" : "Du oppdaterte hendelsen {event} i kalenderen {calendar}", "{actor} created todo {todo} in list {calendar}" : "{actor} opprettet en oppgaven {todo} i listen {calendar}", "You created todo {todo} in list {calendar}" : "Du opprettet en oppgave {todo} i listen {calendar}", "{actor} deleted todo {todo} from list {calendar}" : "{actor} slettet gjøremålet {todo} fra listen {calendar}", "You deleted todo {todo} from list {calendar}" : "Du slettet gjøremålet {todo} fra listen {calendar}", "{actor} updated todo {todo} in list {calendar}" : "{actor} oppdaterte gjøremålet {todo} i listen {calendar}", "You updated todo {todo} in list {calendar}" : "Du oppdaterte gjøremålet {todo} i listen {calendar}", "{actor} solved todo {todo} in list {calendar}" : "{actor} ferdigstilte gjøremålet {todo} i listen {calendar}", "You solved todo {todo} in list {calendar}" : "Du ferdigstilte gjøremålet {todo} i listen {calendar}", "{actor} reopened todo {todo} in list {calendar}" : "{actor} gjenåpnet gjøremålet {todo} i listen {calendar}", "You reopened todo {todo} in list {calendar}" : "Du gjenåpnet oppgaven {todo} i listen {calendar}", "A <strong>calendar</strong> was modified" : "En <strong>kalender</strong> ble endret", "A calendar <strong>event</strong> was modified" : "En kalender <strong>hendelse</strong> ble endret", "A calendar <strong>todo</strong> was modified" : "En kalende <strong>gjøremål</strong> ble endret", "Contact birthdays" : "Kontakters fødelsdag", "Personal" : "Personlig", "Contacts" : "Kontakter", "Technical details" : "Tekniske detaljer", "Remote Address: %s" : "Ekstern adresse: %s", "Request ID: %s" : "Forespørsel ID: %s" },"pluralForm" :"nplurals=2; plural=(n != 1);" } lv.json 0000604 00000005123 15247100614 0006055 0 ustar 00 { "translations": { "Contacts" : "Kontakti", "Download" : "Lejupielādēt", "ShowURL" : "Rādīt URL", "Share Addressbook" : "Koplietot adrešu grāmatu", "Delete Addressbook" : "Dzēst adrešu grāmatu", "Share with users or groups" : "Koplietot ar lietotājiem vai grupām", "Delete" : "Dzēst", "can edit" : "var rediģēt", "Address book name" : "Adrešu grāmatas nosaukums", "Import" : "Importēt", "The selected image is too big (max 1MB)" : "Izvēlētais attēls ir pārāk liels. (max 1MB)", "No contacts in here" : "Šeit nav kontaktpersonu", "Name" : "Nosaukums", "Organization" : "Organizācija", "Title" : "Nosaukums", "Add field ..." : "Pievienot lauku ...", "No search result for {query}" : "Nav meklēšanas rezultātu {query}", "_%n contact_::_%n contacts_" : ["%n kontakti","%n kontakti","%n kontakti"], "Post office box" : "Pasta kastīte", "Postal code" : "Pasta kods", "City" : "Pilsēta", "State or province" : "Štats vai apgabals", "Country" : "Valsts", "Address" : "Adrese", "(new group)" : "(jauna grupa)", "Last name" : "Uzvārds", "First name" : "Vārds", "Additional names" : "Papildu vārdi", "Prefix" : "Priedēklis", "Suffix" : "Piedēklis", "All contacts" : "Visi kontakti", "Not grouped" : "Negrupēts", "New contact" : "Jauns kontakts", "{addressbook} shared by {owner}" : "{addressbook} koplietots {owner}", "Contact could not be created." : "Kontaktpersonu nevar izveidot.", "No contacts in file. Only VCard files are allowed." : "nav kontaktu failā. Tikai VCard faili ir atļauti.", "Only VCard version 4.0 (RFC6350) or version 3.0 (RFC2426) are supported." : "Tikai VCard versija 4.0 (RFC6350) vai versija 3.0 (RFC2426) tiek atbalstīta.", "Nickname" : "Iesauka", "Detailed name" : "Izvērsts nosaukums", "Notes" : "Piezīmes", "Website" : "Mājaslapa", "Federated Cloud ID" : "Federated Cloud ID", "Home" : "Mājas", "Work" : "Darbs", "Other" : "Cits", "Groups" : "Grupas", "Birthday" : "Dzimšanas diena", "Anniversary" : "Gadadiena", "Date of death" : "Miršanas datums", "Email" : "E-pasts", "Instant messaging" : "Tūlītējā ziņojumapmaiņa", "Phone" : "Tālrunis", "Mobile" : "Mobilais", "Fax" : "Fakss", "Fax home" : "Fax mājās", "Fax work" : "Fax darbā", "Pager" : "Peidžeris", "Voice" : "Balss", "Social network" : "Sociālais tīkls", "Settings" : "Iestatījumi" },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);" } de_DE.js 0000604 00000005451 15247100614 0006043 0 ustar 00 OC.L10N.register( "contacts", { "Contacts" : "Kontakte", "Download" : "Herunterladen", "ShowURL" : "ZeigeURL", "Share Addressbook" : "Adressbuch teilen", "Delete Addressbook" : "Adressbuch löschen", "Share with users or groups" : "Mit Benutzern oder Gruppen teilen", "Delete" : "Löschen", "can edit" : "kann bearbeiten", "Address book name" : "Adressbuch-Name", "Import" : "Importieren", "The selected image is too big (max 1MB)" : "Das ausgewählte Bild ist zu groß (max. 1MB)", "This card is corrupted and has been fixed. Please check the data and trigger a save to make the changes permanent." : "Diese Karte ist beschädigt und wurde repariert. Überprüfen Sie die Daten und Speichern Sie, um die Änderungen dauerhaft zu übernehmen.", "No contacts in here" : "Keine Kontakte vorhanden", "Name" : "Name", "Organization" : "Organisation", "Title" : "Titel", "Add field ..." : "Feld hinzufügen …", "Save changes" : "Änderungen speichern", "No search result for {query}" : "Keine Suchergebnisse zu {query}", "_%n contact_::_%n contacts_" : ["%n Kontakt","%n Kontakte"], "Post office box" : "Postfach", "Postal code" : "Postleitzahl", "City" : "Stadt", "State or province" : "Bundesland oder Region", "Country" : "Land", "Address" : "Adresse", "(new group)" : "(neue Gruppe)", "Last name" : "Nachname", "First name" : "Vorname", "Additional names" : "Zusätzliche Namen", "Prefix" : "Präfix", "Suffix" : "Suffix", "All contacts" : "Alle Kontakte", "Not grouped" : "Nicht gruppiert", "New contact" : "Neuer Kontakt", "{addressbook} shared by {owner}" : "{addressbook} geteilt von {owner}", "Contact could not be created." : "Kontakt konnte nicht erstellt werden.", "No contacts in file. Only VCard files are allowed." : "Keine Kontakte in der Datei. Nur VCard-Dateien sind erlaubt.", "Only VCard version 4.0 (RFC6350) or version 3.0 (RFC2426) are supported." : "Nur VCard Version 4.0 (RFC6350) oder 3.0 (RFC2426) werden unterstützt.", "Nickname" : "Spitzname", "Detailed name" : "Detaillierter Name", "Notes" : "Notizen", "Website" : "Internetseite", "Federated Cloud ID" : "Federated-Cloud-ID", "Home" : "Privat", "Work" : "Arbeit", "Other" : "Andere", "Groups" : "Gruppen", "Birthday" : "Geburtstag", "Anniversary" : "Jahrestag", "Date of death" : "Todestag", "Email" : "E-Mail", "Instant messaging" : "Instant Messaging", "Phone" : "Telefon", "Mobile" : "Mobil", "Fax" : "Fax", "Fax home" : "Fax persönlich", "Fax work" : "Fax geschäftlich", "Pager" : "Pager", "Voice" : "Anruf", "Social network" : "Soziales Netzwerk", "Settings" : "Einstellungen" }, "nplurals=2; plural=(n != 1);"); bg.json 0000604 00000011577 15247100614 0006036 0 ustar 00 { "translations": { "Calendar" : "Календар", "Todos" : "Задачи", "{actor} created calendar {calendar}" : "{actor} направи календар {calendar}", "You created calendar {calendar}" : "Направихте календар {calendar}", "{actor} deleted calendar {calendar}" : "{actor} изтри календар {calendar}", "You deleted calendar {calendar}" : "Изтрихте календар {calendar}", "{actor} updated calendar {calendar}" : "{actor} обнови календар {calendar}", "You updated calendar {calendar}" : "Обновихте календар {calendar}", "{actor} shared calendar {calendar} with you" : "{actor} сподели календар {calendar} с теб", "You shared calendar {calendar} with {user}" : "Споделихте календар {calendar} с {user}", "{actor} shared calendar {calendar} with {user}" : "{actor} сподели календар {calendar} с {user}", "{actor} unshared calendar {calendar} from you" : "{actor} отказа споделяне на календар {calendar} с теб", "You unshared calendar {calendar} from {user}" : "Отказахте споделяне на календар {calendar} от {user}", "{actor} unshared calendar {calendar} from {user}" : "{actor} отказа споделяне на календар {calendar} от {user}", "{actor} unshared calendar {calendar} from themselves" : "{actor} отказа споделяне на календар {calendar} от себеси", "You shared calendar {calendar} with group {group}" : "Споделихте календар {calendar} с група {group}", "{actor} shared calendar {calendar} with group {group}" : "{actor} сподели календар {calendar} с група {group}", "You unshared calendar {calendar} from group {group}" : "Отказахте споделяне на календар {calendar} от група {group}", "{actor} unshared calendar {calendar} from group {group}" : "{actor} отказа споделяне с календар {calendar} от група {group}", "{actor} created event {event} in calendar {calendar}" : "{actor} създаде събитие {event} в календар {calendar}", "You created event {event} in calendar {calendar}" : "Създадохте събитие {event} в календар {calendar}", "{actor} deleted event {event} from calendar {calendar}" : "{actor} изтри събитие {event} от календар {calendar}", "You deleted event {event} from calendar {calendar}" : "Изтрихте събитие {event} от календар {calendar}", "{actor} updated event {event} in calendar {calendar}" : "{actor} обнови събитие {event} в календар {calendar}", "You updated event {event} in calendar {calendar}" : "Обновихте събитие {event} в календар {calendar}", "{actor} created todo {todo} in list {calendar}" : "{actor} създаде задача {todo} в списък {calendar}", "You created todo {todo} in list {calendar}" : "Създадохте задача {todo} в списък {calendar}", "{actor} deleted todo {todo} from list {calendar}" : "{actor} изтри задача {todo} от списък {calendar}", "You deleted todo {todo} from list {calendar}" : "Изтрихте задача {todo} от лист {calendar}", "{actor} updated todo {todo} in list {calendar}" : "{actor} актуализира задача {todo} в списък {calendar}", "You updated todo {todo} in list {calendar}" : "Променихте задача {todo} в списък {calendar}", "{actor} solved todo {todo} in list {calendar}" : "{actor} реши задача {todo} в списък {calendar}", "You solved todo {todo} in list {calendar}" : "Решихте задача {todo} в списък {calendar}", "{actor} reopened todo {todo} in list {calendar}" : "{actor} възобнови задача {todo} в списък {calendar}", "You reopened todo {todo} in list {calendar}" : "Възобновихте задача {todo} в списък {calendar}", "A <strong>calendar</strong> was modified" : "<strong>Календар</strong> беше променен", "A calendar <strong>event</strong> was modified" : "Календарно <strong>събитие</strong> беше променено", "A calendar <strong>todo</strong> was modified" : "Календарна <strong>задача</strong> беше променена", "Contact birthdays" : "Рождени дни на контакти", "Personal" : "Личен", "Contacts" : "Контакти", "Technical details" : "Технически детайли", "Remote Address: %s" : "Отдалечен адрес: %s", "Request ID: %s" : "ID на заявка: %s" },"pluralForm" :"nplurals=2; plural=(n != 1);" } en_GB.json 0000604 00000003703 15247100614 0006410 0 ustar 00 { "translations": { "Contacts" : "Contacts", "Address book name" : "Address book name", "Import" : "Import", "The selected image is too big (max 1MB)" : "The selected image is too big (max 1MB)", "No contacts in here" : "No contacts in here", "Name" : "Name", "Organization" : "Organisation", "Title" : "Title", "Add field ..." : "Add field ...", "No search result for {query}" : "No search result for {query}", "_%n contact_::_%n contacts_" : ["%n contact","%n contacts"], "Post office box" : "Post office box", "Postal code" : "Postcode", "City" : "City", "State or province" : "State or province", "Country" : "Country", "Address" : "Address", "(new group)" : "(new group)", "Last name" : "Surname", "First name" : "First-name", "Additional names" : "Middle names", "Prefix" : "Prefix", "Suffix" : "Suffix", "All contacts" : "All contacts", "Not grouped" : "Not grouped", "New contact" : "New contact", "{addressbook} shared by {owner}" : "{addressbook} shared by {owner}", "Contact could not be created." : "Contact could not be created.", "No contacts in file. Only VCard files are allowed." : "No contacts in file. Only VCard files are allowed.", "Nickname" : "Nickname", "Detailed name" : "Detailed name", "Notes" : "Notes", "Website" : "Website", "Federated Cloud ID" : "Federated Cloud ID", "Home" : "Home", "Work" : "Work", "Other" : "Other", "Groups" : "Groups", "Birthday" : "Birthday", "Anniversary" : "Anniversary", "Date of death" : "Date of death", "Email" : "Email", "Instant messaging" : "Instant messaging", "Phone" : "Phone", "Mobile" : "Mobile", "Fax" : "Fax", "Fax home" : "Fax home", "Fax work" : "Fax work", "Pager" : "Pager", "Voice" : "Voice", "Social network" : "Social network", "Settings" : "Settings" },"pluralForm" :"nplurals=2; plural=(n != 1);" } fi.js 0000604 00000010225 15247100614 0005474 0 ustar 00 OC.L10N.register( "dav", { "Calendar" : "Kalenteri", "Todos" : "Tehtävät", "{actor} created calendar {calendar}" : "{actor} loi kalenterin {calendar}", "You created calendar {calendar}" : "Loit kalenterin {calendar}", "{actor} deleted calendar {calendar}" : "{actor} poisti kalenterin {calendar}", "You deleted calendar {calendar}" : "Poistit kalenterin {calendar}", "{actor} updated calendar {calendar}" : "{actor} päivitti kalenterin {calendar}", "You updated calendar {calendar}" : "Päivitit kalenterin {calendar}", "{actor} shared calendar {calendar} with you" : "{actor} jakoi kalenterin {calendar} kanssasi", "You shared calendar {calendar} with {user}" : "Jaoit kalenterin {calendar} käyttäjälle {user}", "{actor} shared calendar {calendar} with {user}" : "{actor} jakoi kalenterin {calendar} käyttäjälle {user}", "{actor} unshared calendar {calendar} from you" : "{actor} lopetti kalenterin {calendar} jakamisen kanssasi", "You unshared calendar {calendar} from {user}" : "Lopetit kalenterin {calendar} jakamisen käyttäjälle {user}", "{actor} unshared calendar {calendar} from {user}" : "{actor} lopetti kalenterin {calendar} jakamisen käyttäjälle {user}", "{actor} unshared calendar {calendar} from themselves" : "{actor} lopetti kalenterin {calendar} jakamisen itselleen", "You shared calendar {calendar} with group {group}" : "Jaoit kalenterin {calendar} ryhmälle {group}", "{actor} shared calendar {calendar} with group {group}" : "{actor} jakoi kalenterin {calendar} ryhmälle {group}", "You unshared calendar {calendar} from group {group}" : "Lopetit kalenterin {calendar} jakamisen ryhmälle {group}", "{actor} unshared calendar {calendar} from group {group}" : "{actor} lopetti kalenterin {calendar} jakamisen ryhmälle {group}", "{actor} created event {event} in calendar {calendar}" : "{actor} loi tapahtuman {event} kalenteriin {calendar}", "You created event {event} in calendar {calendar}" : "Loit tapahtuman {event} kalenteriin {calendar}", "{actor} deleted event {event} from calendar {calendar}" : "{actor} poisti tapahtuman {event} kalenterista {calendar}", "You deleted event {event} from calendar {calendar}" : "Poistit tapahtuman {event} kalenterista {calendar}", "{actor} updated event {event} in calendar {calendar}" : "{actor} päivitti tapahtuman {event} kalenteriin {calendar}", "You updated event {event} in calendar {calendar}" : "Päivitit tapahtuman {event} kalenteriin {calendar}", "{actor} created todo {todo} in list {calendar}" : "{actor} loi tehtävän {todo} listaan {calendar}", "You created todo {todo} in list {calendar}" : "Loit tehtävän {todo} listaan {calendar}", "{actor} deleted todo {todo} from list {calendar}" : "{actor} poisti tehtävän {todo} listasta {calendar}", "You deleted todo {todo} from list {calendar}" : "Poistit tehtävän {todo} listasta {calendar}", "{actor} updated todo {todo} in list {calendar}" : "{actor} päivitti tehtävän {todo} listassa {calendar}", "You updated todo {todo} in list {calendar}" : "Päivitit tehtävän {todo} listassa {calendar}", "{actor} solved todo {todo} in list {calendar}" : "{actor} suoritti tehtävän {todo} listasta {calendar}", "You solved todo {todo} in list {calendar}" : "Suoritit tehtävän {todo} listasta {calendar}", "{actor} reopened todo {todo} in list {calendar}" : "{actor} avasi uudelleen tehtävän {todo} listassa {calendar}", "You reopened todo {todo} in list {calendar}" : "Avasit uudelleen tehtävän {todo} listassa {calendar}", "A <strong>calendar</strong> was modified" : "<strong>Kalenteria</strong> on muokattu", "A calendar <strong>event</strong> was modified" : "Kalenterin <strong>tapahtumaa</strong> on muokattu", "A calendar <strong>todo</strong> was modified" : "Kalenterin <strong>tehtävää</strong> on muokattu", "Contact birthdays" : "Yhteystietojen syntymäpäivät", "Personal" : "Henkilökohtainen", "Contacts" : "Yhteystiedot", "Technical details" : "Tekniset yksityiskohdat", "Remote Address: %s" : "Etäosoite: %s", "Request ID: %s" : "Pyynnön tunniste: %s" }, "nplurals=2; plural=(n != 1);"); fi_FI.js 0000604 00000004134 15247100614 0006054 0 ustar 00 OC.L10N.register( "contacts", { "Contacts" : "Yhteystiedot", "Address book name" : "Osoitekirjan nimi", "Import" : "Tuo", "The selected image is too big (max 1MB)" : "Valittu kuva on liian suuri kooltaan (enintään 1 Mt)", "No contacts in here" : "Ei yhteytietoja", "Name" : "Nimi", "Organization" : "Organisaatio", "Title" : "Otsikko", "Add field ..." : "Lisää kenttä...", "No search result for {query}" : "Ei tuloksia haulle {query}", "_%n contact_::_%n contacts_" : ["%n yhteystieto","%n yhteystietoa"], "Post office box" : "Postilokero", "Postal code" : "Postinumero", "City" : "Paikkakunta", "State or province" : "Maakunta tai osavaltio", "Country" : "Maa", "Address" : "Osoite", "(new group)" : "(uusi ryhmä)", "Last name" : "Sukunimi", "First name" : "Etunimi", "Additional names" : "Lisänimet", "Prefix" : "Etuliite", "Suffix" : "Takaliite", "All contacts" : "Kaikki yhteystiedot", "Not grouped" : "Ei ryhmitelty", "New contact" : "Uusi yhteystieto", "{addressbook} shared by {owner}" : "Osoitekirjan {addressbook} jakoi {owner}", "Contact could not be created." : "Yhteystiedon luominen ei onnistunut.", "No contacts in file. Only VCard files are allowed." : "Ei yhteystietoja tiedostossa. Vain vCard-tiedostot ovat sallittuja.", "Nickname" : "Kutsumanimi", "Detailed name" : "Täsmällinen nimi", "Notes" : "Huomiot", "Website" : "Verkkosivusto", "Federated Cloud ID" : "Federoidun pilven tunniste", "Home" : "Koti", "Work" : "Työ", "Other" : "Muu", "Groups" : "Ryhmät", "Birthday" : "Syntymäpäivä", "Anniversary" : "Vuosipäivä", "Date of death" : "Kuolinpäivä", "Email" : "Sähköpostiosoite", "Instant messaging" : "Pikaviestintä", "Phone" : "Puhelin", "Mobile" : "Mobiili", "Fax" : "Faksi", "Fax home" : "Faksi, koti", "Fax work" : "Faksi, työ", "Pager" : "Hakulaite", "Voice" : "Ääni", "Social network" : "Sosiaalinen verkosto", "Settings" : "Asetukset" }, "nplurals=2; plural=(n != 1);"); de.json 0000604 00000005417 15247100614 0006032 0 ustar 00 { "translations": { "Contacts" : "Kontakte", "Download" : "Herunterladen", "ShowURL" : "ZeigeURL", "Share Addressbook" : "Teile Adressbuch", "Delete Addressbook" : "Lösche Adressbuch", "Share with users or groups" : "Mit Benutzern oder Gruppen teilen", "Delete" : "Löschen", "can edit" : "kann bearbeiten", "Address book name" : "Name des Adressbuchs", "Import" : "Importieren", "The selected image is too big (max 1MB)" : "Das ausgewählte Bild ist zu groß (max. 1MB)", "This card is corrupted and has been fixed. Please check the data and trigger a save to make the changes permanent." : "Diese Karte ist beschädigt und wurde repariert. Überprüfe die Daten und Speichere diese, um die Änderungen dauerhaft zu übernehmen.", "No contacts in here" : "Keine Kontakte gefunden", "Name" : "Name", "Organization" : "Organisation", "Title" : "Titel", "Add field ..." : "Feld hinzufügen ...", "Save changes" : "Änderungen speichern", "No search result for {query}" : "Kein Ergebnis für {query}", "_%n contact_::_%n contacts_" : ["%n Kontakt","%n Kontakte"], "Post office box" : "Postfach", "Postal code" : "Postleitzahl", "City" : "Stadt", "State or province" : "Staat oder Provinz", "Country" : "Land", "Address" : "Adresse", "(new group)" : "(neue Gruppe)", "Last name" : "Nachname", "First name" : "Vorname", "Additional names" : "Zusätzliche Namen", "Prefix" : "Präfix", "Suffix" : "Suffix", "All contacts" : "Alle Kontakte", "Not grouped" : "Nicht gruppiert", "New contact" : "Neuer Kontakt", "{addressbook} shared by {owner}" : "{addressbook} geteilt von {owner}", "Contact could not be created." : "Kontakt konnte nicht erstellt werden.", "No contacts in file. Only VCard files are allowed." : "Keine Kontakte in der Datei. Nur vCard-Dateien sind erlaubt.", "Only VCard version 4.0 (RFC6350) or version 3.0 (RFC2426) are supported." : "Nur vCard Version 4.0 (RFC6350) oder 3.0 (RFC2426) werden unterstützt.", "Nickname" : "Spitzname", "Detailed name" : "Detaillierter Name", "Notes" : "Notizen", "Website" : "Website", "Federated Cloud ID" : "Federated-Cloud-ID", "Home" : "Home", "Work" : "Arbeit", "Other" : "Andere", "Groups" : "Gruppen", "Birthday" : "Geburtstag", "Anniversary" : "Jahrestag", "Date of death" : "Todestag", "Email" : "E-Mail", "Instant messaging" : "Instant Messaging", "Phone" : "Telefon", "Mobile" : "Mobil", "Fax" : "Fax", "Fax home" : "Fax persönlich", "Fax work" : "Fax geschäftlich", "Pager" : "Pager", "Voice" : "Anruf", "Social network" : "Soziales Netzwerk", "Settings" : "Einstellungen" },"pluralForm" :"nplurals=2; plural=(n != 1);" } ro.js 0000604 00000003220 15247100614 0005513 0 ustar 00 OC.L10N.register( "contacts", { "Contacts" : "Contacte", "Address book name" : "Numele listă de contacte", "Import" : "Importă", "The selected image is too big (max 1MB)" : "Imaginea selectată este prea mare (maxim 1 MB)", "No contacts in here" : "Niciun contact aici", "Name" : "Nume", "Organization" : "Organizație", "Title" : "Titlu", "Add field ..." : "Adaugă câmp ...", "No search result for {query}" : "Niciun rezultat pentru {query}", "Postal code" : "Codul poștal", "City" : "Oraș", "State or province" : "Județ sau provincie", "Country" : "Țară", "Address" : "Adresă", "(new group)" : "(grup nou)", "Last name" : "Nume", "First name" : "Prenume", "All contacts" : "Toate contactele", "Not grouped" : "Negrupate", "New contact" : "Contact nou ", "{addressbook} shared by {owner}" : "{addressbook} partajat de {owner}", "No contacts in file. Only VCard files are allowed." : "Niciun contact în fișier. Doar fișiere VCard sunt suportate.", "Nickname" : "Pseudonim", "Notes" : "Notă", "Website" : "Website", "Federated Cloud ID" : "Federated Cloud ID", "Home" : "Acasă", "Work" : "Serviciu", "Other" : "Altele", "Groups" : "Grupuri", "Birthday" : "Zi de naștere", "Email" : "Email", "Instant messaging" : "Mesagerie instantă", "Phone" : "Telefon", "Mobile" : "Mobil", "Fax" : "Fax", "Fax home" : "Fax - acasă", "Fax work" : "Fax - serviciu", "Pager" : "Pager", "Voice" : "Voce", "Settings" : "Setări" }, "nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));"); ru.json 0000604 00000007562 15247100614 0006073 0 ustar 00 { "translations": { "Contacts" : "Контакты", "Download" : "Скачать", "ShowURL" : "Показать URL", "Share Addressbook" : "Поделиться адресной книгой", "Delete Addressbook" : "Удалить адресную книгу", "Share with users or groups" : "Поделиться с пользователями или группами", "Delete" : "Удалить", "can edit" : "можно редактировать", "Address book name" : "Название адресной книги", "Import" : "Импорт", "The selected image is too big (max 1MB)" : "Выбранное изображение слишком велико (макс. 1 МБ)", "This card is corrupted and has been fixed. Please check the data and trigger a save to make the changes permanent." : "Эта поврежденная карточка была исправлена. Проверьте данные и выберете \"сохранить\" что бы зафиксировать изменения. ", "No contacts in here" : "Здесь нет контактов", "Name" : "Наименование контакта", "Organization" : "Организация", "Title" : "Должность", "Add field ..." : "Добавить поле ...", "Save changes" : "Сохранить изменения", "No search result for {query}" : "По запросу {query} ничего не найдено", "_%n contact_::_%n contacts_" : ["%n контакт","%n контакта","%n контактов","%n контактов"], "Post office box" : "Почтовый ящик", "Postal code" : "Почтовый индекс", "City" : "Город", "State or province" : "Область или район", "Country" : "Страна", "Address" : "Адрес", "(new group)" : "(новая группа)", "Last name" : "Фамилия", "First name" : "Имя", "Additional names" : "Отчество", "Prefix" : "Префикс", "Suffix" : "Суффикс", "All contacts" : "Все контакты", "Not grouped" : "Без группы", "New contact" : "Новый контакт", "{addressbook} shared by {owner}" : "{addressbook} поделился {owner}", "Contact could not be created." : "Не удалось создать контакт.", "No contacts in file. Only VCard files are allowed." : "В файле нет контактов. Допустимы только файлы формата VCard.", "Only VCard version 4.0 (RFC6350) or version 3.0 (RFC2426) are supported." : "Поддерживается только формат VCard версии 4.0 (RFC6350) или версии 3.0 (RFC2426).", "Nickname" : "Псевдоним", "Detailed name" : "Подробное имя", "Notes" : "Заметки", "Website" : "Сайт", "Federated Cloud ID" : "ID в объединении облачных хранилищ", "Home" : "Домашний", "Work" : "Рабочий", "Other" : "Другой", "Groups" : "Группы", "Birthday" : "День рождения", "Anniversary" : "Годовщина", "Date of death" : "Дата смерти", "Email" : "Эл. почта", "Instant messaging" : "Мгновенные сообщения", "Phone" : "Телефон", "Mobile" : "Мобильный", "Fax" : "Факс", "Fax home" : "Факс домашний", "Fax work" : "Факс рабочий", "Pager" : "Пейджер", "Voice" : "Голосовая почта", "Social network" : "Социальная сеть", "Settings" : "Настройки" },"pluralForm" :"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);" } cs_CZ.js 0000604 00000005055 15247100614 0006104 0 ustar 00 OC.L10N.register( "contacts", { "Contacts" : "Kontakty", "Download" : "Stáhnout", "ShowURL" : "Zobrazit URL", "Share Addressbook" : "Sdílet adresář", "Delete Addressbook" : "Smazat adresář", "Share with users or groups" : "Sdílet suživateli nebo skupinami", "Delete" : "Smazat", "can edit" : "Může upravovat", "Address book name" : "Název adresáře kontaktů", "Import" : "Importovat", "The selected image is too big (max 1MB)" : "Zvolený obrázek je příliš velký (max 1MB)", "No contacts in here" : "Nejsou zde žádné kontakty", "Name" : "Název", "Organization" : "Organizace", "Title" : "Název", "Add field ..." : "Přidat pole...", "No search result for {query}" : "Žádný nález pro {query}", "_%n contact_::_%n contacts_" : ["%n kontakt","%n kontakty","%n kontaktů"], "Post office box" : "Poštovní schránka", "Postal code" : "Směrovací číslo", "City" : "Město", "State or province" : "Stát nebo provincie", "Country" : "Země", "Address" : "Adresa", "(new group)" : "(nová skupina)", "Last name" : "Příjmení", "First name" : "Křestní jméno", "Additional names" : "Další jména", "Prefix" : "Předpona", "Suffix" : "Přípona", "All contacts" : "Všechny kontakty", "Not grouped" : "Neseskupené", "New contact" : "Nový kontakt", "{addressbook} shared by {owner}" : "{addressbook} sdílí {owner}", "Contact could not be created." : "Kontakt se nepodařilo vytvořit.", "No contacts in file. Only VCard files are allowed." : "Žádné kontakty v souboru. Pouze soubory vCard jsou povoleny.", "Only VCard version 4.0 (RFC6350) or version 3.0 (RFC2426) are supported." : "Jsou podporovány pouze Vcard verze 4.0 (RFC6350) nebo verze 3.0 (RFC2426).", "Nickname" : "Přezdívka", "Detailed name" : "Jméno podrobně", "Notes" : "Poznámky", "Website" : "Stránka", "Federated Cloud ID" : "Sdružené cloud ID", "Home" : "Domů", "Work" : "Práce", "Other" : "Jiný", "Groups" : "Skupiny", "Birthday" : "Narozeniny", "Anniversary" : "Výročí", "Date of death" : "Datum úmrtí", "Email" : "Email", "Instant messaging" : "Komunikátor", "Phone" : "Telefon", "Mobile" : "Mobil", "Fax" : "Fax", "Fax home" : "Fax domů", "Fax work" : "Fax do práce", "Pager" : "Pager", "Voice" : "Hlas", "Social network" : "Sociální síť", "Settings" : "Nastavení" }, "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"); it.json 0000604 00000005417 15247100614 0006056 0 ustar 00 { "translations": { "Contacts" : "Contatti", "Download" : "Scarica", "ShowURL" : "Mostra URL", "Share Addressbook" : "Condividi rubrica", "Delete Addressbook" : "Elimina rubrica", "Share with users or groups" : "Condividi con utenti o gruppi", "Delete" : "Elimina", "can edit" : "può modificare", "Address book name" : "Nome della rubrica", "Import" : "Importa", "The selected image is too big (max 1MB)" : "L'immagine selezionata è troppo grande (max 1MB)", "This card is corrupted and has been fixed. Please check the data and trigger a save to make the changes permanent." : "Questa scheda è danneggiata e deve essere riparata. Controlla i dati ed esegui un salvataggio per rendere definitive le modifiche.", "No contacts in here" : "Nessun contatto qui", "Name" : "Nome", "Organization" : "Organizzazione", "Title" : "Titolo", "Add field ..." : "Aggiungi campo...", "Save changes" : "Salva le modifiche", "No search result for {query}" : "Nessun risultato di ricerca per {query}", "_%n contact_::_%n contacts_" : ["%n contatto","%n contatti"], "Post office box" : "Casella postale", "Postal code" : "CAP", "City" : "Città", "State or province" : "Stato o regione", "Country" : "Stato", "Address" : "Indirizzo", "(new group)" : "(nuovo gruppo)", "Last name" : "Cognome", "First name" : "Nome", "Additional names" : "Nomi aggiuntivi", "Prefix" : "Prefisso", "Suffix" : "Suffisso", "All contacts" : "Tutti i contatti", "Not grouped" : "Non raggruppati", "New contact" : "Nuovo contatto", "{addressbook} shared by {owner}" : "{addressbook} condivisa da {owner}", "Contact could not be created." : "Il contatto non può essere creato.", "No contacts in file. Only VCard files are allowed." : "Nessun contatto nel file. Sono consentiti solo file vCard.", "Only VCard version 4.0 (RFC6350) or version 3.0 (RFC2426) are supported." : "Sono supportate solo le versioni 4.0 (RFC6350) e 3.0 (RFC2426) di VCard.", "Nickname" : "Pseudonimo", "Detailed name" : "Nome dettagliato", "Notes" : "Note", "Website" : "Sito web", "Federated Cloud ID" : "ID di cloud federata", "Home" : "Home", "Work" : "Lavoro", "Other" : "Altro", "Groups" : "Gruppi", "Birthday" : "Compleanno", "Anniversary" : "Anniversario", "Date of death" : "Data di morte", "Email" : "Posta elettronica", "Instant messaging" : "Messaggistica istantanea", "Phone" : "Telefono", "Mobile" : "Cellulare", "Fax" : "Fax", "Fax home" : "Fax casa", "Fax work" : "Fax lavoro", "Pager" : "Cercapersone", "Voice" : "Voce", "Social network" : "Rete sociale", "Settings" : "Impostazioni" },"pluralForm" :"nplurals=2; plural=(n != 1);" } lv.js 0000604 00000005133 15247100614 0005521 0 ustar 00 OC.L10N.register( "contacts", { "Contacts" : "Kontakti", "Download" : "Lejupielādēt", "ShowURL" : "Rādīt URL", "Share Addressbook" : "Koplietot adrešu grāmatu", "Delete Addressbook" : "Dzēst adrešu grāmatu", "Share with users or groups" : "Koplietot ar lietotājiem vai grupām", "Delete" : "Dzēst", "can edit" : "var rediģēt", "Address book name" : "Adrešu grāmatas nosaukums", "Import" : "Importēt", "The selected image is too big (max 1MB)" : "Izvēlētais attēls ir pārāk liels. (max 1MB)", "No contacts in here" : "Šeit nav kontaktpersonu", "Name" : "Nosaukums", "Organization" : "Organizācija", "Title" : "Nosaukums", "Add field ..." : "Pievienot lauku ...", "No search result for {query}" : "Nav meklēšanas rezultātu {query}", "_%n contact_::_%n contacts_" : ["%n kontakti","%n kontakti","%n kontakti"], "Post office box" : "Pasta kastīte", "Postal code" : "Pasta kods", "City" : "Pilsēta", "State or province" : "Štats vai apgabals", "Country" : "Valsts", "Address" : "Adrese", "(new group)" : "(jauna grupa)", "Last name" : "Uzvārds", "First name" : "Vārds", "Additional names" : "Papildu vārdi", "Prefix" : "Priedēklis", "Suffix" : "Piedēklis", "All contacts" : "Visi kontakti", "Not grouped" : "Negrupēts", "New contact" : "Jauns kontakts", "{addressbook} shared by {owner}" : "{addressbook} koplietots {owner}", "Contact could not be created." : "Kontaktpersonu nevar izveidot.", "No contacts in file. Only VCard files are allowed." : "nav kontaktu failā. Tikai VCard faili ir atļauti.", "Only VCard version 4.0 (RFC6350) or version 3.0 (RFC2426) are supported." : "Tikai VCard versija 4.0 (RFC6350) vai versija 3.0 (RFC2426) tiek atbalstīta.", "Nickname" : "Iesauka", "Detailed name" : "Izvērsts nosaukums", "Notes" : "Piezīmes", "Website" : "Mājaslapa", "Federated Cloud ID" : "Federated Cloud ID", "Home" : "Mājas", "Work" : "Darbs", "Other" : "Cits", "Groups" : "Grupas", "Birthday" : "Dzimšanas diena", "Anniversary" : "Gadadiena", "Date of death" : "Miršanas datums", "Email" : "E-pasts", "Instant messaging" : "Tūlītējā ziņojumapmaiņa", "Phone" : "Tālrunis", "Mobile" : "Mobilais", "Fax" : "Fakss", "Fax home" : "Fax mājās", "Fax work" : "Fax darbā", "Pager" : "Peidžeris", "Voice" : "Balss", "Social network" : "Sociālais tīkls", "Settings" : "Iestatījumi" }, "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"); pt_BR.js 0000604 00000005527 15247100614 0006115 0 ustar 00 OC.L10N.register( "contacts", { "Contacts" : "Contatos", "Download" : "Baixar", "ShowURL" : "MostrarURL", "Share Addressbook" : "Compartilhar Livro de Endereços", "Delete Addressbook" : "Eliminar Livro de Endereços", "Share with users or groups" : "Compartilhar com usuários ou grupos", "Delete" : "Eliminar", "can edit" : "pode editar", "Address book name" : "Nome do livro de endereços", "Import" : "Importar", "The selected image is too big (max 1MB)" : "A imagem selecionada é grande demais (máximo 1MB)", "This card is corrupted and has been fixed. Please check the data and trigger a save to make the changes permanent." : "Este cartão está corrompido e foi corrigido. Verifique os dados e acione uma gravação para tornar as alterações permanentes.", "No contacts in here" : "Nenhum contato aqui", "Name" : "Nome", "Organization" : "Organização", "Title" : "Título", "Add field ..." : "Adicionar campo...", "Save changes" : "Salvar modificações", "No search result for {query}" : "Nenhum resultado de busca para {query}", "_%n contact_::_%n contacts_" : ["%n contato","%n contatos"], "Post office box" : "Caixa de correio", "Postal code" : "Código postal", "City" : "Cidade", "State or province" : "Estado ou província", "Country" : "País", "Address" : "Endereço", "(new group)" : "(novo grupo)", "Last name" : "Sobrenome", "First name" : "Primeiro nome", "Additional names" : "Nomes adicionais", "Prefix" : "Prefixo", "Suffix" : "Sufixo", "All contacts" : "Todos os contatos", "Not grouped" : "Não agrupado", "New contact" : "Novo contato", "{addressbook} shared by {owner}" : "{addressbook} compartilhado por {owner}", "Contact could not be created." : "O contato não pode ser criado.", "No contacts in file. Only VCard files are allowed." : "Nenhum contato em arquivo. Somente arquivos vCard são permitidos.", "Only VCard version 4.0 (RFC6350) or version 3.0 (RFC2426) are supported." : "Apenas VCard versão 4.0 (RFC 6350) ou versão 3.0 (RFC2426) são suportadas.", "Nickname" : "Apelido", "Detailed name" : "Nome detalhado", "Notes" : "Notas", "Website" : "Website", "Federated Cloud ID" : "ID de núvem Associada", "Home" : "Casa", "Work" : "Trabalho", "Other" : "Outro", "Groups" : "Grupos", "Birthday" : "Aniversário", "Anniversary" : "Aniversário", "Date of death" : "Data da morte", "Email" : "E-mail", "Instant messaging" : "Mensagem instantânea", "Phone" : "Telefone", "Mobile" : "Móvel", "Fax" : "Fax", "Fax home" : "Fax de casa", "Fax work" : "Fax do trabalho", "Pager" : "Pager", "Voice" : "Voz", "Social network" : "Rede social", "Settings" : "Configurações" }, "nplurals=2; plural=(n > 1);"); es_MX.json 0000604 00000004050 15247100614 0006445 0 ustar 00 { "translations": { "Contacts" : "Contactos", "Address book name" : "Nombre de la libreta de direcciones", "Import" : "Importar", "The selected image is too big (max 1MB)" : "La imagen seleccionad es demaciado grande (max 1MB)", "No contacts in here" : "No hay contactos aquí", "Name" : "Nombre", "Organization" : "Organización", "Title" : "Título", "Add field ..." : "Agregar campo", "No search result for {query}" : "No hay resultados en la busquede para {query}", "Post office box" : "Apartado de correos", "Postal code" : "Código postal", "City" : "Ciudad", "State or province" : "Estado o provincia", "Country" : "País", "Address" : "Dirección", "(new group)" : "(nuevo grupo)", "Last name" : "Apellido", "First name" : "Nombre", "Additional names" : "Nombres adicionales", "Prefix" : "Prefijo", "Suffix" : "Sufijo", "All contacts" : "Todos los contactos", "Not grouped" : "No agrupado", "New contact" : "Nuevo contacto", "{addressbook} shared by {owner}" : "{addressbook} compartido por {owner}", "Contact could not be created." : "El contacto no se ha podido crear", "No contacts in file. Only VCard files are allowed." : "No hay contactos en el archivo. Solo se permiten archivos VCard.", "Nickname" : "Alias", "Detailed name" : "Detalle de nombre", "Notes" : "Notas", "Website" : "Sitio Web", "Federated Cloud ID" : "Mensajería instantanea", "Home" : "Particular", "Work" : "Trabajo", "Other" : "Otro", "Groups" : "Grupos", "Birthday" : "Fecha de nacimiento", "Anniversary" : "Aniversario", "Date of death" : "Fecha de fallecimiento", "Email" : "E-mail", "Instant messaging" : "Mensajería instantanea", "Phone" : "Teléfono", "Mobile" : "Móvil", "Fax" : "Fax", "Fax home" : "Fax de casa", "Fax work" : "Fax de trabajo", "Pager" : "Localizador", "Voice" : "Voz", "Social network" : "Red social", "Settings" : "Ajustes" },"pluralForm" :"nplurals=2; plural=(n != 1);" } da.json 0000604 00000004000 15247100614 0006011 0 ustar 00 { "translations": { "Contacts" : "Kontakter", "Address book name" : "Adressebogsnavn", "Import" : "Importér", "The selected image is too big (max 1MB)" : "Det valgte billede er for stort (max 1MB)", "No contacts in here" : "Ingen kontaktpersoner her", "Name" : "Navn", "Organization" : "Organisation", "Title" : "Titel", "Add field ..." : "Tilføj felt...", "No search result for {query}" : "Ingen søgeresultater for {query}", "_%n contact_::_%n contacts_" : ["%n kontaktperson","%n kontaktpersoner"], "Post office box" : "Postboks", "Postal code" : "Postnummer", "City" : "By", "State or province" : "Stat eller provins", "Country" : "Land", "Address" : "Adresse", "(new group)" : "(new group)", "Last name" : "Efternavn", "First name" : "Fornavn", "Additional names" : "Mellemnavne", "Prefix" : "Præfiks", "Suffix" : "Suffiks", "All contacts" : "Alle kontakter", "Not grouped" : "Ikke i gruppe", "New contact" : "Ny kontakt", "{addressbook} shared by {owner}" : "{addressbook} delt af {owner}", "Contact could not be created." : "Kontakt kunne ikke oprettes.", "No contacts in file. Only VCard files are allowed." : "Ingen kontakter i filen. Kun vCard filer accepteres.", "Nickname" : "Kaldenavn", "Detailed name" : "Detaljeret navn", "Notes" : "Noter", "Website" : "Hjemmeside", "Federated Cloud ID" : "Federated Cloud ID", "Home" : "Hjemme", "Work" : "Arbejde", "Other" : "Andet", "Groups" : "Grupper", "Birthday" : "Fødselsdag", "Anniversary" : "Årsdag", "Date of death" : "Dødsdato", "Email" : "E-mail", "Instant messaging" : "Instant Messaging", "Phone" : "Telefon", "Mobile" : "Mobil", "Fax" : "Fax", "Fax home" : "Fax hjemme", "Fax work" : "Fax arbejde", "Pager" : "Personsøger", "Voice" : "Telefonsvarer", "Social network" : "Socialt netværk", "Settings" : "Indstillinger" },"pluralForm" :"nplurals=2; plural=(n != 1);" }sk.js 0000604 00000010154 15247100614 0005514 0 ustar 00 OC.L10N.register( "dav", { "Calendar" : "Kalendár", "Todos" : "Úlohy", "{actor} created calendar {calendar}" : "[actor] vytvoril kalendár [calendar]", "You created calendar {calendar}" : "Vytvorili ste kalendár [calendar]", "{actor} deleted calendar {calendar}" : "[actor] zmazal kalendár [calendar]", "You deleted calendar {calendar}" : "Zmazali ste kalendár [calendar]", "{actor} updated calendar {calendar}" : "[actor] upravil kalendár [calendar]", "You updated calendar {calendar}" : "Upravili ste kalendár [calendar]", "{actor} shared calendar {calendar} with you" : "{actor} vám sprístupnil kalendár {calendar}", "You shared calendar {calendar} with {user}" : "Sprístupnili ste kalendár {calendar} s {user}", "{actor} shared calendar {calendar} with {user}" : "{actor} sprístupnil kalendár {calendar} s {user}", "{actor} unshared calendar {calendar} from you" : "{actor} vám prestal sprístupňovať kalendár {calendar}", "You unshared calendar {calendar} from {user}" : "Prestali ste sprístupňovať kalendár {calendar} od používateľa {user}", "{actor} unshared calendar {calendar} from {user}" : "{actor} zrušil zdieľanie kalendára {calendar} s používateľom {user}", "{actor} unshared calendar {calendar} from themselves" : "{actor} zrušil zdieľanie kalendára {calendar} so sebou samým", "You shared calendar {calendar} with group {group}" : "Sprístupnili ste kalendár {calendar} so skupinou {group}", "{actor} shared calendar {calendar} with group {group}" : "{actor} vyzdieľal kalendár {calendar} so skupinou {group}", "You unshared calendar {calendar} from group {group}" : "Zrušili ste zdieľanie kalendára {calendar} so skupinou {group}", "{actor} unshared calendar {calendar} from group {group}" : "{actor} zrušil zdieľanie kalendára {calendar} so skupinou {group}", "{actor} created event {event} in calendar {calendar}" : "{actor} vytvoril udalosť {event} v kalendári {calendar}", "You created event {event} in calendar {calendar}" : "Vytvorili ste udalosť [event] v kalendári [calendar]", "{actor} deleted event {event} from calendar {calendar}" : "[actor] zmazal udalosť [event] z kalendára [calendar]", "You deleted event {event} from calendar {calendar}" : "Zmazali ste udalosť [event] z kalendára [calendar]", "{actor} updated event {event} in calendar {calendar}" : "{actor} aktualizoval udalosť {event} v kalendári {calendar}", "You updated event {event} in calendar {calendar}" : "Aktualizovali ste udalosť {event} v kalendári {calendar}", "{actor} created todo {todo} in list {calendar}" : "{actor} vytvoril úlohu {todo} v {calendar}", "You created todo {todo} in list {calendar}" : "Vytvorili ste úlohu {todo} v {calendar}", "{actor} deleted todo {todo} from list {calendar}" : "{actor} zmazal úlohu {todo} z {calendar}", "You deleted todo {todo} from list {calendar}" : "Zmazali ste úlohu {todo} z {calendar}", "{actor} updated todo {todo} in list {calendar}" : "{actor} upravil úlohu {todo} v {calendar}", "You updated todo {todo} in list {calendar}" : "Upravili ste úlohu {todo} v {calendar}", "{actor} solved todo {todo} in list {calendar}" : "{actor} vyriešil úlohu {todo} v {calendar}", "You solved todo {todo} in list {calendar}" : "Vyriešili ste úlohu {todo} v {calendar}", "{actor} reopened todo {todo} in list {calendar}" : "{actor} znovu otvoril úlohu {todo} v {calendar}", "You reopened todo {todo} in list {calendar}" : "Otvorili ste znovu úlohu {todo} v {calendar}", "A <strong>calendar</strong> was modified" : "<strong>kalendár</strong> bol upravený", "A calendar <strong>event</strong> was modified" : "<strong>Udalosť</strong> v kalendári bola upravená", "A calendar <strong>todo</strong> was modified" : "<>", "Contact birthdays" : "Narodeniny kontaktu", "Personal" : "Osobné", "Contacts" : "Kontakty", "Technical details" : "Technické podrobnosti", "Remote Address: %s" : "Vzdialená adresa: %s", "Request ID: %s" : "ID požiadavky: %s" }, "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"); de_DE.json 0000604 00000005441 15247100614 0006377 0 ustar 00 { "translations": { "Contacts" : "Kontakte", "Download" : "Herunterladen", "ShowURL" : "ZeigeURL", "Share Addressbook" : "Adressbuch teilen", "Delete Addressbook" : "Adressbuch löschen", "Share with users or groups" : "Mit Benutzern oder Gruppen teilen", "Delete" : "Löschen", "can edit" : "kann bearbeiten", "Address book name" : "Adressbuch-Name", "Import" : "Importieren", "The selected image is too big (max 1MB)" : "Das ausgewählte Bild ist zu groß (max. 1MB)", "This card is corrupted and has been fixed. Please check the data and trigger a save to make the changes permanent." : "Diese Karte ist beschädigt und wurde repariert. Überprüfen Sie die Daten und Speichern Sie, um die Änderungen dauerhaft zu übernehmen.", "No contacts in here" : "Keine Kontakte vorhanden", "Name" : "Name", "Organization" : "Organisation", "Title" : "Titel", "Add field ..." : "Feld hinzufügen …", "Save changes" : "Änderungen speichern", "No search result for {query}" : "Keine Suchergebnisse zu {query}", "_%n contact_::_%n contacts_" : ["%n Kontakt","%n Kontakte"], "Post office box" : "Postfach", "Postal code" : "Postleitzahl", "City" : "Stadt", "State or province" : "Bundesland oder Region", "Country" : "Land", "Address" : "Adresse", "(new group)" : "(neue Gruppe)", "Last name" : "Nachname", "First name" : "Vorname", "Additional names" : "Zusätzliche Namen", "Prefix" : "Präfix", "Suffix" : "Suffix", "All contacts" : "Alle Kontakte", "Not grouped" : "Nicht gruppiert", "New contact" : "Neuer Kontakt", "{addressbook} shared by {owner}" : "{addressbook} geteilt von {owner}", "Contact could not be created." : "Kontakt konnte nicht erstellt werden.", "No contacts in file. Only VCard files are allowed." : "Keine Kontakte in der Datei. Nur VCard-Dateien sind erlaubt.", "Only VCard version 4.0 (RFC6350) or version 3.0 (RFC2426) are supported." : "Nur VCard Version 4.0 (RFC6350) oder 3.0 (RFC2426) werden unterstützt.", "Nickname" : "Spitzname", "Detailed name" : "Detaillierter Name", "Notes" : "Notizen", "Website" : "Internetseite", "Federated Cloud ID" : "Federated-Cloud-ID", "Home" : "Privat", "Work" : "Arbeit", "Other" : "Andere", "Groups" : "Gruppen", "Birthday" : "Geburtstag", "Anniversary" : "Jahrestag", "Date of death" : "Todestag", "Email" : "E-Mail", "Instant messaging" : "Instant Messaging", "Phone" : "Telefon", "Mobile" : "Mobil", "Fax" : "Fax", "Fax home" : "Fax persönlich", "Fax work" : "Fax geschäftlich", "Pager" : "Pager", "Voice" : "Anruf", "Social network" : "Soziales Netzwerk", "Settings" : "Einstellungen" },"pluralForm" :"nplurals=2; plural=(n != 1);" } lt_LT.js 0000604 00000005107 15247100614 0006117 0 ustar 00 OC.L10N.register( "contacts", { "Contacts" : "Kontaktai", "Download" : "Atsisiųsti", "ShowURL" : "Rodyti adresą", "Share Addressbook" : "Dalintis adresų knygą", "Delete Addressbook" : "Ištrinti adresų knygą", "Share with users or groups" : "Dalintis su naudotojais arba grupėmis", "Delete" : "Ištrinti", "can edit" : "gali redaguoti", "Address book name" : "Adresų knygos pavadinimas", "Import" : "Importuoti", "The selected image is too big (max 1MB)" : "Pasirinktas paveikslėlis yra per didelis (maks. 1 MB)", "No contacts in here" : "Kontaktų nėra", "Name" : "Pavadinimas", "Organization" : "Organizacija", "Title" : "Pavadinimas", "Add field ..." : "Pridėti lauką ...", "No search result for {query}" : "Paieškos \"{query}\" rezultatų nėra", "_%n contact_::_%n contacts_" : ["%n kontaktas","%n kontaktų","%n kontaktų"], "Post office box" : "Pašto dėžutė", "Postal code" : "Pašto kodas", "City" : "Miestas", "State or province" : "Apskritis", "Country" : "Šalis", "Address" : "Adresas", "(new group)" : "(nauja grupė)", "Last name" : "Pavardė", "First name" : "Vardas", "Additional names" : "Papildomi vardai", "All contacts" : "Visi kontaktai", "Not grouped" : "Nesugrupuotas", "New contact" : "Naujas kontaktas", "{addressbook} shared by {owner}" : "{owner} pasidalino {addressbook}", "Contact could not be created." : "Kontakto sukurti nepavyko.", "No contacts in file. Only VCard files are allowed." : "Kontaktų faile nėra. Galima naudoti tik VCard tipo failus.", "Only VCard version 4.0 (RFC6350) or version 3.0 (RFC2426) are supported." : "Tik VCard 4.0 (RFC6350) ir 3.0 (RFC2426) versijos yra palaikomos.", "Nickname" : "Slapyvardis", "Detailed name" : "Detalus pavadinimas", "Notes" : "Pastabos", "Website" : "Svetainė", "Federated Cloud ID" : "Viešo debesies ID", "Home" : "Namų", "Work" : "Darbas", "Other" : "Kita", "Groups" : "Grupės", "Birthday" : "Gimtadienis", "Anniversary" : "Sukaktis", "Date of death" : "Mirties data", "Email" : "El. Paštas", "Instant messaging" : "Tikralaikiai pokalbiai", "Phone" : "Telefonas", "Mobile" : "Mobilusis", "Fax" : "Faksas", "Fax home" : "Namų faksas", "Fax work" : "Darbo faksas", "Pager" : "Pranešimų gaviklis", "Voice" : "Balso", "Social network" : "Socialinis tinklas", "Settings" : "Nustatymai" }, "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);"); zh_CN.json 0000604 00000004536 15247100614 0006444 0 ustar 00 { "translations": { "Contacts" : "联系人", "Download" : "下载", "ShowURL" : "显示URL", "Share Addressbook" : "分享地址簿", "Delete Addressbook" : "删除地址簿", "Share with users or groups" : "和用户或者组群分享", "Delete" : "删除", "can edit" : "允许编辑", "Address book name" : "地址簿名称", "Import" : "导入", "The selected image is too big (max 1MB)" : "所选图片过大(最大1MB)", "No contacts in here" : "没有联系人", "Name" : "名称", "Organization" : "组织", "Title" : "头衔", "Add field ..." : "添加字段", "Save changes" : "保存更改", "No search result for {query}" : "未找到结果{query}", "_%n contact_::_%n contacts_" : ["%n 位联系人"], "Post office box" : "邮政信箱", "Postal code" : "邮政编码", "City" : "城市", "State or province" : "州/省", "Country" : "国家", "Address" : "地址", "(new group)" : "(新建群组)", "Last name" : "姓", "First name" : "名", "Additional names" : "其他名称", "Prefix" : "前缀", "Suffix" : "后缀", "All contacts" : "全部联系人", "Not grouped" : "未分组", "New contact" : "新建联系人", "{addressbook} shared by {owner}" : "由 {owner} 共享给您的 {addressbook}", "Contact could not be created." : "无法创建联系人。", "No contacts in file. Only VCard files are allowed." : "没有发现联系人信息。只允许VCard格式文件.", "Only VCard version 4.0 (RFC6350) or version 3.0 (RFC2426) are supported." : "仅支持 VCard 4.0 版 (RFC6350) 或者 3.0 版 (RFC2426) 。", "Nickname" : "昵称", "Detailed name" : "全名", "Notes" : "说明", "Website" : "网站", "Federated Cloud ID" : "联合云ID", "Home" : "家庭", "Work" : "工作", "Other" : "其它", "Groups" : "群组", "Birthday" : "生日", "Anniversary" : "周年", "Date of death" : "去世日期", "Email" : "电子邮件", "Instant messaging" : "即时通讯", "Phone" : "电话", "Mobile" : "手机", "Fax" : "传真", "Fax home" : "家庭传真", "Fax work" : "工作传真", "Pager" : "传呼机", "Voice" : "语音", "Social network" : "社交网络", "Settings" : "设置" },"pluralForm" :"nplurals=1; plural=0;" } gl.json 0000604 00000010670 15247100614 0006041 0 ustar 00 { "translations": { "Calendar" : "Calendario", "Todos" : "Asuntos pendentes", "{actor} created calendar {calendar}" : "{actor} creou o calendario {calendar}", "You created calendar {calendar}" : "Vostede creou o calendario {calendar}", "{actor} deleted calendar {calendar}" : "{actor} eliminou o calendario {calendar}", "You deleted calendar {calendar}" : "Vostede eliminou o calendario {calendar}", "{actor} updated calendar {calendar}" : "{actor} actualizou o calendario {calendar}", "You updated calendar {calendar}" : "Vostede actualizou o calendario {calendar}", "{actor} shared calendar {calendar} with you" : "{actor} compartiu o calendario {calendar} con vostede", "You shared calendar {calendar} with {user}" : "Vostede compartiu o calendario {calendar} con {user}", "{actor} shared calendar {calendar} with {user}" : "{actor} compartiu o calendario {calendar} con {user}", "{actor} unshared calendar {calendar} from you" : "{actor} deixou de compartir o calendario {calendar} de vostede", "You unshared calendar {calendar} from {user}" : "Vostede deixou de compartir o calendario {calendar} de {user}", "{actor} unshared calendar {calendar} from {user}" : "{actor} deixou de compartir o calendario {calendar} de {user}", "{actor} unshared calendar {calendar} from themselves" : "{actor} deixou de compartir o seu propio calendario {calendar}", "You shared calendar {calendar} with group {group}" : "Vostede compartiu o calendario {calendar} co grupo {group}", "{actor} shared calendar {calendar} with group {group}" : "{actor} compartiu o calendario {calendar} co grupo {group}", "You unshared calendar {calendar} from group {group}" : "Vostede deixou de compartir o calendario {calendar} do grupo {group}", "{actor} unshared calendar {calendar} from group {group}" : "{actor} deixou de compartir o calendario {calendar} do grupo {group}", "{actor} created event {event} in calendar {calendar}" : "{actor} creou o evento {event} no calendario {calendar}", "You created event {event} in calendar {calendar}" : "Vostede creou o evento {event} no calendario {calendar}", "{actor} deleted event {event} from calendar {calendar}" : "{actor} eliminou o evento {event} do calendario {calendar}", "You deleted event {event} from calendar {calendar}" : "Vostede eliminou o evento {event} do calendario {calendar}", "{actor} updated event {event} in calendar {calendar}" : "{actor} actualizou o evento {event} no calendario {calendar}", "You updated event {event} in calendar {calendar}" : "Vostede actualizou o evento {event} no calendario {calendar}", "{actor} created todo {todo} in list {calendar}" : "{actor} creou os asuntos pendentes {todo} na lista {calendar}", "You created todo {todo} in list {calendar}" : "Vostede creou os asuntos pendentes {todo} na lista {calendar}", "{actor} deleted todo {todo} from list {calendar}" : "{actor} eliminou os asuntos pendentes {todo} da lista {calendar}", "You deleted todo {todo} from list {calendar}" : "Vostede eliminou os asuntos pendentes {todo} da lista {calendar}", "{actor} updated todo {todo} in list {calendar}" : "{actor} actualizou os asuntos pendentes {todo} na lista {calendar}", "You updated todo {todo} in list {calendar}" : "Vostede actualizou os asuntos pendentes {todo} na lista {calendar}", "{actor} solved todo {todo} in list {calendar}" : "{actor} resolveu os asuntos pendentes {todo} na lista {calendar}", "You solved todo {todo} in list {calendar}" : "Vostede resolveu os asuntos pendentes {todo} na lista {calendar}", "{actor} reopened todo {todo} in list {calendar}" : "{actor} volveu abrir os asuntos pendentes {todo} na lista {calendar}", "You reopened todo {todo} in list {calendar}" : "Vostede volveu abrir os asuntos pendentes {todo} na lista {calendar}", "A <strong>calendar</strong> was modified" : "Foi modificado un <strong>calendario</strong>", "A calendar <strong>event</strong> was modified" : "Foi modificado un <strong>evento</strong> do calendario", "A calendar <strong>todo</strong> was modified" : "Foi modificado un <strong>asunto pendente</strong> do calendario", "Contact birthdays" : "Aniversario do contacto", "Personal" : "Persoal", "Contacts" : "Contactos", "WebDAV" : "WebDAV", "Technical details" : "Detalles técnicos", "Remote Address: %s" : "Enderezo remoto: %s", "Request ID: %s" : "ID da solicitude: %s" },"pluralForm" :"nplurals=2; plural=(n != 1);" } de.js 0000604 00000005427 15247100614 0005476 0 ustar 00 OC.L10N.register( "contacts", { "Contacts" : "Kontakte", "Download" : "Herunterladen", "ShowURL" : "ZeigeURL", "Share Addressbook" : "Teile Adressbuch", "Delete Addressbook" : "Lösche Adressbuch", "Share with users or groups" : "Mit Benutzern oder Gruppen teilen", "Delete" : "Löschen", "can edit" : "kann bearbeiten", "Address book name" : "Name des Adressbuchs", "Import" : "Importieren", "The selected image is too big (max 1MB)" : "Das ausgewählte Bild ist zu groß (max. 1MB)", "This card is corrupted and has been fixed. Please check the data and trigger a save to make the changes permanent." : "Diese Karte ist beschädigt und wurde repariert. Überprüfe die Daten und Speichere diese, um die Änderungen dauerhaft zu übernehmen.", "No contacts in here" : "Keine Kontakte gefunden", "Name" : "Name", "Organization" : "Organisation", "Title" : "Titel", "Add field ..." : "Feld hinzufügen ...", "Save changes" : "Änderungen speichern", "No search result for {query}" : "Kein Ergebnis für {query}", "_%n contact_::_%n contacts_" : ["%n Kontakt","%n Kontakte"], "Post office box" : "Postfach", "Postal code" : "Postleitzahl", "City" : "Stadt", "State or province" : "Staat oder Provinz", "Country" : "Land", "Address" : "Adresse", "(new group)" : "(neue Gruppe)", "Last name" : "Nachname", "First name" : "Vorname", "Additional names" : "Zusätzliche Namen", "Prefix" : "Präfix", "Suffix" : "Suffix", "All contacts" : "Alle Kontakte", "Not grouped" : "Nicht gruppiert", "New contact" : "Neuer Kontakt", "{addressbook} shared by {owner}" : "{addressbook} geteilt von {owner}", "Contact could not be created." : "Kontakt konnte nicht erstellt werden.", "No contacts in file. Only VCard files are allowed." : "Keine Kontakte in der Datei. Nur vCard-Dateien sind erlaubt.", "Only VCard version 4.0 (RFC6350) or version 3.0 (RFC2426) are supported." : "Nur vCard Version 4.0 (RFC6350) oder 3.0 (RFC2426) werden unterstützt.", "Nickname" : "Spitzname", "Detailed name" : "Detaillierter Name", "Notes" : "Notizen", "Website" : "Website", "Federated Cloud ID" : "Federated-Cloud-ID", "Home" : "Home", "Work" : "Arbeit", "Other" : "Andere", "Groups" : "Gruppen", "Birthday" : "Geburtstag", "Anniversary" : "Jahrestag", "Date of death" : "Todestag", "Email" : "E-Mail", "Instant messaging" : "Instant Messaging", "Phone" : "Telefon", "Mobile" : "Mobil", "Fax" : "Fax", "Fax home" : "Fax persönlich", "Fax work" : "Fax geschäftlich", "Pager" : "Pager", "Voice" : "Anruf", "Social network" : "Soziales Netzwerk", "Settings" : "Einstellungen" }, "nplurals=2; plural=(n != 1);"); nb_NO.json 0000604 00000004655 15247100614 0006440 0 ustar 00 { "translations": { "Contacts" : "Kontakter", "Download" : "Last ned", "ShowURL" : "VisURL", "Share Addressbook" : "Del adressebok", "Delete Addressbook" : "Slett adressebok", "Share with users or groups" : "Del med brukere eller grupper", "Delete" : "Slett", "can edit" : "kan endre", "Address book name" : "Navn på adressebok", "Import" : "Importer", "The selected image is too big (max 1MB)" : "Det valgte bildet er for stort (maks 1MB)", "No contacts in here" : "Ingen kontakter her", "Name" : "Navn", "Organization" : "Organisasjon", "Title" : "Tittel", "Add field ..." : "Nytt felt ...", "Save changes" : "Lagre endringer", "No search result for {query}" : "Intet søkeresultat for {query}", "_%n contact_::_%n contacts_" : ["%n kontakt","%n kontakter"], "Post office box" : "Postboks", "Postal code" : "Postnummer", "City" : "By", "State or province" : "Stat eller fylke", "Country" : "Land", "Address" : "Adresse", "(new group)" : "(ny gruppe)", "Last name" : "Etternavn", "First name" : "Fornavn", "Additional names" : "Ev. mellomnavn", "Prefix" : "Prefiks", "Suffix" : "Suffiks", "All contacts" : "Alle kontakter", "Not grouped" : "Ikke gruppert", "New contact" : "Ny kontakt", "{addressbook} shared by {owner}" : "{addressbook} delt av {owner}", "Contact could not be created." : "Kontakten kunne ikke opprettes", "No contacts in file. Only VCard files are allowed." : "Ingen kontakter i filen. Kun VCard-filer er tillatt.", "Only VCard version 4.0 (RFC6350) or version 3.0 (RFC2426) are supported." : "Kun VCard versjon 4.0 (RFC6350) eller versjon 3.0 (RFC2426) er støttet.", "Nickname" : "Kallenavn", "Detailed name" : "Detaljert navn", "Notes" : "Notater", "Website" : "Nettsted", "Federated Cloud ID" : "ID for sammenknyttet sky", "Home" : "Hjem", "Work" : "Jobb", "Other" : "Annet", "Groups" : "Grupper", "Birthday" : "Bursdag", "Anniversary" : "Jubileum", "Date of death" : "Dødsdato", "Email" : "Epost", "Instant messaging" : "Direktemeldinger", "Phone" : "Telefon", "Mobile" : "Mobil", "Fax" : "Faks", "Fax home" : "Faks hjemme", "Fax work" : "Faks jobb", "Pager" : "Pager", "Voice" : "Svarer", "Social network" : "Sosialt nettverk", "Settings" : "Innstillinger" },"pluralForm" :"nplurals=2; plural=(n != 1);" } es_AR.js 0000604 00000010605 15247100614 0006071 0 ustar 00 OC.L10N.register( "dav", { "Calendar" : "Calendario", "Todos" : "Pendientes", "{actor} created calendar {calendar}" : "{actor} creó el calendario {calendar}", "You created calendar {calendar}" : "Usted creó el calendario {calendar}", "{actor} deleted calendar {calendar}" : "{actor} borró el calendario {calendar}", "You deleted calendar {calendar}" : "Usted borró el calendario {calendar}", "{actor} updated calendar {calendar}" : "{actor} actualizó el calendario {calendar}", "You updated calendar {calendar}" : "Usted actualizó el calendario {calendar}", "{actor} shared calendar {calendar} with you" : "{actor} ha compartido el calendario {calendar} con usted", "You shared calendar {calendar} with {user}" : "Usted ha compartido el calendario {calendar} con {user}", "{actor} shared calendar {calendar} with {user}" : "{actor} compartió el calendario {calendar} con {user}", "{actor} unshared calendar {calendar} from you" : "{actor} ha dejado de compartir el calendario {calendar} con usted", "You unshared calendar {calendar} from {user}" : "Usted ha dejado de compartir el calendario {calendar} con {user}", "{actor} unshared calendar {calendar} from {user}" : "{actor} dejó de compartir el calendario {calendar} con {user}", "{actor} unshared calendar {calendar} from themselves" : "{actor} dejó de compartir {el calendario calendar} con él mismo", "You shared calendar {calendar} with group {group}" : "Usted ha compartido el calendario {calendar} con el grupo {group}", "{actor} shared calendar {calendar} with group {group}" : "{actor} compartió el calendario {calendar} con el grupo {group}", "You unshared calendar {calendar} from group {group}" : "Usted ha dejado de compartir el calendario {calendar} con el grupo {group}", "{actor} unshared calendar {calendar} from group {group}" : "{actor} dejó de compartir el calendrio {calendar} con el grupo {group}", "{actor} created event {event} in calendar {calendar}" : "{actor} creó el evento {event} en el calendario {calendar}", "You created event {event} in calendar {calendar}" : "Usted creó el evento {event} en el calendario {calendar}", "{actor} deleted event {event} from calendar {calendar}" : "{actor} borró el eventó {event} del calendario {calendar}", "You deleted event {event} from calendar {calendar}" : "Usted borró el evento {event} del calendario {calendar}", "{actor} updated event {event} in calendar {calendar}" : "{actor} actualizó el evento {event} en el calendario {calendar}", "You updated event {event} in calendar {calendar}" : "Usted actualizó el evento {event} en el calendario {calendar}", "{actor} created todo {todo} in list {calendar}" : "{actor} creó el pendiente {todo} en la lista {calendar}", "You created todo {todo} in list {calendar}" : "Usted creo el pendiente {todo} en la lista {calendar}", "{actor} deleted todo {todo} from list {calendar}" : "{actor} borró el pendiente {todo} de la lista {calendar}", "You deleted todo {todo} from list {calendar}" : "Usted borró el pendiente {todo} de la lista {calendar}", "{actor} updated todo {todo} in list {calendar}" : "{actor} actualizó el pendiente {todo} de la lista {calendar}", "You updated todo {todo} in list {calendar}" : "Usted actualizó el pendiente {todo} de la lista {calendar}", "{actor} solved todo {todo} in list {calendar}" : "{actor} resolvió el pendiente {todo} de la lista {calendar}", "You solved todo {todo} in list {calendar}" : "Usted resolvió el pendiente {todo} de la lista {calendar}", "{actor} reopened todo {todo} in list {calendar}" : "{actor} reabrió el pendiente {todo} de la lista{calendar}", "You reopened todo {todo} in list {calendar}" : "Usted reabrió el pendiente {todo} de la lista {calendar}", "A <strong>calendar</strong> was modified" : "Un <strong>calendario</strong> fue modificado", "A calendar <strong>event</strong> was modified" : "Un <strong>evento</strong> de un calendario fue modificado", "A calendar <strong>todo</strong> was modified" : "Un <strong>pendiente</strong> de un calendario fue modificado", "Contact birthdays" : "Cumpleaños del contacto", "Personal" : "Personal", "Contacts" : "Contactos", "Technical details" : "Detalles técnicos", "Remote Address: %s" : "Dirección remota: %s", "Request ID: %s" : "ID de solicitud: %s" }, "nplurals=2; plural=(n != 1);"); cs.js 0000604 00000010520 15247100614 0005501 0 ustar 00 OC.L10N.register( "dav", { "Calendar" : "Kalendář", "Todos" : "Úkoly", "{actor} created calendar {calendar}" : "{actor} vytvořil(a) kalendář {calendar}", "You created calendar {calendar}" : "Vytvořil(a", "{actor} deleted calendar {calendar}" : "{actor} smazal(a) kalendář {calendar}", "You deleted calendar {calendar}" : "Smazal(a) jste kalendář {calendar}", "{actor} updated calendar {calendar}" : "{actor} aktualizoval(a) kalendář {calendar}", "You updated calendar {calendar}" : "Aktualizoval(a) jste kalendář {calendar}", "{actor} shared calendar {calendar} with you" : "{actor} s vámi nasdílel(a) kalendář {calendar}", "You shared calendar {calendar} with {user}" : "S uživatelem {user} jste začal(a) sdílet kalendář {calendar}", "{actor} shared calendar {calendar} with {user}" : "{actor} začal sdílet kalendář {calendar} s uživatelem {user}", "{actor} unshared calendar {calendar} from you" : "{actor} s vámi přestal(a) sdílet kalendář {calendar}", "You unshared calendar {calendar} from {user}" : "S uživatelem {user} jste přestal(a) sdílet kalendář {calendar}", "{actor} unshared calendar {calendar} from {user}" : "{actor} přestal(a) sdílet kalendář {calendar} s uživatelem {user}", "{actor} unshared calendar {calendar} from themselves" : "{actor} přestal sdílet kalendář {calendar} sám se sebou", "You shared calendar {calendar} with group {group}" : "Se skupinou {group} jste začal(a) sdílet kalendář {calendar}", "{actor} shared calendar {calendar} with group {group}" : "{actor} nasdílel(a) kalendář {calendar} skupině {group}", "You unshared calendar {calendar} from group {group}" : "Zrušil(a) jste sdílení kalendáře {calendar} skupině {group}", "{actor} unshared calendar {calendar} from group {group}" : "{actor} přestal(a) sdílet kalendář {calendar} se skupinou {group}", "{actor} created event {event} in calendar {calendar}" : "{actor} vytvořil(a) událost {event} v kalendáři {calendar}", "You created event {event} in calendar {calendar}" : "V kalendáři {calendar} jste vytvořil(a) událost {event}", "{actor} deleted event {event} from calendar {calendar}" : "{actor} z kalendáře {calendar} smazal(a) událost {event}", "You deleted event {event} from calendar {calendar}" : "Smazal(a) jste událost {event} z kalendáře {calendar}", "{actor} updated event {event} in calendar {calendar}" : "{actor} aktualizoval(a) událost {event} v kalendáři {calendar}", "You updated event {event} in calendar {calendar}" : "Aktualizoval(a) jste událost {event} v kalendáři {calendar}", "{actor} created todo {todo} in list {calendar}" : "{actor} vytvořil(a) v seznamu {calendar} vytvořila úkol {todo}", "You created todo {todo} in list {calendar}" : "V seznamu {calendar} jste vytvořil(a) úkol {todo}", "{actor} deleted todo {todo} from list {calendar}" : "{actor} smazal(a) úkol {todo} ze seznamu {calendar}", "You deleted todo {todo} from list {calendar}" : "Ze seznamu {todo} jste smazal(a) úkol {todo}", "{actor} updated todo {todo} in list {calendar}" : "{actor} aktualizoval(a) úkol {todo} v seznamu {calendar}", "You updated todo {todo} in list {calendar}" : "Aktualizoval(a) jste úkol {todo} v seznamu {calendar}", "{actor} solved todo {todo} in list {calendar}" : "{actor} vyřešil(a) úkol {todo} v seznamu {calendar}", "You solved todo {todo} in list {calendar}" : "Vyřešil(a) jste úkol {todo} v seznamu {calendar}", "{actor} reopened todo {todo} in list {calendar}" : "{actor} znovu otevřel(a) úkol {todo} v seznamu {calendar}", "You reopened todo {todo} in list {calendar}" : "Znovu jste otevřel(a) úkol {todo} v seznamu {calendar}", "A <strong>calendar</strong> was modified" : "<strong>Kalendář</strong> byl změněn", "A calendar <strong>event</strong> was modified" : "<strong>Událost</strong> v kalendáři byla změněna", "A calendar <strong>todo</strong> was modified" : "<strong>Úkol</strong> v kalendáři byl změněn", "Contact birthdays" : "Narozeniny kontaktů", "Personal" : "Osobní", "Contacts" : "Kontakty", "Technical details" : "Technické detaily", "Remote Address: %s" : "Vzdálená adresa: %s", "Request ID: %s" : "ID požadavku: %s" }, "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"); nl.js 0000604 00000005462 15247100614 0005516 0 ustar 00 OC.L10N.register( "contacts", { "Contacts" : "Contactpersonen", "Download" : "Downloaden", "ShowURL" : "ShowURL", "Share Addressbook" : "Delen adresboek", "Delete Addressbook" : "Verwijderen adresboek", "Share with users or groups" : "Delen met gebruikers of groepen", "Delete" : "Verwijderen", "can edit" : "kan bewerken", "Address book name" : "Adresboek naam", "Import" : "Importeer", "The selected image is too big (max 1MB)" : "De geselecteerde afbeelding is te groot (max 1MB)", "This card is corrupted and has been fixed. Please check the data and trigger a save to make the changes permanent." : "Deze kaart is corrupt en weer hersteld. Controleer de gegevens en start het opslaan ervan om de wijzigingen permanent te maken.", "No contacts in here" : "Hier geen contactpersonen gevonden", "Name" : "Naam", "Organization" : "Organisatie", "Title" : "Titel", "Add field ..." : "Voeg veld toe", "Save changes" : "Wijzigingen bewaren", "No search result for {query}" : "Geen zoekresultaten voor {query}", "_%n contact_::_%n contacts_" : ["%n contactpersoon","%n contactpersonen"], "Post office box" : "Postbus", "Postal code" : "Postcode", "City" : "Stad", "State or province" : "Staat of provincie", "Country" : "Land", "Address" : "Adres", "(new group)" : "(nieuwe groep)", "Last name" : "Achternaam", "First name" : "Voornaam", "Additional names" : "Extra namen", "Prefix" : "Voorvoegsel", "Suffix" : "Achtervoegsel", "All contacts" : "Alle contactpersonen", "Not grouped" : "Niet gegroepeerd", "New contact" : "Nieuwe contactpersoon", "{addressbook} shared by {owner}" : "{addressbook} gedeeld door {owner}", "Contact could not be created." : "Contact kon niet worden aangemaakt.", "No contacts in file. Only VCard files are allowed." : "Geen contacten in bestand. Alleen VCard bestanden zijn toegestaan.", "Only VCard version 4.0 (RFC6350) or version 3.0 (RFC2426) are supported." : "Alleen VCard versie 4.0 (RFC6350) of versie 3.0 (RFC2426) worden ondersteund.", "Nickname" : "Roepnaam", "Detailed name" : "Gedetailleerde naam", "Notes" : "Notities", "Website" : "Website", "Federated Cloud ID" : "Gefedereerde Cloud ID", "Home" : "Thuis", "Work" : "Werk", "Other" : "Overig", "Groups" : "Groepen", "Birthday" : "Verjaardag", "Anniversary" : "Jubileum", "Date of death" : "Sterfdatum", "Email" : "mailadres", "Instant messaging" : "Instant messaging", "Phone" : "Telefoon", "Mobile" : "Mobiel", "Fax" : "Fax", "Fax home" : "Fax thuis", "Fax work" : "Fax werk", "Pager" : "Pieper", "Voice" : "Stem", "Social network" : "Social network", "Settings" : "Instellingen" }, "nplurals=2; plural=(n != 1);"); sl.json 0000604 00000005100 15247100614 0006045 0 ustar 00 { "translations": { "Contacts" : "Stiki", "Download" : "Prejmi", "ShowURL" : "Prikaži URL", "Share Addressbook" : "Deli Imenik", "Delete Addressbook" : "Pobriši Imenik", "Share with users or groups" : "Deli z uporabniki ali skupinami", "Delete" : "Pobriši", "can edit" : "lahko ureja", "Address book name" : "Ime imenika", "Import" : "Uvozi", "The selected image is too big (max 1MB)" : "Izbrana slika je prevelika (omejitev je 1 MB).", "No contacts in here" : "Ni dodanega nobenega stika!", "Name" : "Ime", "Organization" : "Ustanova", "Title" : "Naslov", "Add field ..." : "Dodaj polje ...", "No search result for {query}" : "Ni zadetkov iskanja za {query}", "_%n contact_::_%n contacts_" : ["%n stik","%n stika","%n stiki","%n stikov"], "Post office box" : "Poštni predal", "Postal code" : "Poštna številka", "City" : "Mesto", "State or province" : "Zvezna država ali provinca", "Country" : "Država", "Address" : "Naslov", "(new group)" : "(nova skupina)", "Last name" : "Priimek", "First name" : "Ime", "Additional names" : "Druga imena", "Prefix" : "Predpona", "Suffix" : "Pripona", "All contacts" : "Vsi stiki", "Not grouped" : "Brez skupine", "New contact" : "Nov stik", "{addressbook} shared by {owner}" : "Souporabo imenika {addressbook} je omogočil uporabnik {owner}", "Contact could not be created." : "Stika ni mogoče ustvariti.", "No contacts in file. Only VCard files are allowed." : "V datoteki ni vpisanih stikov. Dovoljeni so le vpisi datotek VCard.", "Only VCard version 4.0 (RFC6350) or version 3.0 (RFC2426) are supported." : "Samo VCard verziji 4.0 (RFC6350) ali verzija 3.0 (RFC2426) sta podprti.", "Nickname" : "Vzdevek", "Detailed name" : "Podrobno ime", "Notes" : "Sporočilca", "Website" : "Spletna stran", "Federated Cloud ID" : "ID zveznega oblaka", "Home" : "Domači naslov", "Work" : "Službeni naslov", "Other" : "Drugo", "Groups" : "Skupine", "Birthday" : "Rojstni dan", "Anniversary" : "Obletnica", "Date of death" : "Datum smrti", "Email" : "Elektronski naslov", "Instant messaging" : "Hipno sporočanje", "Phone" : "Telefon", "Mobile" : "Mobilni telefon", "Fax" : "Faks", "Fax home" : "Domači faks", "Fax work" : "Službeni faks", "Pager" : "Pozivnik", "Voice" : "Glas", "Social network" : "Družbeno omrežje", "Settings" : "Nastavitve" },"pluralForm" :"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);" } sq.json 0000604 00000005000 15247100614 0006051 0 ustar 00 { "translations": { "Contacts" : "Kontaktet", "Download" : "Shkarko", "ShowURL" : "Shfaq URL", "Share Addressbook" : "Ndaj Librin e Adresave", "Delete Addressbook" : "Fshij Librin e Adresave", "Share with users or groups" : "Nda me përdoruesit ose grupet", "Delete" : "Fshije", "can edit" : "mund të modifikoni", "Address book name" : "Emër libri adresash", "Import" : "Importoje", "The selected image is too big (max 1MB)" : "Figura e përzgjedhur është shumë e madhe (maksimumi 1MB)", "No contacts in here" : "S’ka kontakte këtu", "Name" : "Emër", "Organization" : "Organizim", "Title" : "Titull", "Add field ..." : "Shtoni fushë...", "No search result for {query}" : "Nuk pati rezultate kërkimi për {query}", "_%n contact_::_%n contacts_" : ["%n kontakt","%n kontakte"], "Post office box" : "Kuti postare në postë", "Postal code" : "Kod postar", "City" : "Qytet", "State or province" : "Shtet ose provincë", "Country" : "Vend", "Address" : "Adresë", "(new group)" : "(grup i ri)", "Last name" : "Mbiemër", "First name" : "Emër", "Additional names" : "Emra shtesë", "Prefix" : "Parashtesë", "Suffix" : "Prapashtesë", "All contacts" : "Të gjithë kontaktet", "Not grouped" : "I pagrupuar", "New contact" : "Kontakt i ri", "{addressbook} shared by {owner}" : "{addressbook} ndarë nga {owner}", "Contact could not be created." : "Kontakti nuk u krijua dot.", "No contacts in file. Only VCard files are allowed." : "S’ka kontakte në kartelë. Lejohen vetëm kartela VCard.", "Only VCard version 4.0 (RFC6350) or version 3.0 (RFC2426) are supported." : "Suportohen vetëm VCard versioni 4.0 (RFC6350) ose versioni 3.0 (RFC2426)", "Nickname" : "Nofkë", "Detailed name" : "Emri i hollësishëm", "Notes" : "Shënime", "Website" : "Sajt", "Federated Cloud ID" : "ID Federated Cloud", "Home" : "Kreu", "Work" : "Punë", "Other" : "Tjetër", "Groups" : "Grupe", "Birthday" : "Datëlindje", "Anniversary" : "Përvjetor", "Date of death" : "Datë vdekjeje", "Email" : "Email", "Instant messaging" : "Shkëmbim i atypëratyshëm mesazhesh", "Phone" : "Telefon", "Mobile" : "Celular", "Fax" : "Faks", "Fax home" : "Faks shtëpie", "Fax work" : "Faks pune", "Pager" : "Faques", "Voice" : "Zë", "Social network" : "Rrjet social", "Settings" : "Konfigurime" },"pluralForm" :"nplurals=2; plural=(n != 1);" }gl.js 0000604 00000010673 15247100614 0005507 0 ustar 00 OC.L10N.register( "dav", { "Calendar" : "Calendario", "Todos" : "Asuntos pendentes", "{actor} created calendar {calendar}" : "{actor} creou o calendario {calendar}", "You created calendar {calendar}" : "Vostede creou o calendario {calendar}", "{actor} deleted calendar {calendar}" : "{actor} eliminou o calendario {calendar}", "You deleted calendar {calendar}" : "Vostede eliminou o calendario {calendar}", "{actor} updated calendar {calendar}" : "{actor} actualizou o calendario {calendar}", "You updated calendar {calendar}" : "Vostede actualizou o calendario {calendar}", "{actor} shared calendar {calendar} with you" : "{actor} compartiu o calendario {calendar} con vostede", "You shared calendar {calendar} with {user}" : "Vostede compartiu o calendario {calendar} con {user}", "{actor} shared calendar {calendar} with {user}" : "{actor} compartiu o calendario {calendar} con {user}", "{actor} unshared calendar {calendar} from you" : "{actor} deixou de compartir o calendario {calendar} de vostede", "You unshared calendar {calendar} from {user}" : "Vostede deixou de compartir o calendario {calendar} de {user}", "{actor} unshared calendar {calendar} from {user}" : "{actor} deixou de compartir o calendario {calendar} de {user}", "{actor} unshared calendar {calendar} from themselves" : "{actor} deixou de compartir o seu propio calendario {calendar}", "You shared calendar {calendar} with group {group}" : "Vostede compartiu o calendario {calendar} co grupo {group}", "{actor} shared calendar {calendar} with group {group}" : "{actor} compartiu o calendario {calendar} co grupo {group}", "You unshared calendar {calendar} from group {group}" : "Vostede deixou de compartir o calendario {calendar} do grupo {group}", "{actor} unshared calendar {calendar} from group {group}" : "{actor} deixou de compartir o calendario {calendar} do grupo {group}", "{actor} created event {event} in calendar {calendar}" : "{actor} creou o evento {event} no calendario {calendar}", "You created event {event} in calendar {calendar}" : "Vostede creou o evento {event} no calendario {calendar}", "{actor} deleted event {event} from calendar {calendar}" : "{actor} eliminou o evento {event} do calendario {calendar}", "You deleted event {event} from calendar {calendar}" : "Vostede eliminou o evento {event} do calendario {calendar}", "{actor} updated event {event} in calendar {calendar}" : "{actor} actualizou o evento {event} no calendario {calendar}", "You updated event {event} in calendar {calendar}" : "Vostede actualizou o evento {event} no calendario {calendar}", "{actor} created todo {todo} in list {calendar}" : "{actor} creou os asuntos pendentes {todo} na lista {calendar}", "You created todo {todo} in list {calendar}" : "Vostede creou os asuntos pendentes {todo} na lista {calendar}", "{actor} deleted todo {todo} from list {calendar}" : "{actor} eliminou os asuntos pendentes {todo} da lista {calendar}", "You deleted todo {todo} from list {calendar}" : "Vostede eliminou os asuntos pendentes {todo} da lista {calendar}", "{actor} updated todo {todo} in list {calendar}" : "{actor} actualizou os asuntos pendentes {todo} na lista {calendar}", "You updated todo {todo} in list {calendar}" : "Vostede actualizou os asuntos pendentes {todo} na lista {calendar}", "{actor} solved todo {todo} in list {calendar}" : "{actor} resolveu os asuntos pendentes {todo} na lista {calendar}", "You solved todo {todo} in list {calendar}" : "Vostede resolveu os asuntos pendentes {todo} na lista {calendar}", "{actor} reopened todo {todo} in list {calendar}" : "{actor} volveu abrir os asuntos pendentes {todo} na lista {calendar}", "You reopened todo {todo} in list {calendar}" : "Vostede volveu abrir os asuntos pendentes {todo} na lista {calendar}", "A <strong>calendar</strong> was modified" : "Foi modificado un <strong>calendario</strong>", "A calendar <strong>event</strong> was modified" : "Foi modificado un <strong>evento</strong> do calendario", "A calendar <strong>todo</strong> was modified" : "Foi modificado un <strong>asunto pendente</strong> do calendario", "Contact birthdays" : "Aniversario do contacto", "Personal" : "Persoal", "Contacts" : "Contactos", "WebDAV" : "WebDAV", "Technical details" : "Detalles técnicos", "Remote Address: %s" : "Enderezo remoto: %s", "Request ID: %s" : "ID da solicitude: %s" }, "nplurals=2; plural=(n != 1);"); is.js 0000604 00000003574 15247100614 0005522 0 ustar 00 OC.L10N.register( "contacts", { "Contacts" : "Tengiliðir", "Address book name" : "Heiti nafnaskrár", "Import" : "Flytja inn", "The selected image is too big (max 1MB)" : "Valin mynd er of stór (hám. 1MB)", "No contacts in here" : "Engir tengiliðir hér", "Name" : "Nafn", "Organization" : "Stofnun/félag", "Title" : "Titill", "Add field ..." : "Bæta við reit...", "No search result for {query}" : "Engar leitarniðurstöður fyrir {query}", "Post office box" : "Pósthólf", "Postal code" : "Póstnúmer", "City" : "Borg", "State or province" : "Ríki eða fylki", "Country" : "Land", "Address" : "Slóð", "(new group)" : "(nýr hópur)", "Last name" : "Eftirnafn", "First name" : "Eiginnafn", "Additional names" : "Aukanöfn", "Prefix" : "Forskeyti", "Suffix" : "Viðskeyti", "All contacts" : "Allir tengiliðir", "Not grouped" : "Ekki hópað", "New contact" : "Nýr tengiliður", "{addressbook} shared by {owner}" : "{addressbook} deilt af {owner}", "No contacts in file. Only VCard files are allowed." : "Engir tengiliðir í skrá. Einungis er tekið við VCard-skrám.", "Nickname" : "Gælunafn", "Detailed name" : "Ítarlegt nafn", "Notes" : "Minnispunktar", "Website" : "Vefsvæði", "Federated Cloud ID" : "Skýjasambandsauðkenni (Federated Cloud ID)", "Home" : "Heima", "Work" : "Vinna", "Other" : "Annað", "Groups" : "Hópar", "Birthday" : "Afmælisdagur", "Email" : "Netfang", "Instant messaging" : "Snarskilaboð", "Phone" : "Sími", "Mobile" : "Farsími", "Fax" : "Fax", "Fax home" : "Heimafax", "Fax work" : "Vinnufax", "Pager" : "Símboði", "Voice" : "Raddskilaboð", "Social network" : "Samfélagsnet", "Settings" : "Stillingar" }, "nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);"); hu.js 0000604 00000011120 15247100614 0005505 0 ustar 00 OC.L10N.register( "dav", { "Calendar" : "Naptár", "Todos" : "Teendők", "{actor} created calendar {calendar}" : "{actor} létrehozta a naptárt: {calendar}", "You created calendar {calendar}" : "Létrehoztad a naptárt: {calendar}", "{actor} deleted calendar {calendar}" : "{actor} törölte a naptárt: {calendar}", "You deleted calendar {calendar}" : "Törölted a naptárt: {calendar}", "{actor} updated calendar {calendar}" : "{actor} frissítette a napárt: {calendar}", "You updated calendar {calendar}" : "Frissítetted a naptárt: {calendar}", "{actor} shared calendar {calendar} with you" : "{actor} megosztotta veled ezt a naptárt: {calendar}", "You shared calendar {calendar} with {user}" : "Megosztottad ezt a napárt: {calendar} vele: {user}", "{actor} shared calendar {calendar} with {user}" : "{actor} megosztotta ezt a napárt: {calendar} vele: {user}", "{actor} unshared calendar {calendar} from you" : "{actor} visszavonta töled a naptár megosztását: {calendar}", "You unshared calendar {calendar} from {user}" : "Visszavontad a naptár megosztását: {calendar} tőle: {user}", "{actor} unshared calendar {calendar} from {user}" : "{actor} visszavonta a naptár megosztását: {calendar} tőle: {user}", "{actor} unshared calendar {calendar} from themselves" : "{actor} visszavonta tőlük a naptár megosztását: {calendar}", "You shared calendar {calendar} with group {group}" : "Megosztottad ezt a naptárt: {calendar} evvel a csoporttal: {group}", "{actor} shared calendar {calendar} with group {group}" : "{actor} megosztotta ezt a naptárt: {calendar} evvel a csoporttal: {group}", "You unshared calendar {calendar} from group {group}" : "Visszavontad ennek a naptárnak a magosztását: {calendar} ettől a csoporttól: {group}", "{actor} unshared calendar {calendar} from group {group}" : "{actor} visszavonta ennek a naptárnak a magosztását: {calendar} ettől a csoporttól: {group}", "{actor} created event {event} in calendar {calendar}" : "{actor} létrehozta ezt az eseményt: {event} ebben a naptárban: {calendar}", "You created event {event} in calendar {calendar}" : "Létrehoztad ezt az eseményt: {event} ebben a naptárban: {calendar}", "{actor} deleted event {event} from calendar {calendar}" : "{actor} törölte ezt az eseményt: {event} ebből a naptárból: {calendar}", "You deleted event {event} from calendar {calendar}" : "Törölted ezt az eseményt: {event} ebből a naptárból: {calendar}", "{actor} updated event {event} in calendar {calendar}" : "{actor} frissítette ezt az eseményt: {event} ebben a naptárban: {calendar}", "You updated event {event} in calendar {calendar}" : "Frissítetted ezt az eseményt: {event} ebben a naptárban: {calendar}", "{actor} created todo {todo} in list {calendar}" : "{actor} létrehozta ezt a teendőt: {todo} ebben a listában: {calendar}", "You created todo {todo} in list {calendar}" : "Létrehoztad ezt a teendőt: {todo} ebben a listában: {calendar}", "{actor} deleted todo {todo} from list {calendar}" : "{actor} törölte ezt a teendőt: {todo} ebből a listából: {calendar}", "You deleted todo {todo} from list {calendar}" : "Törölted ezt a teendőt: {todo} ebből a listából: {calendar}", "{actor} updated todo {todo} in list {calendar}" : "{actor} frissítette ezt a teendőt: {todo} ebben a listában: {calendar}", "You updated todo {todo} in list {calendar}" : "Frissítetted ezt a teendőt: {todo} ebben a listában: {calendar}", "{actor} solved todo {todo} in list {calendar}" : "{actor} elintézte ezt a teendőt: {todo} ebben a listában: {calendar}", "You solved todo {todo} in list {calendar}" : "Elintézted ezt a teendőt: {todo} ebben a listában: {calendar}", "{actor} reopened todo {todo} in list {calendar}" : "{actor} újranyitotta ezt a teendőt: {todo} ebben a listában: {calendar}", "You reopened todo {todo} in list {calendar}" : "Újranyitottad ezt a teendőt: {todo} ebben a listában: {calendar}", "A <strong>calendar</strong> was modified" : "Egy <strong>naptár</strong> megváltozott", "A calendar <strong>event</strong> was modified" : "Egy naptár <strong>esemény</strong> megváltozott", "A calendar <strong>todo</strong> was modified" : "Egy naptár <strong>teendő</strong> megváltozott", "Contact birthdays" : "Születésnapok", "Personal" : "Személyes", "Contacts" : "Névjegyek", "Technical details" : "Technikai adatok", "Remote Address: %s" : "Távoli cím: %s", "Request ID: %s" : "Kérelem azonosító: %s" }, "nplurals=2; plural=(n != 1);"); lt_LT.json 0000604 00000005077 15247100614 0006462 0 ustar 00 { "translations": { "Contacts" : "Kontaktai", "Download" : "Atsisiųsti", "ShowURL" : "Rodyti adresą", "Share Addressbook" : "Dalintis adresų knygą", "Delete Addressbook" : "Ištrinti adresų knygą", "Share with users or groups" : "Dalintis su naudotojais arba grupėmis", "Delete" : "Ištrinti", "can edit" : "gali redaguoti", "Address book name" : "Adresų knygos pavadinimas", "Import" : "Importuoti", "The selected image is too big (max 1MB)" : "Pasirinktas paveikslėlis yra per didelis (maks. 1 MB)", "No contacts in here" : "Kontaktų nėra", "Name" : "Pavadinimas", "Organization" : "Organizacija", "Title" : "Pavadinimas", "Add field ..." : "Pridėti lauką ...", "No search result for {query}" : "Paieškos \"{query}\" rezultatų nėra", "_%n contact_::_%n contacts_" : ["%n kontaktas","%n kontaktų","%n kontaktų"], "Post office box" : "Pašto dėžutė", "Postal code" : "Pašto kodas", "City" : "Miestas", "State or province" : "Apskritis", "Country" : "Šalis", "Address" : "Adresas", "(new group)" : "(nauja grupė)", "Last name" : "Pavardė", "First name" : "Vardas", "Additional names" : "Papildomi vardai", "All contacts" : "Visi kontaktai", "Not grouped" : "Nesugrupuotas", "New contact" : "Naujas kontaktas", "{addressbook} shared by {owner}" : "{owner} pasidalino {addressbook}", "Contact could not be created." : "Kontakto sukurti nepavyko.", "No contacts in file. Only VCard files are allowed." : "Kontaktų faile nėra. Galima naudoti tik VCard tipo failus.", "Only VCard version 4.0 (RFC6350) or version 3.0 (RFC2426) are supported." : "Tik VCard 4.0 (RFC6350) ir 3.0 (RFC2426) versijos yra palaikomos.", "Nickname" : "Slapyvardis", "Detailed name" : "Detalus pavadinimas", "Notes" : "Pastabos", "Website" : "Svetainė", "Federated Cloud ID" : "Viešo debesies ID", "Home" : "Namų", "Work" : "Darbas", "Other" : "Kita", "Groups" : "Grupės", "Birthday" : "Gimtadienis", "Anniversary" : "Sukaktis", "Date of death" : "Mirties data", "Email" : "El. Paštas", "Instant messaging" : "Tikralaikiai pokalbiai", "Phone" : "Telefonas", "Mobile" : "Mobilusis", "Fax" : "Faksas", "Fax home" : "Namų faksas", "Fax work" : "Darbo faksas", "Pager" : "Pranešimų gaviklis", "Voice" : "Balso", "Social network" : "Socialinis tinklas", "Settings" : "Nustatymai" },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);" } id.js 0000604 00000000456 15247100614 0005477 0 ustar 00 OC.L10N.register( "dav", { "Contact birthdays" : "Ulang tahun kontak", "Personal" : "Pribadi", "Contacts" : "Kontak", "Technical details" : "Rincian teknis", "Remote Address: %s" : "Alamat remote: %s", "Request ID: %s" : "ID Permintaan: %s" }, "nplurals=1; plural=0;"); sv.js 0000604 00000004655 15247100614 0005540 0 ustar 00 OC.L10N.register( "contacts", { "Contacts" : "Kontakter", "Download" : "Ladda ned", "ShowURL" : "Visa URL", "Share Addressbook" : "Dela Adressbok", "Delete Addressbook" : "Radera Adressbok", "Share with users or groups" : "Dela med användare eller grupper", "Delete" : "Radera", "can edit" : "kan redigera", "Address book name" : "Adressboknamn", "Import" : "Importera", "The selected image is too big (max 1MB)" : "Den valda bilden är för stor (max 1MB)", "No contacts in here" : "Det finns inga kontakter här", "Name" : "Namn", "Organization" : "Organisation", "Title" : "Rubrik", "Add field ..." : "Lägg till fält ...", "No search result for {query}" : "Inget sökresultat för {query}", "_%n contact_::_%n contacts_" : ["%n kontakter","%n kontakter"], "Post office box" : "Postbox", "Postal code" : "Postnummer", "City" : "Stad", "State or province" : "Län eller Kommun", "Country" : "Land", "Address" : "Adress", "(new group)" : "(ny grupp)", "Last name" : "Efternamn", "First name" : "Förnamn", "Additional names" : "Mellannamn", "Prefix" : "Prefix", "Suffix" : "Suffix", "All contacts" : "Alla kontakter", "Not grouped" : "Inte grupperad", "New contact" : "Ny kontakt", "{addressbook} shared by {owner}" : "{addressbook} delad av {owner}", "Contact could not be created." : "Kontakt kunde inte skapas", "No contacts in file. Only VCard files are allowed." : "Inga kontakter i filen. Bara VCard-filer är tillåtna.", "Only VCard version 4.0 (RFC6350) or version 3.0 (RFC2426) are supported." : "Endast VCard version 4.0 (RFC6350) eller version 3.0 (RFC2426) fungerar.", "Nickname" : "Smeknamn", "Detailed name" : "Detaljerat namn", "Notes" : "Anteckningar", "Website" : "Webbplats", "Federated Cloud ID" : "Federerat Moln-ID", "Home" : "Hem", "Work" : "Arbete", "Other" : "Övrigt", "Groups" : "Grupper", "Birthday" : "Födelsedag", "Anniversary" : "Födelsedag", "Date of death" : "Dödsdag", "Email" : "E-post", "Instant messaging" : "Snabbmeddelanden", "Phone" : "Telefon", "Mobile" : "Mobil", "Fax" : "Fax", "Fax home" : "Fax hem", "Fax work" : "Fax arbete", "Pager" : "Personsökare", "Voice" : "Röst", "Social network" : "Socialt nätverk", "Settings" : "Inställningar" }, "nplurals=2; plural=(n != 1);"); cs_CZ.json 0000604 00000005045 15247100614 0006440 0 ustar 00 { "translations": { "Contacts" : "Kontakty", "Download" : "Stáhnout", "ShowURL" : "Zobrazit URL", "Share Addressbook" : "Sdílet adresář", "Delete Addressbook" : "Smazat adresář", "Share with users or groups" : "Sdílet suživateli nebo skupinami", "Delete" : "Smazat", "can edit" : "Může upravovat", "Address book name" : "Název adresáře kontaktů", "Import" : "Importovat", "The selected image is too big (max 1MB)" : "Zvolený obrázek je příliš velký (max 1MB)", "No contacts in here" : "Nejsou zde žádné kontakty", "Name" : "Název", "Organization" : "Organizace", "Title" : "Název", "Add field ..." : "Přidat pole...", "No search result for {query}" : "Žádný nález pro {query}", "_%n contact_::_%n contacts_" : ["%n kontakt","%n kontakty","%n kontaktů"], "Post office box" : "Poštovní schránka", "Postal code" : "Směrovací číslo", "City" : "Město", "State or province" : "Stát nebo provincie", "Country" : "Země", "Address" : "Adresa", "(new group)" : "(nová skupina)", "Last name" : "Příjmení", "First name" : "Křestní jméno", "Additional names" : "Další jména", "Prefix" : "Předpona", "Suffix" : "Přípona", "All contacts" : "Všechny kontakty", "Not grouped" : "Neseskupené", "New contact" : "Nový kontakt", "{addressbook} shared by {owner}" : "{addressbook} sdílí {owner}", "Contact could not be created." : "Kontakt se nepodařilo vytvořit.", "No contacts in file. Only VCard files are allowed." : "Žádné kontakty v souboru. Pouze soubory vCard jsou povoleny.", "Only VCard version 4.0 (RFC6350) or version 3.0 (RFC2426) are supported." : "Jsou podporovány pouze Vcard verze 4.0 (RFC6350) nebo verze 3.0 (RFC2426).", "Nickname" : "Přezdívka", "Detailed name" : "Jméno podrobně", "Notes" : "Poznámky", "Website" : "Stránka", "Federated Cloud ID" : "Sdružené cloud ID", "Home" : "Domů", "Work" : "Práce", "Other" : "Jiný", "Groups" : "Skupiny", "Birthday" : "Narozeniny", "Anniversary" : "Výročí", "Date of death" : "Datum úmrtí", "Email" : "Email", "Instant messaging" : "Komunikátor", "Phone" : "Telefon", "Mobile" : "Mobil", "Fax" : "Fax", "Fax home" : "Fax domů", "Fax work" : "Fax do práce", "Pager" : "Pager", "Voice" : "Hlas", "Social network" : "Sociální síť", "Settings" : "Nastavení" },"pluralForm" :"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;" } pt_BR.json 0000604 00000005517 15247100614 0006451 0 ustar 00 { "translations": { "Contacts" : "Contatos", "Download" : "Baixar", "ShowURL" : "MostrarURL", "Share Addressbook" : "Compartilhar Livro de Endereços", "Delete Addressbook" : "Eliminar Livro de Endereços", "Share with users or groups" : "Compartilhar com usuários ou grupos", "Delete" : "Eliminar", "can edit" : "pode editar", "Address book name" : "Nome do livro de endereços", "Import" : "Importar", "The selected image is too big (max 1MB)" : "A imagem selecionada é grande demais (máximo 1MB)", "This card is corrupted and has been fixed. Please check the data and trigger a save to make the changes permanent." : "Este cartão está corrompido e foi corrigido. Verifique os dados e acione uma gravação para tornar as alterações permanentes.", "No contacts in here" : "Nenhum contato aqui", "Name" : "Nome", "Organization" : "Organização", "Title" : "Título", "Add field ..." : "Adicionar campo...", "Save changes" : "Salvar modificações", "No search result for {query}" : "Nenhum resultado de busca para {query}", "_%n contact_::_%n contacts_" : ["%n contato","%n contatos"], "Post office box" : "Caixa de correio", "Postal code" : "Código postal", "City" : "Cidade", "State or province" : "Estado ou província", "Country" : "País", "Address" : "Endereço", "(new group)" : "(novo grupo)", "Last name" : "Sobrenome", "First name" : "Primeiro nome", "Additional names" : "Nomes adicionais", "Prefix" : "Prefixo", "Suffix" : "Sufixo", "All contacts" : "Todos os contatos", "Not grouped" : "Não agrupado", "New contact" : "Novo contato", "{addressbook} shared by {owner}" : "{addressbook} compartilhado por {owner}", "Contact could not be created." : "O contato não pode ser criado.", "No contacts in file. Only VCard files are allowed." : "Nenhum contato em arquivo. Somente arquivos vCard são permitidos.", "Only VCard version 4.0 (RFC6350) or version 3.0 (RFC2426) are supported." : "Apenas VCard versão 4.0 (RFC 6350) ou versão 3.0 (RFC2426) são suportadas.", "Nickname" : "Apelido", "Detailed name" : "Nome detalhado", "Notes" : "Notas", "Website" : "Website", "Federated Cloud ID" : "ID de núvem Associada", "Home" : "Casa", "Work" : "Trabalho", "Other" : "Outro", "Groups" : "Grupos", "Birthday" : "Aniversário", "Anniversary" : "Aniversário", "Date of death" : "Data da morte", "Email" : "E-mail", "Instant messaging" : "Mensagem instantânea", "Phone" : "Telefone", "Mobile" : "Móvel", "Fax" : "Fax", "Fax home" : "Fax de casa", "Fax work" : "Fax do trabalho", "Pager" : "Pager", "Voice" : "Voz", "Social network" : "Rede social", "Settings" : "Configurações" },"pluralForm" :"nplurals=2; plural=(n > 1);" } es_AR.json 0000604 00000010602 15247100614 0006423 0 ustar 00 { "translations": { "Calendar" : "Calendario", "Todos" : "Pendientes", "{actor} created calendar {calendar}" : "{actor} creó el calendario {calendar}", "You created calendar {calendar}" : "Usted creó el calendario {calendar}", "{actor} deleted calendar {calendar}" : "{actor} borró el calendario {calendar}", "You deleted calendar {calendar}" : "Usted borró el calendario {calendar}", "{actor} updated calendar {calendar}" : "{actor} actualizó el calendario {calendar}", "You updated calendar {calendar}" : "Usted actualizó el calendario {calendar}", "{actor} shared calendar {calendar} with you" : "{actor} ha compartido el calendario {calendar} con usted", "You shared calendar {calendar} with {user}" : "Usted ha compartido el calendario {calendar} con {user}", "{actor} shared calendar {calendar} with {user}" : "{actor} compartió el calendario {calendar} con {user}", "{actor} unshared calendar {calendar} from you" : "{actor} ha dejado de compartir el calendario {calendar} con usted", "You unshared calendar {calendar} from {user}" : "Usted ha dejado de compartir el calendario {calendar} con {user}", "{actor} unshared calendar {calendar} from {user}" : "{actor} dejó de compartir el calendario {calendar} con {user}", "{actor} unshared calendar {calendar} from themselves" : "{actor} dejó de compartir {el calendario calendar} con él mismo", "You shared calendar {calendar} with group {group}" : "Usted ha compartido el calendario {calendar} con el grupo {group}", "{actor} shared calendar {calendar} with group {group}" : "{actor} compartió el calendario {calendar} con el grupo {group}", "You unshared calendar {calendar} from group {group}" : "Usted ha dejado de compartir el calendario {calendar} con el grupo {group}", "{actor} unshared calendar {calendar} from group {group}" : "{actor} dejó de compartir el calendrio {calendar} con el grupo {group}", "{actor} created event {event} in calendar {calendar}" : "{actor} creó el evento {event} en el calendario {calendar}", "You created event {event} in calendar {calendar}" : "Usted creó el evento {event} en el calendario {calendar}", "{actor} deleted event {event} from calendar {calendar}" : "{actor} borró el eventó {event} del calendario {calendar}", "You deleted event {event} from calendar {calendar}" : "Usted borró el evento {event} del calendario {calendar}", "{actor} updated event {event} in calendar {calendar}" : "{actor} actualizó el evento {event} en el calendario {calendar}", "You updated event {event} in calendar {calendar}" : "Usted actualizó el evento {event} en el calendario {calendar}", "{actor} created todo {todo} in list {calendar}" : "{actor} creó el pendiente {todo} en la lista {calendar}", "You created todo {todo} in list {calendar}" : "Usted creo el pendiente {todo} en la lista {calendar}", "{actor} deleted todo {todo} from list {calendar}" : "{actor} borró el pendiente {todo} de la lista {calendar}", "You deleted todo {todo} from list {calendar}" : "Usted borró el pendiente {todo} de la lista {calendar}", "{actor} updated todo {todo} in list {calendar}" : "{actor} actualizó el pendiente {todo} de la lista {calendar}", "You updated todo {todo} in list {calendar}" : "Usted actualizó el pendiente {todo} de la lista {calendar}", "{actor} solved todo {todo} in list {calendar}" : "{actor} resolvió el pendiente {todo} de la lista {calendar}", "You solved todo {todo} in list {calendar}" : "Usted resolvió el pendiente {todo} de la lista {calendar}", "{actor} reopened todo {todo} in list {calendar}" : "{actor} reabrió el pendiente {todo} de la lista{calendar}", "You reopened todo {todo} in list {calendar}" : "Usted reabrió el pendiente {todo} de la lista {calendar}", "A <strong>calendar</strong> was modified" : "Un <strong>calendario</strong> fue modificado", "A calendar <strong>event</strong> was modified" : "Un <strong>evento</strong> de un calendario fue modificado", "A calendar <strong>todo</strong> was modified" : "Un <strong>pendiente</strong> de un calendario fue modificado", "Contact birthdays" : "Cumpleaños del contacto", "Personal" : "Personal", "Contacts" : "Contactos", "Technical details" : "Detalles técnicos", "Remote Address: %s" : "Dirección remota: %s", "Request ID: %s" : "ID de solicitud: %s" },"pluralForm" :"nplurals=2; plural=(n != 1);" } fi_FI.json 0000604 00000004124 15247100614 0006410 0 ustar 00 { "translations": { "Contacts" : "Yhteystiedot", "Address book name" : "Osoitekirjan nimi", "Import" : "Tuo", "The selected image is too big (max 1MB)" : "Valittu kuva on liian suuri kooltaan (enintään 1 Mt)", "No contacts in here" : "Ei yhteytietoja", "Name" : "Nimi", "Organization" : "Organisaatio", "Title" : "Otsikko", "Add field ..." : "Lisää kenttä...", "No search result for {query}" : "Ei tuloksia haulle {query}", "_%n contact_::_%n contacts_" : ["%n yhteystieto","%n yhteystietoa"], "Post office box" : "Postilokero", "Postal code" : "Postinumero", "City" : "Paikkakunta", "State or province" : "Maakunta tai osavaltio", "Country" : "Maa", "Address" : "Osoite", "(new group)" : "(uusi ryhmä)", "Last name" : "Sukunimi", "First name" : "Etunimi", "Additional names" : "Lisänimet", "Prefix" : "Etuliite", "Suffix" : "Takaliite", "All contacts" : "Kaikki yhteystiedot", "Not grouped" : "Ei ryhmitelty", "New contact" : "Uusi yhteystieto", "{addressbook} shared by {owner}" : "Osoitekirjan {addressbook} jakoi {owner}", "Contact could not be created." : "Yhteystiedon luominen ei onnistunut.", "No contacts in file. Only VCard files are allowed." : "Ei yhteystietoja tiedostossa. Vain vCard-tiedostot ovat sallittuja.", "Nickname" : "Kutsumanimi", "Detailed name" : "Täsmällinen nimi", "Notes" : "Huomiot", "Website" : "Verkkosivusto", "Federated Cloud ID" : "Federoidun pilven tunniste", "Home" : "Koti", "Work" : "Työ", "Other" : "Muu", "Groups" : "Ryhmät", "Birthday" : "Syntymäpäivä", "Anniversary" : "Vuosipäivä", "Date of death" : "Kuolinpäivä", "Email" : "Sähköpostiosoite", "Instant messaging" : "Pikaviestintä", "Phone" : "Puhelin", "Mobile" : "Mobiili", "Fax" : "Faksi", "Fax home" : "Faksi, koti", "Fax work" : "Faksi, työ", "Pager" : "Hakulaite", "Voice" : "Ääni", "Social network" : "Sosiaalinen verkosto", "Settings" : "Asetukset" },"pluralForm" :"nplurals=2; plural=(n != 1);" } sk.json 0000604 00000010151 15247100614 0006046 0 ustar 00 { "translations": { "Calendar" : "Kalendár", "Todos" : "Úlohy", "{actor} created calendar {calendar}" : "[actor] vytvoril kalendár [calendar]", "You created calendar {calendar}" : "Vytvorili ste kalendár [calendar]", "{actor} deleted calendar {calendar}" : "[actor] zmazal kalendár [calendar]", "You deleted calendar {calendar}" : "Zmazali ste kalendár [calendar]", "{actor} updated calendar {calendar}" : "[actor] upravil kalendár [calendar]", "You updated calendar {calendar}" : "Upravili ste kalendár [calendar]", "{actor} shared calendar {calendar} with you" : "{actor} vám sprístupnil kalendár {calendar}", "You shared calendar {calendar} with {user}" : "Sprístupnili ste kalendár {calendar} s {user}", "{actor} shared calendar {calendar} with {user}" : "{actor} sprístupnil kalendár {calendar} s {user}", "{actor} unshared calendar {calendar} from you" : "{actor} vám prestal sprístupňovať kalendár {calendar}", "You unshared calendar {calendar} from {user}" : "Prestali ste sprístupňovať kalendár {calendar} od používateľa {user}", "{actor} unshared calendar {calendar} from {user}" : "{actor} zrušil zdieľanie kalendára {calendar} s používateľom {user}", "{actor} unshared calendar {calendar} from themselves" : "{actor} zrušil zdieľanie kalendára {calendar} so sebou samým", "You shared calendar {calendar} with group {group}" : "Sprístupnili ste kalendár {calendar} so skupinou {group}", "{actor} shared calendar {calendar} with group {group}" : "{actor} vyzdieľal kalendár {calendar} so skupinou {group}", "You unshared calendar {calendar} from group {group}" : "Zrušili ste zdieľanie kalendára {calendar} so skupinou {group}", "{actor} unshared calendar {calendar} from group {group}" : "{actor} zrušil zdieľanie kalendára {calendar} so skupinou {group}", "{actor} created event {event} in calendar {calendar}" : "{actor} vytvoril udalosť {event} v kalendári {calendar}", "You created event {event} in calendar {calendar}" : "Vytvorili ste udalosť [event] v kalendári [calendar]", "{actor} deleted event {event} from calendar {calendar}" : "[actor] zmazal udalosť [event] z kalendára [calendar]", "You deleted event {event} from calendar {calendar}" : "Zmazali ste udalosť [event] z kalendára [calendar]", "{actor} updated event {event} in calendar {calendar}" : "{actor} aktualizoval udalosť {event} v kalendári {calendar}", "You updated event {event} in calendar {calendar}" : "Aktualizovali ste udalosť {event} v kalendári {calendar}", "{actor} created todo {todo} in list {calendar}" : "{actor} vytvoril úlohu {todo} v {calendar}", "You created todo {todo} in list {calendar}" : "Vytvorili ste úlohu {todo} v {calendar}", "{actor} deleted todo {todo} from list {calendar}" : "{actor} zmazal úlohu {todo} z {calendar}", "You deleted todo {todo} from list {calendar}" : "Zmazali ste úlohu {todo} z {calendar}", "{actor} updated todo {todo} in list {calendar}" : "{actor} upravil úlohu {todo} v {calendar}", "You updated todo {todo} in list {calendar}" : "Upravili ste úlohu {todo} v {calendar}", "{actor} solved todo {todo} in list {calendar}" : "{actor} vyriešil úlohu {todo} v {calendar}", "You solved todo {todo} in list {calendar}" : "Vyriešili ste úlohu {todo} v {calendar}", "{actor} reopened todo {todo} in list {calendar}" : "{actor} znovu otvoril úlohu {todo} v {calendar}", "You reopened todo {todo} in list {calendar}" : "Otvorili ste znovu úlohu {todo} v {calendar}", "A <strong>calendar</strong> was modified" : "<strong>kalendár</strong> bol upravený", "A calendar <strong>event</strong> was modified" : "<strong>Udalosť</strong> v kalendári bola upravená", "A calendar <strong>todo</strong> was modified" : "<>", "Contact birthdays" : "Narodeniny kontaktu", "Personal" : "Osobné", "Contacts" : "Kontakty", "Technical details" : "Technické podrobnosti", "Remote Address: %s" : "Vzdialená adresa: %s", "Request ID: %s" : "ID požiadavky: %s" },"pluralForm" :"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;" } nl.json 0000604 00000005452 15247100614 0006052 0 ustar 00 { "translations": { "Contacts" : "Contactpersonen", "Download" : "Downloaden", "ShowURL" : "ShowURL", "Share Addressbook" : "Delen adresboek", "Delete Addressbook" : "Verwijderen adresboek", "Share with users or groups" : "Delen met gebruikers of groepen", "Delete" : "Verwijderen", "can edit" : "kan bewerken", "Address book name" : "Adresboek naam", "Import" : "Importeer", "The selected image is too big (max 1MB)" : "De geselecteerde afbeelding is te groot (max 1MB)", "This card is corrupted and has been fixed. Please check the data and trigger a save to make the changes permanent." : "Deze kaart is corrupt en weer hersteld. Controleer de gegevens en start het opslaan ervan om de wijzigingen permanent te maken.", "No contacts in here" : "Hier geen contactpersonen gevonden", "Name" : "Naam", "Organization" : "Organisatie", "Title" : "Titel", "Add field ..." : "Voeg veld toe", "Save changes" : "Wijzigingen bewaren", "No search result for {query}" : "Geen zoekresultaten voor {query}", "_%n contact_::_%n contacts_" : ["%n contactpersoon","%n contactpersonen"], "Post office box" : "Postbus", "Postal code" : "Postcode", "City" : "Stad", "State or province" : "Staat of provincie", "Country" : "Land", "Address" : "Adres", "(new group)" : "(nieuwe groep)", "Last name" : "Achternaam", "First name" : "Voornaam", "Additional names" : "Extra namen", "Prefix" : "Voorvoegsel", "Suffix" : "Achtervoegsel", "All contacts" : "Alle contactpersonen", "Not grouped" : "Niet gegroepeerd", "New contact" : "Nieuwe contactpersoon", "{addressbook} shared by {owner}" : "{addressbook} gedeeld door {owner}", "Contact could not be created." : "Contact kon niet worden aangemaakt.", "No contacts in file. Only VCard files are allowed." : "Geen contacten in bestand. Alleen VCard bestanden zijn toegestaan.", "Only VCard version 4.0 (RFC6350) or version 3.0 (RFC2426) are supported." : "Alleen VCard versie 4.0 (RFC6350) of versie 3.0 (RFC2426) worden ondersteund.", "Nickname" : "Roepnaam", "Detailed name" : "Gedetailleerde naam", "Notes" : "Notities", "Website" : "Website", "Federated Cloud ID" : "Gefedereerde Cloud ID", "Home" : "Thuis", "Work" : "Werk", "Other" : "Overig", "Groups" : "Groepen", "Birthday" : "Verjaardag", "Anniversary" : "Jubileum", "Date of death" : "Sterfdatum", "Email" : "mailadres", "Instant messaging" : "Instant messaging", "Phone" : "Telefoon", "Mobile" : "Mobiel", "Fax" : "Fax", "Fax home" : "Fax thuis", "Fax work" : "Fax werk", "Pager" : "Pieper", "Voice" : "Stem", "Social network" : "Social network", "Settings" : "Instellingen" },"pluralForm" :"nplurals=2; plural=(n != 1);" } hu_HU.json 0000604 00000005115 15247100614 0006445 0 ustar 00 { "translations": { "Contacts" : "Névjegyek", "Download" : "Letöltés", "ShowURL" : "URL megjelenítés", "Share Addressbook" : "Névjegyzék megosztás", "Delete Addressbook" : "Névjegyzék törlés", "Share with users or groups" : "Megosztás felhasználókkal vagy csoportokkal", "Delete" : "Törlés", "can edit" : "szerkesztheti", "Address book name" : "Címjegyzék neve", "Import" : "Importálás", "The selected image is too big (max 1MB)" : "A kiválasztott kép túl nagy (max. 1 MB)!", "No contacts in here" : "Nincsenek névjegyek", "Name" : "Név", "Organization" : "Szervezet", "Title" : "Cím", "Add field ..." : "Mező hozzáadása", "No search result for {query}" : "{query} keresésre nincs találat.", "_%n contact_::_%n contacts_" : ["%n névjegy","%n névjegy"], "Post office box" : "Postafiók", "Postal code" : "Irányítószám", "City" : "Város", "State or province" : "Megye vagy tartomány", "Country" : "Ország", "Address" : "Cím", "(new group)" : "(új csoport)", "Last name" : "Vezetéknév", "First name" : "Keresztnév", "Additional names" : "További nevek", "Prefix" : "Előtag", "Suffix" : "Utótag", "All contacts" : "Összes névjegy", "Not grouped" : "Nem csoportosított", "New contact" : "Új névjegy", "{addressbook} shared by {owner}" : "{addressbook} megosztója {owner}", "Contact could not be created." : "A névjegy nem hozható létre.", "No contacts in file. Only VCard files are allowed." : "A fájl nem tartalmaz névjegyeket. Kizárólag VCard fájlok engedélyezettek.", "Only VCard version 4.0 (RFC6350) or version 3.0 (RFC2426) are supported." : "Csak a VCard 4.0-ás (RFC6350) vagy a 3.0-ás verzió (RFC2426) támogatott", "Nickname" : "Becenév", "Detailed name" : "Részletes név", "Notes" : "Jegyzetek", "Website" : "Weboldal", "Federated Cloud ID" : "Egyesített Felhő Azonosító", "Home" : "Otthoni", "Work" : "Munkahelyi", "Other" : "más", "Groups" : "Csoportok", "Birthday" : "Születésap", "Anniversary" : "Évforduló", "Date of death" : "Halálozás dátuma", "Email" : "E-mail", "Instant messaging" : "Azonnali üzenetküldés", "Phone" : "Telefonszám", "Mobile" : "Mobil", "Fax" : "Fax", "Fax home" : "Otthoni fax", "Fax work" : "Munkahelyi fax", "Pager" : "Személyhívó", "Voice" : "Hang", "Social network" : "Közösségi hálózat", "Settings" : "Beállítások" },"pluralForm" :"nplurals=2; plural=(n != 1);" } el.js 0000604 00000005062 15247100614 0005501 0 ustar 00 OC.L10N.register( "contacts", { "Contacts" : "Επαφές", "Address book name" : "Όνομα βιβλίου διευθύνσεων", "Import" : "Εισαγωγή", "The selected image is too big (max 1MB)" : "Η επιλεγμένη εικόνα είναι πολύ μεγάλη (max 1MB)", "No contacts in here" : "Δεν υπάρχουν επαφές εδώ", "Name" : "Όνομα", "Organization" : "Οργανισμός", "Title" : "Τίτλος", "Add field ..." : "Προσθήκη πεδίου...", "No search result for {query}" : "Δεν βρέθηκε αποτέλεσμα αναζήτησης για {query}", "_%n contact_::_%n contacts_" : ["%n επαφή","%n επαφές"], "Post office box" : "Ταχυδρομική θυρίδα", "Postal code" : "Ταχυδρομικός Κωδικός", "City" : "Πόλη", "State or province" : "Νομός ή περιφέρεια", "Country" : "Χώρα", "Address" : "Διεύθυνση", "(new group)" : "(νέα ομάδα)", "Last name" : "Επώνυμο", "First name" : "Όνομα", "Additional names" : "Επιπλέον ονόματα", "Prefix" : "Πρόθεμα", "Suffix" : "Κατάληξη", "All contacts" : "Όλες οι επαφές", "Not grouped" : "Οχι ομαδοποιημένα", "New contact" : "Νέα επαφή", "{addressbook} shared by {owner}" : "Το {addressbook} διαμοιράστηκε από τον/την {owner}", "No contacts in file. Only VCard files are allowed." : "Δεν υπάρχουν επαφές σε αρχείο. Μόνο VCard αρχεία επιτρέπονται.", "Nickname" : "Παρατσούκλι", "Detailed name" : "Λεπτομερές όνομα", "Notes" : "Σημειώσεις", "Website" : "Ιστοσελίδα", "Federated Cloud ID" : "Federated Cloud ID", "Home" : "Σπίτι", "Work" : "Εργασία", "Other" : "Άλλο", "Groups" : "Ομάδες", "Birthday" : "Γενέθλια", "Date of death" : "Ημερομηνία θανάτου", "Email" : "Ηλ. ταχυδρομείο", "Instant messaging" : "Άμεσα μηνύματα", "Phone" : "Τηλέφωνο", "Mobile" : "Κινητό", "Fax" : "Φαξ", "Fax home" : "Φαξ σπίτι", "Fax work" : "Φαξ εργασία", "Pager" : "Βομβητής", "Voice" : "Ομιλία", "Social network" : "Κοινωνικό δίκτυο", "Settings" : "Ρυθμίσεις" }, "nplurals=2; plural=(n != 1);"); ko.json 0000604 00000002507 15247100614 0006050 0 ustar 00 { "translations": { "Contacts" : "연락처", "Address book name" : "주소록 이름", "Import" : "가져오기", "No contacts in here" : "여기에 연락처 없음", "Name" : "이름", "Organization" : "조직", "Title" : "제목", "Add field ..." : "필드 추가...", "Add contact" : "연락처 추가", "All contacts" : "모든 연락처", "Not grouped" : "그룹에 없음", "Postal code" : "우편 번호", "City" : "도시", "State or province" : "도 및 광역시", "Country" : "국가", "Address" : "주소", "Last name" : "성", "First name" : "이름", "Additional names" : "추가 이름", "New contact" : "새 연락처", "{addressbook} shared by {owner}" : "{owner} 님이 공유한 {addressbook}", "Nickname" : "별명", "Notes" : "메모", "Website" : "웹 사이트", "Federated Cloud ID" : "연합 클라우드 ID", "Home" : "가정", "Work" : "직장", "Other" : "기타", "Groups" : "그룹", "Birthday" : "생일", "Email" : "이메일", "Instant messaging" : "인스턴트 메시지", "Phone" : "전화 번호", "Mobile" : "휴대폰", "Fax" : "팩스 번호", "Pager" : "호출기", "Voice" : "음성 번호", "Settings" : "설정" },"pluralForm" :"nplurals=1; plural=0;" } fr.js 0000604 00000005557 15247100614 0005521 0 ustar 00 OC.L10N.register( "contacts", { "Contacts" : "Contacts", "Download" : "Télécharger", "ShowURL" : "Montrer l'URL", "Share Addressbook" : "Partager le carnet d'adresses", "Delete Addressbook" : "Supprimer le carnet d'adresses", "Share with users or groups" : "Partager avec des utilisateurs ou des groupes", "Delete" : "Supprimer", "can edit" : "peut modifier", "Address book name" : "Nom du carnet d'adresses", "Import" : "Importer", "The selected image is too big (max 1MB)" : "L'image sélectionnée est trop volumineuse (1 Mo max)", "This card is corrupted and has been fixed. Please check the data and trigger a save to make the changes permanent." : "Cette carte est corrompue et a été corrigée. Veuillez vérifier les données et lancer une sauvegarde pour rendre les changements permanents.", "No contacts in here" : "Aucun contact", "Name" : "Nom", "Organization" : "Société", "Title" : "Titre", "Add field ..." : "Ajouter un champ…", "Save changes" : "Sauvegarder les modifications", "No search result for {query}" : "Aucun résultat pour {query}", "_%n contact_::_%n contacts_" : ["%n contact","%n contacts"], "Post office box" : "Boîte postale", "Postal code" : "Code postal", "City" : "Ville", "State or province" : "État ou région", "Country" : "Pays", "Address" : "Adresse", "(new group)" : "(nouveau groupe)", "Last name" : "Nom", "First name" : "Prénom", "Additional names" : "Noms supplémentaires", "Prefix" : "Préfixe", "Suffix" : "Suffixe", "All contacts" : "Tous les contacts", "Not grouped" : "Non groupés", "New contact" : "Nouveau contact", "{addressbook} shared by {owner}" : "{addressbook} partagé par {owner}", "Contact could not be created." : "Ce contact n'a pu être créé.", "No contacts in file. Only VCard files are allowed." : "Aucun contact dans ce fichier. Seuls les fichiers VCard sont autorisés.", "Only VCard version 4.0 (RFC6350) or version 3.0 (RFC2426) are supported." : "Seules les VCard version 4.0 (RFC6350) ou version 3.0 (RFC2426) sont supportées.", "Nickname" : "Surnom", "Detailed name" : "Nom complet", "Notes" : "Notes", "Website" : "Site web", "Federated Cloud ID" : "Federated Cloud ID", "Home" : "Domicile", "Work" : "Travail", "Other" : "Autre", "Groups" : "Groupes", "Birthday" : "Anniversaire", "Anniversary" : "Autre date", "Date of death" : "Date de décès", "Email" : "Adresse de courriel", "Instant messaging" : "Messagerie instantanée", "Phone" : "Téléphone", "Mobile" : "Mobile", "Fax" : "Fax", "Fax home" : "Fax personnel", "Fax work" : "Fax pro", "Pager" : "Bipeur", "Voice" : "Voix", "Social network" : "Réseau social", "Settings" : "Paramètres" }, "nplurals=2; plural=(n > 1);"); en_GB.js 0000604 00000003713 15247100614 0006054 0 ustar 00 OC.L10N.register( "contacts", { "Contacts" : "Contacts", "Address book name" : "Address book name", "Import" : "Import", "The selected image is too big (max 1MB)" : "The selected image is too big (max 1MB)", "No contacts in here" : "No contacts in here", "Name" : "Name", "Organization" : "Organisation", "Title" : "Title", "Add field ..." : "Add field ...", "No search result for {query}" : "No search result for {query}", "_%n contact_::_%n contacts_" : ["%n contact","%n contacts"], "Post office box" : "Post office box", "Postal code" : "Postcode", "City" : "City", "State or province" : "State or province", "Country" : "Country", "Address" : "Address", "(new group)" : "(new group)", "Last name" : "Surname", "First name" : "First-name", "Additional names" : "Middle names", "Prefix" : "Prefix", "Suffix" : "Suffix", "All contacts" : "All contacts", "Not grouped" : "Not grouped", "New contact" : "New contact", "{addressbook} shared by {owner}" : "{addressbook} shared by {owner}", "Contact could not be created." : "Contact could not be created.", "No contacts in file. Only VCard files are allowed." : "No contacts in file. Only VCard files are allowed.", "Nickname" : "Nickname", "Detailed name" : "Detailed name", "Notes" : "Notes", "Website" : "Website", "Federated Cloud ID" : "Federated Cloud ID", "Home" : "Home", "Work" : "Work", "Other" : "Other", "Groups" : "Groups", "Birthday" : "Birthday", "Anniversary" : "Anniversary", "Date of death" : "Date of death", "Email" : "Email", "Instant messaging" : "Instant messaging", "Phone" : "Phone", "Mobile" : "Mobile", "Fax" : "Fax", "Fax home" : "Fax home", "Fax work" : "Fax work", "Pager" : "Pager", "Voice" : "Voice", "Social network" : "Social network", "Settings" : "Settings" }, "nplurals=2; plural=(n != 1);"); sv.json 0000604 00000004645 15247100614 0006074 0 ustar 00 { "translations": { "Contacts" : "Kontakter", "Download" : "Ladda ned", "ShowURL" : "Visa URL", "Share Addressbook" : "Dela Adressbok", "Delete Addressbook" : "Radera Adressbok", "Share with users or groups" : "Dela med användare eller grupper", "Delete" : "Radera", "can edit" : "kan redigera", "Address book name" : "Adressboknamn", "Import" : "Importera", "The selected image is too big (max 1MB)" : "Den valda bilden är för stor (max 1MB)", "No contacts in here" : "Det finns inga kontakter här", "Name" : "Namn", "Organization" : "Organisation", "Title" : "Rubrik", "Add field ..." : "Lägg till fält ...", "No search result for {query}" : "Inget sökresultat för {query}", "_%n contact_::_%n contacts_" : ["%n kontakter","%n kontakter"], "Post office box" : "Postbox", "Postal code" : "Postnummer", "City" : "Stad", "State or province" : "Län eller Kommun", "Country" : "Land", "Address" : "Adress", "(new group)" : "(ny grupp)", "Last name" : "Efternamn", "First name" : "Förnamn", "Additional names" : "Mellannamn", "Prefix" : "Prefix", "Suffix" : "Suffix", "All contacts" : "Alla kontakter", "Not grouped" : "Inte grupperad", "New contact" : "Ny kontakt", "{addressbook} shared by {owner}" : "{addressbook} delad av {owner}", "Contact could not be created." : "Kontakt kunde inte skapas", "No contacts in file. Only VCard files are allowed." : "Inga kontakter i filen. Bara VCard-filer är tillåtna.", "Only VCard version 4.0 (RFC6350) or version 3.0 (RFC2426) are supported." : "Endast VCard version 4.0 (RFC6350) eller version 3.0 (RFC2426) fungerar.", "Nickname" : "Smeknamn", "Detailed name" : "Detaljerat namn", "Notes" : "Anteckningar", "Website" : "Webbplats", "Federated Cloud ID" : "Federerat Moln-ID", "Home" : "Hem", "Work" : "Arbete", "Other" : "Övrigt", "Groups" : "Grupper", "Birthday" : "Födelsedag", "Anniversary" : "Födelsedag", "Date of death" : "Dödsdag", "Email" : "E-post", "Instant messaging" : "Snabbmeddelanden", "Phone" : "Telefon", "Mobile" : "Mobil", "Fax" : "Fax", "Fax home" : "Fax hem", "Fax work" : "Fax arbete", "Pager" : "Personsökare", "Voice" : "Röst", "Social network" : "Socialt nätverk", "Settings" : "Inställningar" },"pluralForm" :"nplurals=2; plural=(n != 1);" } it.js 0000604 00000005427 15247100614 0005522 0 ustar 00 OC.L10N.register( "contacts", { "Contacts" : "Contatti", "Download" : "Scarica", "ShowURL" : "Mostra URL", "Share Addressbook" : "Condividi rubrica", "Delete Addressbook" : "Elimina rubrica", "Share with users or groups" : "Condividi con utenti o gruppi", "Delete" : "Elimina", "can edit" : "può modificare", "Address book name" : "Nome della rubrica", "Import" : "Importa", "The selected image is too big (max 1MB)" : "L'immagine selezionata è troppo grande (max 1MB)", "This card is corrupted and has been fixed. Please check the data and trigger a save to make the changes permanent." : "Questa scheda è danneggiata e deve essere riparata. Controlla i dati ed esegui un salvataggio per rendere definitive le modifiche.", "No contacts in here" : "Nessun contatto qui", "Name" : "Nome", "Organization" : "Organizzazione", "Title" : "Titolo", "Add field ..." : "Aggiungi campo...", "Save changes" : "Salva le modifiche", "No search result for {query}" : "Nessun risultato di ricerca per {query}", "_%n contact_::_%n contacts_" : ["%n contatto","%n contatti"], "Post office box" : "Casella postale", "Postal code" : "CAP", "City" : "Città", "State or province" : "Stato o regione", "Country" : "Stato", "Address" : "Indirizzo", "(new group)" : "(nuovo gruppo)", "Last name" : "Cognome", "First name" : "Nome", "Additional names" : "Nomi aggiuntivi", "Prefix" : "Prefisso", "Suffix" : "Suffisso", "All contacts" : "Tutti i contatti", "Not grouped" : "Non raggruppati", "New contact" : "Nuovo contatto", "{addressbook} shared by {owner}" : "{addressbook} condivisa da {owner}", "Contact could not be created." : "Il contatto non può essere creato.", "No contacts in file. Only VCard files are allowed." : "Nessun contatto nel file. Sono consentiti solo file vCard.", "Only VCard version 4.0 (RFC6350) or version 3.0 (RFC2426) are supported." : "Sono supportate solo le versioni 4.0 (RFC6350) e 3.0 (RFC2426) di VCard.", "Nickname" : "Pseudonimo", "Detailed name" : "Nome dettagliato", "Notes" : "Note", "Website" : "Sito web", "Federated Cloud ID" : "ID di cloud federata", "Home" : "Home", "Work" : "Lavoro", "Other" : "Altro", "Groups" : "Gruppi", "Birthday" : "Compleanno", "Anniversary" : "Anniversario", "Date of death" : "Data di morte", "Email" : "Posta elettronica", "Instant messaging" : "Messaggistica istantanea", "Phone" : "Telefono", "Mobile" : "Cellulare", "Fax" : "Fax", "Fax home" : "Fax casa", "Fax work" : "Fax lavoro", "Pager" : "Cercapersone", "Voice" : "Voce", "Social network" : "Rete sociale", "Settings" : "Impostazioni" }, "nplurals=2; plural=(n != 1);"); ru.js 0000604 00000007572 15247100614 0005537 0 ustar 00 OC.L10N.register( "contacts", { "Contacts" : "Контакты", "Download" : "Скачать", "ShowURL" : "Показать URL", "Share Addressbook" : "Поделиться адресной книгой", "Delete Addressbook" : "Удалить адресную книгу", "Share with users or groups" : "Поделиться с пользователями или группами", "Delete" : "Удалить", "can edit" : "можно редактировать", "Address book name" : "Название адресной книги", "Import" : "Импорт", "The selected image is too big (max 1MB)" : "Выбранное изображение слишком велико (макс. 1 МБ)", "This card is corrupted and has been fixed. Please check the data and trigger a save to make the changes permanent." : "Эта поврежденная карточка была исправлена. Проверьте данные и выберете \"сохранить\" что бы зафиксировать изменения. ", "No contacts in here" : "Здесь нет контактов", "Name" : "Наименование контакта", "Organization" : "Организация", "Title" : "Должность", "Add field ..." : "Добавить поле ...", "Save changes" : "Сохранить изменения", "No search result for {query}" : "По запросу {query} ничего не найдено", "_%n contact_::_%n contacts_" : ["%n контакт","%n контакта","%n контактов","%n контактов"], "Post office box" : "Почтовый ящик", "Postal code" : "Почтовый индекс", "City" : "Город", "State or province" : "Область или район", "Country" : "Страна", "Address" : "Адрес", "(new group)" : "(новая группа)", "Last name" : "Фамилия", "First name" : "Имя", "Additional names" : "Отчество", "Prefix" : "Префикс", "Suffix" : "Суффикс", "All contacts" : "Все контакты", "Not grouped" : "Без группы", "New contact" : "Новый контакт", "{addressbook} shared by {owner}" : "{addressbook} поделился {owner}", "Contact could not be created." : "Не удалось создать контакт.", "No contacts in file. Only VCard files are allowed." : "В файле нет контактов. Допустимы только файлы формата VCard.", "Only VCard version 4.0 (RFC6350) or version 3.0 (RFC2426) are supported." : "Поддерживается только формат VCard версии 4.0 (RFC6350) или версии 3.0 (RFC2426).", "Nickname" : "Псевдоним", "Detailed name" : "Подробное имя", "Notes" : "Заметки", "Website" : "Сайт", "Federated Cloud ID" : "ID в объединении облачных хранилищ", "Home" : "Домашний", "Work" : "Рабочий", "Other" : "Другой", "Groups" : "Группы", "Birthday" : "День рождения", "Anniversary" : "Годовщина", "Date of death" : "Дата смерти", "Email" : "Эл. почта", "Instant messaging" : "Мгновенные сообщения", "Phone" : "Телефон", "Mobile" : "Мобильный", "Fax" : "Факс", "Fax home" : "Факс домашний", "Fax work" : "Факс рабочий", "Pager" : "Пейджер", "Voice" : "Голосовая почта", "Social network" : "Социальная сеть", "Settings" : "Настройки" }, "nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"); pl.js 0000604 00000004255 15247100614 0005517 0 ustar 00 OC.L10N.register( "contacts", { "Contacts" : "Kontakty", "Address book name" : "Nazwa książki adresowej", "Import" : "Importuj", "The selected image is too big (max 1MB)" : "Wybrany plik jest zbyt duży (maks. 1 MB)", "No contacts in here" : "Nie ma tu żadnych kontaktów", "Name" : "Nazwa", "Organization" : "Organizacja", "Title" : "Tytuł", "Add field ..." : "Dodaj pole ...", "No search result for {query}" : "Brak wyników wyszukiwania dla zapytania {query}", "_%n contact_::_%n contacts_" : ["%n kontakt","%n kontaktów","%n kontaktów"], "Post office box" : "Skrytka Pocztowa", "Postal code" : "Kod pocztowy", "City" : "Miasto", "State or province" : "Województwo ", "Country" : "Kraj", "Address" : "Adres", "(new group)" : "Nowa grupa", "Last name" : "Nazwisko", "First name" : "Imię", "Additional names" : "Dodatkowe nazwy", "Prefix" : "Przedrostek", "Suffix" : "Przyrostek", "All contacts" : "Wszystkie kontakty", "Not grouped" : "Nie zgrupowane", "New contact" : "Nowy kontakt", "{addressbook} shared by {owner}" : "Książka {addressbook} udostępniona przez {owner}", "Contact could not be created." : "Nie można utworzyć kontaktu", "No contacts in file. Only VCard files are allowed." : "Brak kontaktów w pliku. Dozwolone są tylko pliki VCard.", "Nickname" : "Nazwa", "Detailed name" : "Szczegółowa nazwa", "Notes" : "Notatki", "Website" : "Strona www", "Federated Cloud ID" : "ID chmury stowarzyszonej", "Home" : "Strona główna", "Work" : "Zawodowe", "Other" : "Inne", "Groups" : "Grupy", "Birthday" : "Urodziny", "Anniversary" : "Rocznica", "Date of death" : "Data śmierci", "Email" : "Email", "Instant messaging" : "Szybkie wiadomości", "Phone" : "Telefon", "Mobile" : "Komórka", "Fax" : "Faks", "Fax home" : "Faks domowy", "Fax work" : "Fakx pracowy", "Pager" : "Pager", "Voice" : "Połączenie głosowe", "Social network" : "Siec społecznościowa", "Settings" : "Ustawienia" }, "nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"); nb.js 0000604 00000010276 15247100614 0005503 0 ustar 00 OC.L10N.register( "dav", { "Calendar" : "Kalender", "Todos" : "Gjøremål", "{actor} created calendar {calendar}" : "{actor} opprettet kalenderen {calendar}", "You created calendar {calendar}" : "Du opprettet kalenderen {calendar}", "{actor} deleted calendar {calendar}" : "{actor} slettet kalenderen {calendar}", "You deleted calendar {calendar}" : "Du slettet kalenderen {calendar}", "{actor} updated calendar {calendar}" : "{actor} oppdaterte kalenderen {calendar}", "You updated calendar {calendar}" : "Du oppdaterte kalenderen {calendar}", "{actor} shared calendar {calendar} with you" : "{actor} delte kalenderen {calendar} med deg", "You shared calendar {calendar} with {user}" : "Du delte kalenderen {calendar} med {user}", "{actor} shared calendar {calendar} with {user}" : "{actor} delte kalenderen {calendar} med {user}", "{actor} unshared calendar {calendar} from you" : "{actor} fjernet delingen av kalenderen {calendar} med deg", "You unshared calendar {calendar} from {user}" : "Du fjernet delingen av kalender {calendar} med {user}", "{actor} unshared calendar {calendar} from {user}" : "{actor} fjernet delingen av kalender {calendar} med {user}", "{actor} unshared calendar {calendar} from themselves" : "{actor} fjernet delingen av kalender {calendar} med seg selv", "You shared calendar {calendar} with group {group}" : "Du delte kalender {calendar} med gruppe {group}", "{actor} shared calendar {calendar} with group {group}" : "{actor} delte kalenderen {calendar} med gruppe {group}", "You unshared calendar {calendar} from group {group}" : "Du fjernet deling av kalenderen {calendar} med gruppe {group}", "{actor} unshared calendar {calendar} from group {group}" : "{actor} fjernet deling av kalenderen {calendar} med gruppe {group}", "{actor} created event {event} in calendar {calendar}" : "{actor} opprettet en hendelse {event} i kalenderen {calendar}", "You created event {event} in calendar {calendar}" : "Du opprettet en hendelse {event} i kalenderen {calendar}", "{actor} deleted event {event} from calendar {calendar}" : "{actor} slettet hendelsen {event} fra kalenderen {calendar}", "You deleted event {event} from calendar {calendar}" : "Du slettet hendelsen {event} fra kalenderen {calendar}", "{actor} updated event {event} in calendar {calendar}" : "{actor} oppdaterte hendelsen {event} i kalenderen {calendar}", "You updated event {event} in calendar {calendar}" : "Du oppdaterte hendelsen {event} i kalenderen {calendar}", "{actor} created todo {todo} in list {calendar}" : "{actor} opprettet en oppgaven {todo} i listen {calendar}", "You created todo {todo} in list {calendar}" : "Du opprettet en oppgave {todo} i listen {calendar}", "{actor} deleted todo {todo} from list {calendar}" : "{actor} slettet gjøremålet {todo} fra listen {calendar}", "You deleted todo {todo} from list {calendar}" : "Du slettet gjøremålet {todo} fra listen {calendar}", "{actor} updated todo {todo} in list {calendar}" : "{actor} oppdaterte gjøremålet {todo} i listen {calendar}", "You updated todo {todo} in list {calendar}" : "Du oppdaterte gjøremålet {todo} i listen {calendar}", "{actor} solved todo {todo} in list {calendar}" : "{actor} ferdigstilte gjøremålet {todo} i listen {calendar}", "You solved todo {todo} in list {calendar}" : "Du ferdigstilte gjøremålet {todo} i listen {calendar}", "{actor} reopened todo {todo} in list {calendar}" : "{actor} gjenåpnet gjøremålet {todo} i listen {calendar}", "You reopened todo {todo} in list {calendar}" : "Du gjenåpnet oppgaven {todo} i listen {calendar}", "A <strong>calendar</strong> was modified" : "En <strong>kalender</strong> ble endret", "A calendar <strong>event</strong> was modified" : "En kalender <strong>hendelse</strong> ble endret", "A calendar <strong>todo</strong> was modified" : "En kalende <strong>gjøremål</strong> ble endret", "Contact birthdays" : "Kontakters fødelsdag", "Personal" : "Personlig", "Contacts" : "Kontakter", "Technical details" : "Tekniske detaljer", "Remote Address: %s" : "Ekstern adresse: %s", "Request ID: %s" : "Forespørsel ID: %s" }, "nplurals=2; plural=(n != 1);"); tr.js 0000604 00000004005 15247100614 0005522 0 ustar 00 OC.L10N.register( "contacts", { "Contacts" : "Kişiler", "Address book name" : "Adres defteri adı", "Import" : "Al", "The selected image is too big (max 1MB)" : "Seçilmiş görsel çok büyük (en fazla 1MB)", "No contacts in here" : "Henüz bir kişi yok", "Name" : "Ad", "Organization" : "Kurum", "Title" : "Başlık", "Add field ..." : "Alan ekle...", "No search result for {query}" : "{query} aramasından bir sonuç alınamadı", "_%n contact_::_%n contacts_" : ["%n kişi","%n kişi"], "Post office box" : "Posta kutusu", "Postal code" : "Posta kodu", "City" : "İlçe", "State or province" : "Şehir", "Country" : "Ülke", "Address" : "Adres", "(new group)" : "(yeni grup)", "Last name" : "Soyad", "First name" : "Ad", "Additional names" : "Ek adlar", "Prefix" : "Ön ek", "Suffix" : "Son ek", "All contacts" : "Tüm kişiler", "Not grouped" : "Gruplanmamış", "New contact" : "Yeni kişi", "{addressbook} shared by {owner}" : "{owner} tarafından paylaşılmış {addressbook}", "Contact could not be created." : "Kişi oluşturulamadı.", "No contacts in file. Only VCard files are allowed." : "Dosyada herhangi bir kişi yok. Yalnız vCard dosyaları kullanılabilir.", "Nickname" : "Kısaltma", "Detailed name" : "Ayrıntılı ad", "Notes" : "Notlar", "Website" : "Web sitesi", "Federated Cloud ID" : "Birleşmiş Bulut Kimliği", "Home" : "Ev", "Work" : "İş", "Other" : "Diğer", "Groups" : "Gruplar", "Birthday" : "Doğum günü", "Anniversary" : "Yıl dönümü", "Date of death" : "Ölüm tarihi", "Email" : "E-posta", "Instant messaging" : "Anlık iletişim", "Phone" : "Telefon", "Mobile" : "Cep telefonu", "Fax" : "Faks", "Fax home" : "Ev faksı", "Fax work" : "İş faksı", "Pager" : "Çağrı cihazı", "Voice" : "Ses", "Social network" : "Sosyal ağ", "Settings" : "Ayarlar" }, "nplurals=2; plural=(n > 1);"); bg_BG.json 0000604 00000005025 15247100614 0006375 0 ustar 00 { "translations": { "Contacts" : "Контакти", "Address book name" : "Име на адресна книга ", "Import" : "Внасяне", "The selected image is too big (max 1MB)" : "Избраното изображение е много голямо (до 1MB)", "No contacts in here" : "Тук няма контакти", "Name" : "Име", "Organization" : "Организация", "Title" : "Заглавие", "Add field ..." : "Добави поле ...", "No search result for {query}" : "Няма намерени резултати за {query}", "_%n contact_::_%n contacts_" : ["%n контакт","%n контакта"], "Post office box" : "Пощенска кутия", "Postal code" : "Пощенски код", "City" : "Град", "State or province" : "Област", "Country" : "Държава", "Address" : "Адрес", "(new group)" : "(нова група)", "Last name" : "Последно име", "First name" : "Първо име", "Additional names" : "Други имена", "Prefix" : "Представка", "Suffix" : "Наставка", "All contacts" : "Всички контакти", "Not grouped" : "Негрупирани", "New contact" : "Нов контакт", "{addressbook} shared by {owner}" : "{addressbook} споделена с {owner}", "Contact could not be created." : "Контакта не може да бъде създаден.", "No contacts in file. Only VCard files are allowed." : "Няма контакти във файла. Разрешени са само VCard файлове.", "Nickname" : "Псевдоним", "Detailed name" : "Детайлно име", "Notes" : "Бележки", "Website" : "Уеб страница", "Federated Cloud ID" : "Federated Cloud ID", "Home" : "Домашен", "Work" : "Работен", "Other" : "Друг...", "Groups" : "Групи", "Birthday" : "Рожден ден", "Anniversary" : "Годишнина", "Date of death" : "Дата на смърт", "Email" : "Имейл", "Instant messaging" : "Чат", "Phone" : "Телефон", "Mobile" : "Мобилен", "Fax" : "Факс", "Fax home" : "Факс домашен", "Fax work" : "Факс служебен", "Pager" : "Пейджър", "Voice" : "Гласов", "Social network" : "Социална мрежа", "Settings" : "Настройки" },"pluralForm" :"nplurals=2; plural=(n != 1);" } is.json 0000604 00000003564 15247100614 0006056 0 ustar 00 { "translations": { "Contacts" : "Tengiliðir", "Address book name" : "Heiti nafnaskrár", "Import" : "Flytja inn", "The selected image is too big (max 1MB)" : "Valin mynd er of stór (hám. 1MB)", "No contacts in here" : "Engir tengiliðir hér", "Name" : "Nafn", "Organization" : "Stofnun/félag", "Title" : "Titill", "Add field ..." : "Bæta við reit...", "No search result for {query}" : "Engar leitarniðurstöður fyrir {query}", "Post office box" : "Pósthólf", "Postal code" : "Póstnúmer", "City" : "Borg", "State or province" : "Ríki eða fylki", "Country" : "Land", "Address" : "Slóð", "(new group)" : "(nýr hópur)", "Last name" : "Eftirnafn", "First name" : "Eiginnafn", "Additional names" : "Aukanöfn", "Prefix" : "Forskeyti", "Suffix" : "Viðskeyti", "All contacts" : "Allir tengiliðir", "Not grouped" : "Ekki hópað", "New contact" : "Nýr tengiliður", "{addressbook} shared by {owner}" : "{addressbook} deilt af {owner}", "No contacts in file. Only VCard files are allowed." : "Engir tengiliðir í skrá. Einungis er tekið við VCard-skrám.", "Nickname" : "Gælunafn", "Detailed name" : "Ítarlegt nafn", "Notes" : "Minnispunktar", "Website" : "Vefsvæði", "Federated Cloud ID" : "Skýjasambandsauðkenni (Federated Cloud ID)", "Home" : "Heima", "Work" : "Vinna", "Other" : "Annað", "Groups" : "Hópar", "Birthday" : "Afmælisdagur", "Email" : "Netfang", "Instant messaging" : "Snarskilaboð", "Phone" : "Sími", "Mobile" : "Farsími", "Fax" : "Fax", "Fax home" : "Heimafax", "Fax work" : "Vinnufax", "Pager" : "Símboði", "Voice" : "Raddskilaboð", "Social network" : "Samfélagsnet", "Settings" : "Stillingar" },"pluralForm" :"nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);" } fr.json 0000604 00000005547 15247100614 0006055 0 ustar 00 { "translations": { "Contacts" : "Contacts", "Download" : "Télécharger", "ShowURL" : "Montrer l'URL", "Share Addressbook" : "Partager le carnet d'adresses", "Delete Addressbook" : "Supprimer le carnet d'adresses", "Share with users or groups" : "Partager avec des utilisateurs ou des groupes", "Delete" : "Supprimer", "can edit" : "peut modifier", "Address book name" : "Nom du carnet d'adresses", "Import" : "Importer", "The selected image is too big (max 1MB)" : "L'image sélectionnée est trop volumineuse (1 Mo max)", "This card is corrupted and has been fixed. Please check the data and trigger a save to make the changes permanent." : "Cette carte est corrompue et a été corrigée. Veuillez vérifier les données et lancer une sauvegarde pour rendre les changements permanents.", "No contacts in here" : "Aucun contact", "Name" : "Nom", "Organization" : "Société", "Title" : "Titre", "Add field ..." : "Ajouter un champ…", "Save changes" : "Sauvegarder les modifications", "No search result for {query}" : "Aucun résultat pour {query}", "_%n contact_::_%n contacts_" : ["%n contact","%n contacts"], "Post office box" : "Boîte postale", "Postal code" : "Code postal", "City" : "Ville", "State or province" : "État ou région", "Country" : "Pays", "Address" : "Adresse", "(new group)" : "(nouveau groupe)", "Last name" : "Nom", "First name" : "Prénom", "Additional names" : "Noms supplémentaires", "Prefix" : "Préfixe", "Suffix" : "Suffixe", "All contacts" : "Tous les contacts", "Not grouped" : "Non groupés", "New contact" : "Nouveau contact", "{addressbook} shared by {owner}" : "{addressbook} partagé par {owner}", "Contact could not be created." : "Ce contact n'a pu être créé.", "No contacts in file. Only VCard files are allowed." : "Aucun contact dans ce fichier. Seuls les fichiers VCard sont autorisés.", "Only VCard version 4.0 (RFC6350) or version 3.0 (RFC2426) are supported." : "Seules les VCard version 4.0 (RFC6350) ou version 3.0 (RFC2426) sont supportées.", "Nickname" : "Surnom", "Detailed name" : "Nom complet", "Notes" : "Notes", "Website" : "Site web", "Federated Cloud ID" : "Federated Cloud ID", "Home" : "Domicile", "Work" : "Travail", "Other" : "Autre", "Groups" : "Groupes", "Birthday" : "Anniversaire", "Anniversary" : "Autre date", "Date of death" : "Date de décès", "Email" : "Adresse de courriel", "Instant messaging" : "Messagerie instantanée", "Phone" : "Téléphone", "Mobile" : "Mobile", "Fax" : "Fax", "Fax home" : "Fax personnel", "Fax work" : "Fax pro", "Pager" : "Bipeur", "Voice" : "Voix", "Social network" : "Réseau social", "Settings" : "Paramètres" },"pluralForm" :"nplurals=2; plural=(n > 1);" } es.json 0000604 00000005537 15247100614 0006054 0 ustar 00 { "translations": { "Contacts" : "Contactos", "Download" : "Descargar", "ShowURL" : "Mostrar URL", "Share Addressbook" : "Compartir Lista de contactos", "Delete Addressbook" : "Borrar Lista de contactos", "Share with users or groups" : "Compartir con otros usuarios o grupos", "Delete" : "Eliminar", "can edit" : "puede editar", "Address book name" : "Nombre de libreta de direcciones", "Import" : "Importar", "The selected image is too big (max 1MB)" : "La imagen seleccionada es demasiada grande (máximo 1MB)", "This card is corrupted and has been fixed. Please check the data and trigger a save to make the changes permanent." : "Esta tarjeta esta corrupta y ha sido corregida. Por favor revise la información y ejecute guardar para hacer los cambios permanentes. ", "No contacts in here" : "No hay contactos aquí", "Name" : "Nombre", "Organization" : "Organización", "Title" : "Título", "Add field ..." : "Añadir campo ...", "Save changes" : "Guardar cambios", "No search result for {query}" : "Sin resultados para {query}", "_%n contact_::_%n contacts_" : ["%n contacto","%n contactos"], "Post office box" : "Apartado de correos", "Postal code" : "Código postal", "City" : "Ciudad", "State or province" : "Estado o provincia", "Country" : "País", "Address" : "Dirección", "(new group)" : "(nuevo grupo)", "Last name" : "Apellido", "First name" : "Nombre", "Additional names" : "Nombres adicionales", "Prefix" : "Prefijo", "Suffix" : "Sufijo", "All contacts" : "Todos los contactos", "Not grouped" : "No agrupado", "New contact" : "Nuevo contacto", "{addressbook} shared by {owner}" : "{addressbook} compartido por {owner}", "Contact could not be created." : "No se puede crear el contacto.", "No contacts in file. Only VCard files are allowed." : "No hay contactos en el archivo. Solamente se permiten archivos VCard.", "Only VCard version 4.0 (RFC6350) or version 3.0 (RFC2426) are supported." : "Solo las versiones VCard 4.0 (RFC6350) o 3.0 (RFC2426) son soportados.", "Nickname" : "Apodo", "Detailed name" : "Nombre", "Notes" : "Notas", "Website" : "Sitio web", "Federated Cloud ID" : "ID Nube Federada", "Home" : "Casa", "Work" : "Trabajo", "Other" : "Otro", "Groups" : "Grupos", "Birthday" : "Fecha de nacimiento", "Anniversary" : "Aniversario", "Date of death" : "Fecha de fallecimiento", "Email" : "Correo electrónico", "Instant messaging" : "Mensajería instantánea", "Phone" : "Teléfono", "Mobile" : "Móvil", "Fax" : "Fax", "Fax home" : "Fax hogareño", "Fax work" : "Fax del trabajo", "Pager" : "Localizador", "Voice" : "Voz", "Social network" : "Redes sociales", "Settings" : "Ajustes" },"pluralForm" :"nplurals=2; plural=(n != 1);" } ko.js 0000604 00000002517 15247100614 0005514 0 ustar 00 OC.L10N.register( "contacts", { "Contacts" : "연락처", "Address book name" : "주소록 이름", "Import" : "가져오기", "No contacts in here" : "여기에 연락처 없음", "Name" : "이름", "Organization" : "조직", "Title" : "제목", "Add field ..." : "필드 추가...", "Add contact" : "연락처 추가", "All contacts" : "모든 연락처", "Not grouped" : "그룹에 없음", "Postal code" : "우편 번호", "City" : "도시", "State or province" : "도 및 광역시", "Country" : "국가", "Address" : "주소", "Last name" : "성", "First name" : "이름", "Additional names" : "추가 이름", "New contact" : "새 연락처", "{addressbook} shared by {owner}" : "{owner} 님이 공유한 {addressbook}", "Nickname" : "별명", "Notes" : "메모", "Website" : "웹 사이트", "Federated Cloud ID" : "연합 클라우드 ID", "Home" : "가정", "Work" : "직장", "Other" : "기타", "Groups" : "그룹", "Birthday" : "생일", "Email" : "이메일", "Instant messaging" : "인스턴트 메시지", "Phone" : "전화 번호", "Mobile" : "휴대폰", "Fax" : "팩스 번호", "Pager" : "호출기", "Voice" : "음성 번호", "Settings" : "설정" }, "nplurals=1; plural=0;"); zh_TW.js 0000604 00000002621 15247100614 0006132 0 ustar 00 OC.L10N.register( "contacts", { "Contacts" : "通訊錄", "Address book name" : "通訊錄名稱", "Import" : "匯入", "No contacts in here" : "這裡沒有聯絡人", "Name" : "名稱", "Organization" : "組織", "Title" : "標題", "Add field ..." : "新增欄位…", "No search result for {query}" : "沒有結果符合 {query}", "Postal code" : "郵遞區號", "City" : "城市", "State or province" : "州或省", "Country" : "國家", "Address" : "網址", "(new group)" : "(新群組)", "Last name" : "姓氏", "First name" : "名子", "Additional names" : "別名", "All contacts" : "所有聯絡人", "Not grouped" : "不在群組裡", "New contact" : "新聯絡人", "{addressbook} shared by {owner}" : "{addressbook} 由 {owner} 分享", "Nickname" : "暱稱", "Notes" : "筆記", "Website" : "網站", "Federated Cloud ID" : "聯盟式雲端 ID", "Home" : "家目錄", "Work" : "工作", "Other" : "其他", "Groups" : "群組", "Birthday" : "生日", "Email" : "Email", "Instant messaging" : "即時通訊", "Phone" : "電話", "Mobile" : "行動電話", "Fax" : "傳真", "Fax home" : "傳真(家)", "Fax work" : "傳真(公司)", "Pager" : "呼叫器", "Voice" : "語音", "Settings" : "設定" }, "nplurals=1; plural=0;"); hu_HU.js 0000604 00000005125 15247100614 0006111 0 ustar 00 OC.L10N.register( "contacts", { "Contacts" : "Névjegyek", "Download" : "Letöltés", "ShowURL" : "URL megjelenítés", "Share Addressbook" : "Névjegyzék megosztás", "Delete Addressbook" : "Névjegyzék törlés", "Share with users or groups" : "Megosztás felhasználókkal vagy csoportokkal", "Delete" : "Törlés", "can edit" : "szerkesztheti", "Address book name" : "Címjegyzék neve", "Import" : "Importálás", "The selected image is too big (max 1MB)" : "A kiválasztott kép túl nagy (max. 1 MB)!", "No contacts in here" : "Nincsenek névjegyek", "Name" : "Név", "Organization" : "Szervezet", "Title" : "Cím", "Add field ..." : "Mező hozzáadása", "No search result for {query}" : "{query} keresésre nincs találat.", "_%n contact_::_%n contacts_" : ["%n névjegy","%n névjegy"], "Post office box" : "Postafiók", "Postal code" : "Irányítószám", "City" : "Város", "State or province" : "Megye vagy tartomány", "Country" : "Ország", "Address" : "Cím", "(new group)" : "(új csoport)", "Last name" : "Vezetéknév", "First name" : "Keresztnév", "Additional names" : "További nevek", "Prefix" : "Előtag", "Suffix" : "Utótag", "All contacts" : "Összes névjegy", "Not grouped" : "Nem csoportosított", "New contact" : "Új névjegy", "{addressbook} shared by {owner}" : "{addressbook} megosztója {owner}", "Contact could not be created." : "A névjegy nem hozható létre.", "No contacts in file. Only VCard files are allowed." : "A fájl nem tartalmaz névjegyeket. Kizárólag VCard fájlok engedélyezettek.", "Only VCard version 4.0 (RFC6350) or version 3.0 (RFC2426) are supported." : "Csak a VCard 4.0-ás (RFC6350) vagy a 3.0-ás verzió (RFC2426) támogatott", "Nickname" : "Becenév", "Detailed name" : "Részletes név", "Notes" : "Jegyzetek", "Website" : "Weboldal", "Federated Cloud ID" : "Egyesített Felhő Azonosító", "Home" : "Otthoni", "Work" : "Munkahelyi", "Other" : "más", "Groups" : "Csoportok", "Birthday" : "Születésap", "Anniversary" : "Évforduló", "Date of death" : "Halálozás dátuma", "Email" : "E-mail", "Instant messaging" : "Azonnali üzenetküldés", "Phone" : "Telefonszám", "Mobile" : "Mobil", "Fax" : "Fax", "Fax home" : "Otthoni fax", "Fax work" : "Munkahelyi fax", "Pager" : "Személyhívó", "Voice" : "Hang", "Social network" : "Közösségi hálózat", "Settings" : "Beállítások" }, "nplurals=2; plural=(n != 1);"); ro.json 0000604 00000003210 15247100614 0006047 0 ustar 00 { "translations": { "Contacts" : "Contacte", "Address book name" : "Numele listă de contacte", "Import" : "Importă", "The selected image is too big (max 1MB)" : "Imaginea selectată este prea mare (maxim 1 MB)", "No contacts in here" : "Niciun contact aici", "Name" : "Nume", "Organization" : "Organizație", "Title" : "Titlu", "Add field ..." : "Adaugă câmp ...", "No search result for {query}" : "Niciun rezultat pentru {query}", "Postal code" : "Codul poștal", "City" : "Oraș", "State or province" : "Județ sau provincie", "Country" : "Țară", "Address" : "Adresă", "(new group)" : "(grup nou)", "Last name" : "Nume", "First name" : "Prenume", "All contacts" : "Toate contactele", "Not grouped" : "Negrupate", "New contact" : "Contact nou ", "{addressbook} shared by {owner}" : "{addressbook} partajat de {owner}", "No contacts in file. Only VCard files are allowed." : "Niciun contact în fișier. Doar fișiere VCard sunt suportate.", "Nickname" : "Pseudonim", "Notes" : "Notă", "Website" : "Website", "Federated Cloud ID" : "Federated Cloud ID", "Home" : "Acasă", "Work" : "Serviciu", "Other" : "Altele", "Groups" : "Grupuri", "Birthday" : "Zi de naștere", "Email" : "Email", "Instant messaging" : "Mesagerie instantă", "Phone" : "Telefon", "Mobile" : "Mobil", "Fax" : "Fax", "Fax home" : "Fax - acasă", "Fax work" : "Fax - serviciu", "Pager" : "Pager", "Voice" : "Voce", "Settings" : "Setări" },"pluralForm" :"nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));" } sq.js 0000604 00000005010 15247100614 0005515 0 ustar 00 OC.L10N.register( "contacts", { "Contacts" : "Kontaktet", "Download" : "Shkarko", "ShowURL" : "Shfaq URL", "Share Addressbook" : "Ndaj Librin e Adresave", "Delete Addressbook" : "Fshij Librin e Adresave", "Share with users or groups" : "Nda me përdoruesit ose grupet", "Delete" : "Fshije", "can edit" : "mund të modifikoni", "Address book name" : "Emër libri adresash", "Import" : "Importoje", "The selected image is too big (max 1MB)" : "Figura e përzgjedhur është shumë e madhe (maksimumi 1MB)", "No contacts in here" : "S’ka kontakte këtu", "Name" : "Emër", "Organization" : "Organizim", "Title" : "Titull", "Add field ..." : "Shtoni fushë...", "No search result for {query}" : "Nuk pati rezultate kërkimi për {query}", "_%n contact_::_%n contacts_" : ["%n kontakt","%n kontakte"], "Post office box" : "Kuti postare në postë", "Postal code" : "Kod postar", "City" : "Qytet", "State or province" : "Shtet ose provincë", "Country" : "Vend", "Address" : "Adresë", "(new group)" : "(grup i ri)", "Last name" : "Mbiemër", "First name" : "Emër", "Additional names" : "Emra shtesë", "Prefix" : "Parashtesë", "Suffix" : "Prapashtesë", "All contacts" : "Të gjithë kontaktet", "Not grouped" : "I pagrupuar", "New contact" : "Kontakt i ri", "{addressbook} shared by {owner}" : "{addressbook} ndarë nga {owner}", "Contact could not be created." : "Kontakti nuk u krijua dot.", "No contacts in file. Only VCard files are allowed." : "S’ka kontakte në kartelë. Lejohen vetëm kartela VCard.", "Only VCard version 4.0 (RFC6350) or version 3.0 (RFC2426) are supported." : "Suportohen vetëm VCard versioni 4.0 (RFC6350) ose versioni 3.0 (RFC2426)", "Nickname" : "Nofkë", "Detailed name" : "Emri i hollësishëm", "Notes" : "Shënime", "Website" : "Sajt", "Federated Cloud ID" : "ID Federated Cloud", "Home" : "Kreu", "Work" : "Punë", "Other" : "Tjetër", "Groups" : "Grupe", "Birthday" : "Datëlindje", "Anniversary" : "Përvjetor", "Date of death" : "Datë vdekjeje", "Email" : "Email", "Instant messaging" : "Shkëmbim i atypëratyshëm mesazhesh", "Phone" : "Telefon", "Mobile" : "Celular", "Fax" : "Faks", "Fax home" : "Faks shtëpie", "Fax work" : "Faks pune", "Pager" : "Faques", "Voice" : "Zë", "Social network" : "Rrjet social", "Settings" : "Konfigurime" }, "nplurals=2; plural=(n != 1);"); .gitkeep 0000604 00000000000 15247100614 0006157 0 ustar 00 zh_CN.js 0000604 00000004546 15247100614 0006110 0 ustar 00 OC.L10N.register( "contacts", { "Contacts" : "联系人", "Download" : "下载", "ShowURL" : "显示URL", "Share Addressbook" : "分享地址簿", "Delete Addressbook" : "删除地址簿", "Share with users or groups" : "和用户或者组群分享", "Delete" : "删除", "can edit" : "允许编辑", "Address book name" : "地址簿名称", "Import" : "导入", "The selected image is too big (max 1MB)" : "所选图片过大(最大1MB)", "No contacts in here" : "没有联系人", "Name" : "名称", "Organization" : "组织", "Title" : "头衔", "Add field ..." : "添加字段", "Save changes" : "保存更改", "No search result for {query}" : "未找到结果{query}", "_%n contact_::_%n contacts_" : ["%n 位联系人"], "Post office box" : "邮政信箱", "Postal code" : "邮政编码", "City" : "城市", "State or province" : "州/省", "Country" : "国家", "Address" : "地址", "(new group)" : "(新建群组)", "Last name" : "姓", "First name" : "名", "Additional names" : "其他名称", "Prefix" : "前缀", "Suffix" : "后缀", "All contacts" : "全部联系人", "Not grouped" : "未分组", "New contact" : "新建联系人", "{addressbook} shared by {owner}" : "由 {owner} 共享给您的 {addressbook}", "Contact could not be created." : "无法创建联系人。", "No contacts in file. Only VCard files are allowed." : "没有发现联系人信息。只允许VCard格式文件.", "Only VCard version 4.0 (RFC6350) or version 3.0 (RFC2426) are supported." : "仅支持 VCard 4.0 版 (RFC6350) 或者 3.0 版 (RFC2426) 。", "Nickname" : "昵称", "Detailed name" : "全名", "Notes" : "说明", "Website" : "网站", "Federated Cloud ID" : "联合云ID", "Home" : "家庭", "Work" : "工作", "Other" : "其它", "Groups" : "群组", "Birthday" : "生日", "Anniversary" : "周年", "Date of death" : "去世日期", "Email" : "电子邮件", "Instant messaging" : "即时通讯", "Phone" : "电话", "Mobile" : "手机", "Fax" : "传真", "Fax home" : "家庭传真", "Fax work" : "工作传真", "Pager" : "传呼机", "Voice" : "语音", "Social network" : "社交网络", "Settings" : "设置" }, "nplurals=1; plural=0;"); eu.js 0000604 00000004075 15247116035 0005521 0 ustar 00 OC.L10N.register( "contacts", { "Contacts" : "Kontaktuak", "Address book name" : "Agenda izena", "Import" : "Inportatu", "The selected image is too big (max 1MB)" : "Aukeratutako irudia handiegia da (max 1MB)", "No contacts in here" : "Kontakturik ez dago", "Name" : "Izena", "Organization" : "Erakundea", "Title" : "Izenburua", "Add field ..." : "Eremua gehitu...", "No search result for {query}" : "{query} bilaketak ez du emaitzarik heman", "_%n contact_::_%n contacts_" : ["Kontaktu %n","%n kontaktu"], "Post office box" : "Posta kutxatila", "Postal code" : "Posta kodea", "City" : "Hiria", "State or province" : "Estatu edo probintzia", "Country" : "Herrialdea", "Address" : "Helbidea", "(new group)" : "(talde berria)", "Last name" : "Abizena", "First name" : "Izena", "Additional names" : "Tarteko izenak", "Prefix" : "Aurrizkia", "Suffix" : "Atzizkia", "All contacts" : "Kontaktu guztiak", "Not grouped" : "Taldekatu gabe", "New contact" : "Kontaktu berria", "{addressbook} shared by {owner}" : "{addressbook} shared by {owner}", "Contact could not be created." : "Kontaktua ezin izan da sortu.", "No contacts in file. Only VCard files are allowed." : "Fitxategian kontakturik ez dago. VCard fitxategiak onartzen dira bakarrik.", "Nickname" : "Ezizena", "Detailed name" : "Izen osoa", "Notes" : "Oharrak", "Website" : "Webgunea", "Federated Cloud ID" : "Federatutatako Hodei ID", "Home" : "Etxekoa", "Work" : "Lanekoa", "Other" : "Bestelakoa", "Groups" : "Taldeak", "Birthday" : "Jaioteguna", "Anniversary" : "Urteurrena", "Date of death" : "Heriotze data", "Email" : "E-posta", "Instant messaging" : "Istanteko mezularitza", "Phone" : "Telefonoa", "Mobile" : "Mugikorra", "Fax" : "Faxa", "Fax home" : "Etxeko Faxa", "Fax work" : "Laneko faxa", "Pager" : "Bilagailua", "Voice" : "Ahotsa", "Social network" : "Sare soziala", "Settings" : "Ezarpenak" }, "nplurals=2; plural=(n != 1);"); sk_SK.json 0000604 00000005121 15247116035 0006450 0 ustar 00 { "translations": { "Contacts" : "Kontakty", "Download" : "Stiahnuť", "ShowURL" : "Zobraziť URL", "Share Addressbook" : "Sprístupniť adresár", "Delete Addressbook" : "Zmazať adresár", "Share with users or groups" : "Sprístupniť používateľom alebo skupinám", "Delete" : "Zmazať", "can edit" : "môže upraviť", "Address book name" : "Názov adresára kontaktov", "Import" : "Import", "The selected image is too big (max 1MB)" : "Vybraný obrázok je príliš veľký (max 1MB)", "No contacts in here" : "Nie sú tu žiadne kontakty", "Name" : "Názov", "Organization" : "Organizácia", "Title" : "Názov", "Add field ..." : "Pridať pole ...", "No search result for {query}" : "Žiadne výsledky vyhľadávania pre {query}", "_%n contact_::_%n contacts_" : ["%n kontakt","%n kontaktov","%n kontaktov"], "Post office box" : "Poštová adresa", "Postal code" : "PSČ", "City" : "Mesto", "State or province" : "Štát alebo oblasť", "Country" : "Krajina", "Address" : "Adresa", "(new group)" : "(nová skupina)", "Last name" : "Priezvisko", "First name" : "Krstné meno", "Additional names" : "Ďalšie mená", "Prefix" : "Titul pred menom", "Suffix" : "Titul po mene", "All contacts" : "Všetky kontakty", "Not grouped" : "Bez skupiny", "New contact" : "Nový kontakt", "{addressbook} shared by {owner}" : "{addressbook} sprístupňuje {owner}", "Contact could not be created." : "Kontakt nieje možné vytvoriť", "No contacts in file. Only VCard files are allowed." : "Žiadne kontakty v súbore. Len VCard súbory sú povolené.", "Only VCard version 4.0 (RFC6350) or version 3.0 (RFC2426) are supported." : "Podporované sú iba formáty VCard verzie 4.0 (RFC6350) alebo verzie 3.0 (RFC2426).", "Nickname" : "Prezývka", "Detailed name" : "Podrobné meno", "Notes" : "Poznámky", "Website" : "Webstránka", "Federated Cloud ID" : "Združené Cloud ID", "Home" : "Domov", "Work" : "Práca", "Other" : "Iné", "Groups" : "Skupiny", "Birthday" : "Narodeniny", "Anniversary" : "Výročie", "Date of death" : "Dátum smrti", "Email" : "Email", "Instant messaging" : "Instant messaging", "Phone" : "Telefón", "Mobile" : "Mobil", "Fax" : "Fax", "Fax home" : "Fax doma", "Fax work" : "Fax v práci", "Pager" : "Pager", "Voice" : "Odkazová schránka", "Social network" : "Sociálna sieť", "Settings" : "Nastavenia" },"pluralForm" :"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;" } th_TH.js 0000604 00000006440 15247116035 0006114 0 ustar 00 OC.L10N.register( "contacts", { "Contacts" : "ข้อมูลผู้ติดต่อ", "Address book name" : "สมุดชื่อที่อยู่", "Import" : "นำเข้า", "The selected image is too big (max 1MB)" : "รูปภาพที่เลือกมีขนาดใหญ่เกินไป (ขนาดไม่ควรเกิน 1 เมกะไบต์)", "No contacts in here" : "ไม่มีรายชื่อในที่นี่", "Name" : "ชื่อ", "Organization" : "หน่วยงาน", "Title" : "ชื่อเรื่อง", "Add field ..." : "เพิ่มช่อง ...", "No search result for {query}" : "ไม่พบผลลัพธ์การค้นหาสำหรับ {query}", "_%n contact_::_%n contacts_" : ["%n รายชื่อผู้ติดต่อ"], "Post office box" : "กล่องจดหมาย", "Postal code" : "รหัสไปรษณีย์", "City" : "เมือง", "State or province" : "รัฐหรือจังหวัด", "Country" : "ประเทศ", "Address" : "ที่อยู่", "(new group)" : "(กลุ่มใหม่)", "Last name" : "นามสกุลจริง", "First name" : "ชื่อจริง", "Additional names" : "ชื่ออื่นๆ", "Prefix" : "คำนำหน้า", "Suffix" : "คำต่อท้าย", "All contacts" : "รายชื่อทั้งหมด", "Not grouped" : "ไม่ถูกจัดกลุ่ม", "New contact" : "รายชื่อผุ้ติดต่อใหม่", "{addressbook} shared by {owner}" : "{addressbook} ถูกแชร์โดย {owner}", "Contact could not be created." : "ไม่สามารถสร้างรายชื่อผู้ติดต่อ", "No contacts in file. Only VCard files are allowed." : "ไม่มีรายชื่อในไฟล์ เฉพาะไฟล์วีการ์ดจะได้รับอนุญาต", "Nickname" : "ชื่อเล่น", "Detailed name" : "รายละเอียดชื่อ", "Notes" : "บันทึกย่อ", "Website" : "เว็บไซต์", "Federated Cloud ID" : "ไอดีคลาวด์ในเครือ", "Home" : "บ้าน", "Work" : "ที่ทำงาน", "Other" : "อื่นๆ", "Groups" : "กลุ่ม", "Birthday" : "วันเกิด", "Anniversary" : "วันครบรอบ", "Date of death" : "วันที่สิ้นสุด", "Email" : "อีเมล", "Instant messaging" : "ส่งข้อความโต้ตอบแบบทันที", "Phone" : "โทรศัพท์", "Mobile" : "มือถือ", "Fax" : "โทรสาร", "Fax home" : "แฟกซ์ที่บ้าน", "Fax work" : "แฟกซ์ที่ทำงาน", "Pager" : "เพจเจอร์", "Voice" : "เสียงพูด", "Social network" : "เครือข่ายทางสังคม", "Settings" : "ตั้งค่า" }, "nplurals=1; plural=0;"); ca.json 0000604 00000005013 15247116035 0006021 0 ustar 00 { "translations": { "Contacts" : "Contactes", "Download" : "Baixa", "ShowURL" : "Mostra URL", "Share Addressbook" : "Comparteix llibre d'adreces", "Delete Addressbook" : "Suprimeix llibreta d'adreces", "Share with users or groups" : "Comparteix amb usuaris o grups", "Delete" : "Suprimeix", "can edit" : "pot editar", "Address book name" : "Nom de la llibreta d'adreces", "Import" : "Importar", "The selected image is too big (max 1MB)" : "La imatge seleccionada és massa gran (màxim 1MB)", "No contacts in here" : "No hi ha contactes", "Name" : "Nom", "Organization" : "Organització", "Title" : "Títol", "Add field ..." : "Afegeix camp...", "No search result for {query}" : "No s'han trobat resultats per {query}", "_%n contact_::_%n contacts_" : ["%n contactes","%n contactes"], "Post office box" : "Apartat de Correus", "Postal code" : "Codi postal", "City" : "Ciutat", "State or province" : "Estat o província", "Country" : "País", "Address" : "Adreça", "(new group)" : "(grup nou)", "Last name" : "Cognom", "First name" : "Nom", "Additional names" : "Noms addicionals", "Prefix" : "Prefix", "Suffix" : "Sufix", "All contacts" : "Tots els contactes", "Not grouped" : "Sense grup", "New contact" : "Contacte nou", "{addressbook} shared by {owner}" : "{addressbook} compartida per {owner}", "Contact could not be created." : "No s'ha pogut crear el contacte.", "No contacts in file. Only VCard files are allowed." : "No hi ha contactes al fitxer. Només s'accepten fitxers en format VCard.", "Only VCard version 4.0 (RFC6350) or version 3.0 (RFC2426) are supported." : "Només compatible amb VCard versió 4.0 (RFC6350) o versió 3.0 (RFC2426).", "Nickname" : "Sobrenom", "Detailed name" : "Nom detallat", "Notes" : "Anotacions", "Website" : "Pàgina web", "Federated Cloud ID" : "ID de núvol federat", "Home" : "Casa", "Work" : "Feina", "Other" : "Un altre", "Groups" : "Grups", "Birthday" : "Aniversari", "Anniversary" : "Aniversari", "Date of death" : "Data de la mort", "Email" : "Correu electrònic", "Instant messaging" : "Missatgeria instantània", "Phone" : "Telèfon", "Mobile" : "Mòbil", "Fax" : "Fax", "Fax home" : "Fax (casa)", "Fax work" : "Fax (feina)", "Pager" : "Paginador", "Voice" : "Veu", "Social network" : "Xarxa social", "Settings" : "configuració" },"pluralForm" :"nplurals=2; plural=(n != 1);" } et_EE.json 0000604 00000003572 15247116035 0006427 0 ustar 00 { "translations": { "Contacts" : "Kontaktid", "Address book name" : "Aadressiraamatu nimi", "Import" : "Impordi", "The selected image is too big (max 1MB)" : "Valitud pilt on liiga suur (maks 1MB)", "No contacts in here" : "Ühtegi kontakti pole", "Name" : "Nimi", "Organization" : "Organisatsioon", "Title" : "Pealkiri", "Add field ..." : "Lisa väli ...", "No search result for {query}" : "Otsingutulemused sõnadele {query}", "Post office box" : "Postkast", "Postal code" : "Postiindeks", "City" : "Linn", "State or province" : "Maakond", "Country" : "Riik", "Address" : "Aadress", "(new group)" : "(uus grupps)", "Last name" : "Perekonnanimi", "First name" : "Eesnimi", "Additional names" : "Lisanimed", "Prefix" : "Eesliide", "Suffix" : "Järelliide", "All contacts" : "Kõik kontaktid", "Not grouped" : "Pole grupeeritud", "New contact" : "Uus kontakt", "{addressbook} shared by {owner}" : "{owner} jagas aadressiraamatut {addressbook}", "Contact could not be created." : "Kontakti loomine ebaõnnestus.", "No contacts in file. Only VCard files are allowed." : "Failis pole kontakte. Lubatud on ainult VCard.", "Nickname" : "Hüüdnimi", "Detailed name" : "Üksikasjalik nimi", "Notes" : "Märkmed", "Website" : "Veebileht", "Home" : "Kodu", "Work" : "Töö", "Other" : "Muu", "Groups" : "Grupid", "Birthday" : "Sünnipäev", "Anniversary" : "Aastapäev", "Date of death" : "Surma kuupäev", "Email" : "E-post", "Instant messaging" : "Kiirõnumid", "Phone" : "Telefon", "Mobile" : "Mobiil", "Fax" : "Faks", "Fax home" : "Faks kodus", "Fax work" : "Faks tööl", "Pager" : "Piipar", "Voice" : "Hääl", "Social network" : "Sotsiaalvõrk", "Settings" : "Seaded" },"pluralForm" :"nplurals=2; plural=(n != 1);" } uk.js 0000604 00000006452 15247116035 0005530 0 ustar 00 OC.L10N.register( "contacts", { "Contacts" : "Контакти", "Download" : "Завантажити", "ShowURL" : "Показати URL", "Share Addressbook" : "Поділитися адресною книгою", "Delete Addressbook" : "Видалити адресну книгу", "Share with users or groups" : "Поділитися з користувачем або групою", "Delete" : "Видалити", "can edit" : "може редагувати", "Address book name" : "Назва адресної книги", "Import" : "Імпорт", "The selected image is too big (max 1MB)" : "Обране зображення занадто велике (1МБ max)", "No contacts in here" : "Тут немає контактів", "Name" : "Ім’я", "Organization" : "Організація", "Title" : "Назва", "Add field ..." : "Додати поле...", "No search result for {query}" : "Немає результатів пошуку для {query}", "_%n contact_::_%n contacts_" : ["%n контакт","%n контактів","%n контактів"], "Post office box" : "Абонентська скринька", "Postal code" : "Поштовий індекс", "City" : "Місто", "State or province" : "Область або район", "Country" : "Країна", "Address" : "Адреса", "(new group)" : "(нова група)", "Last name" : "Прізвище", "First name" : "Ім'я", "Additional names" : "Додаткові імена", "Prefix" : "Префікс", "Suffix" : "Суфікс", "All contacts" : "Всі контакти", "Not grouped" : "Не згруповані", "New contact" : "Новий контакт", "{addressbook} shared by {owner}" : "{owner} поділився {addressbook}", "Contact could not be created." : "Неможливо створити контакт.", "No contacts in file. Only VCard files are allowed." : "Відсутні контакти в фалі. Дозволено лише VCard.", "Only VCard version 4.0 (RFC6350) or version 3.0 (RFC2426) are supported." : "Підтримується лише VCard версії 4.0 (RFC6350) або версії 3.0 (RFC2426).", "Nickname" : "Прізвисько", "Detailed name" : "Повне ім'я", "Notes" : "Нотатки", "Website" : "Web-сайт", "Federated Cloud ID" : "Об'єднаний Хмарний Ідентіфікатор", "Home" : "Домашня адреса", "Work" : "Робота", "Other" : "Інше", "Groups" : "Групи", "Birthday" : "День народження", "Anniversary" : "Річниця", "Date of death" : "Дата смерті", "Email" : "E-mail", "Instant messaging" : "Швидкі повідомлення", "Phone" : "Телефон", "Mobile" : "Мобільний", "Fax" : "Факс", "Fax home" : "Домашній факс", "Fax work" : "Робочий факс", "Pager" : "Пейджер", "Voice" : "Голос", "Social network" : "Соціальна мережа", "Settings" : "Налаштування" }, "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"); ca.js 0000604 00000005023 15247116035 0005465 0 ustar 00 OC.L10N.register( "contacts", { "Contacts" : "Contactes", "Download" : "Baixa", "ShowURL" : "Mostra URL", "Share Addressbook" : "Comparteix llibre d'adreces", "Delete Addressbook" : "Suprimeix llibreta d'adreces", "Share with users or groups" : "Comparteix amb usuaris o grups", "Delete" : "Suprimeix", "can edit" : "pot editar", "Address book name" : "Nom de la llibreta d'adreces", "Import" : "Importar", "The selected image is too big (max 1MB)" : "La imatge seleccionada és massa gran (màxim 1MB)", "No contacts in here" : "No hi ha contactes", "Name" : "Nom", "Organization" : "Organització", "Title" : "Títol", "Add field ..." : "Afegeix camp...", "No search result for {query}" : "No s'han trobat resultats per {query}", "_%n contact_::_%n contacts_" : ["%n contactes","%n contactes"], "Post office box" : "Apartat de Correus", "Postal code" : "Codi postal", "City" : "Ciutat", "State or province" : "Estat o província", "Country" : "País", "Address" : "Adreça", "(new group)" : "(grup nou)", "Last name" : "Cognom", "First name" : "Nom", "Additional names" : "Noms addicionals", "Prefix" : "Prefix", "Suffix" : "Sufix", "All contacts" : "Tots els contactes", "Not grouped" : "Sense grup", "New contact" : "Contacte nou", "{addressbook} shared by {owner}" : "{addressbook} compartida per {owner}", "Contact could not be created." : "No s'ha pogut crear el contacte.", "No contacts in file. Only VCard files are allowed." : "No hi ha contactes al fitxer. Només s'accepten fitxers en format VCard.", "Only VCard version 4.0 (RFC6350) or version 3.0 (RFC2426) are supported." : "Només compatible amb VCard versió 4.0 (RFC6350) o versió 3.0 (RFC2426).", "Nickname" : "Sobrenom", "Detailed name" : "Nom detallat", "Notes" : "Anotacions", "Website" : "Pàgina web", "Federated Cloud ID" : "ID de núvol federat", "Home" : "Casa", "Work" : "Feina", "Other" : "Un altre", "Groups" : "Grups", "Birthday" : "Aniversari", "Anniversary" : "Aniversari", "Date of death" : "Data de la mort", "Email" : "Correu electrònic", "Instant messaging" : "Missatgeria instantània", "Phone" : "Telèfon", "Mobile" : "Mòbil", "Fax" : "Fax", "Fax home" : "Fax (casa)", "Fax work" : "Fax (feina)", "Pager" : "Paginador", "Voice" : "Veu", "Social network" : "Xarxa social", "Settings" : "configuració" }, "nplurals=2; plural=(n != 1);"); uk.json 0000604 00000006442 15247116035 0006064 0 ustar 00 { "translations": { "Contacts" : "Контакти", "Download" : "Завантажити", "ShowURL" : "Показати URL", "Share Addressbook" : "Поділитися адресною книгою", "Delete Addressbook" : "Видалити адресну книгу", "Share with users or groups" : "Поділитися з користувачем або групою", "Delete" : "Видалити", "can edit" : "може редагувати", "Address book name" : "Назва адресної книги", "Import" : "Імпорт", "The selected image is too big (max 1MB)" : "Обране зображення занадто велике (1МБ max)", "No contacts in here" : "Тут немає контактів", "Name" : "Ім’я", "Organization" : "Організація", "Title" : "Назва", "Add field ..." : "Додати поле...", "No search result for {query}" : "Немає результатів пошуку для {query}", "_%n contact_::_%n contacts_" : ["%n контакт","%n контактів","%n контактів"], "Post office box" : "Абонентська скринька", "Postal code" : "Поштовий індекс", "City" : "Місто", "State or province" : "Область або район", "Country" : "Країна", "Address" : "Адреса", "(new group)" : "(нова група)", "Last name" : "Прізвище", "First name" : "Ім'я", "Additional names" : "Додаткові імена", "Prefix" : "Префікс", "Suffix" : "Суфікс", "All contacts" : "Всі контакти", "Not grouped" : "Не згруповані", "New contact" : "Новий контакт", "{addressbook} shared by {owner}" : "{owner} поділився {addressbook}", "Contact could not be created." : "Неможливо створити контакт.", "No contacts in file. Only VCard files are allowed." : "Відсутні контакти в фалі. Дозволено лише VCard.", "Only VCard version 4.0 (RFC6350) or version 3.0 (RFC2426) are supported." : "Підтримується лише VCard версії 4.0 (RFC6350) або версії 3.0 (RFC2426).", "Nickname" : "Прізвисько", "Detailed name" : "Повне ім'я", "Notes" : "Нотатки", "Website" : "Web-сайт", "Federated Cloud ID" : "Об'єднаний Хмарний Ідентіфікатор", "Home" : "Домашня адреса", "Work" : "Робота", "Other" : "Інше", "Groups" : "Групи", "Birthday" : "День народження", "Anniversary" : "Річниця", "Date of death" : "Дата смерті", "Email" : "E-mail", "Instant messaging" : "Швидкі повідомлення", "Phone" : "Телефон", "Mobile" : "Мобільний", "Fax" : "Факс", "Fax home" : "Домашній факс", "Fax work" : "Робочий факс", "Pager" : "Пейджер", "Voice" : "Голос", "Social network" : "Соціальна мережа", "Settings" : "Налаштування" },"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);" } ia.js 0000604 00000005533 15247116035 0005501 0 ustar 00 OC.L10N.register( "contacts", { "Contacts" : "Contactos", "Download" : "Discargar", "ShowURL" : "Monstrar URL", "Share Addressbook" : "Compartir Adressario con alteres", "Delete Addressbook" : "Deler Adressario", "Share with users or groups" : "Compartir con usatores o gruppos", "Delete" : "Deler", "can edit" : "pote modificar", "Address book name" : "Nomine del adressario", "Import" : "Importar", "The selected image is too big (max 1MB)" : "Le imagine selectionate es troppo grande (maxime 1MG)", "This card is corrupted and has been fixed. Please check the data and trigger a save to make the changes permanent." : "Iste carta es corrumpite e illo esseva reparate. Per favor, verifica le datos e salveguarda lo pro facer le cambios permanente.", "No contacts in here" : "Il ha nulle contactos ci.", "Name" : "Nomine", "Organization" : "Organisation", "Title" : "Titulo", "Add field ..." : "Adder campo ...", "Save changes" : "Salveguardar cambios", "No search result for {query}" : "Nulle resultato trovate pro {query}", "_%n contact_::_%n contacts_" : ["%n contacto","%n contactos"], "Post office box" : "Cassa postal", "Postal code" : "Codice postal", "City" : "Citate", "State or province" : "Stato o provincia", "Country" : "Pais", "Address" : "Adresse", "(new group)" : "(nove gruppo)", "Last name" : "Ultime nomine", "First name" : "Prime nomine", "Additional names" : "Nomines additional", "Prefix" : "Prefixo", "Suffix" : "Suffixo", "All contacts" : "Tote contactos", "Not grouped" : "Non gruppate", "New contact" : "Nove contacto", "{addressbook} shared by {owner}" : "{addressbook} compartite per {owner}", "Contact could not be created." : "Contacto non poteva esser create.", "No contacts in file. Only VCard files are allowed." : "Nulle contactos in file. Solmente files VCard es permittite.", "Only VCard version 4.0 (RFC6350) or version 3.0 (RFC2426) are supported." : "Solmente VCard version 4.0 (RFC6350) o version 3.0 (RFC2426) es supportate.", "Nickname" : "Pseudonymo", "Detailed name" : "Nomine detaliate", "Notes" : "Notas", "Website" : "Sito web", "Federated Cloud ID" : "ID del Nube Federate", "Home" : "Domo", "Work" : "Travalio", "Other" : "Altere", "Groups" : "Gruppos", "Birthday" : "Anniversario de nativitate", "Anniversary" : "Anniversario de evento", "Date of death" : "Data de morte", "Email" : "E-posta", "Instant messaging" : "Messageria instantanee", "Phone" : "Phono", "Mobile" : "Mobile", "Fax" : "Fax", "Fax home" : "Fax a domicilio", "Fax work" : "Fax a travalio", "Pager" : "Pager", "Voice" : "Voce", "Social network" : "Medios Social", "Settings" : "Configurationes" }, "nplurals=2; plural=(n != 1);"); ar.json 0000604 00000005146 15247116035 0006047 0 ustar 00 { "translations": { "Contacts" : "جهات الاتصال", "Address book name" : "اسم دفتر العناوين", "Import" : "استيراد", "The selected image is too big (max 1MB)" : "الصورة المختارة كبيرة جداً (الأكبر 1 ميغابايت)", "No contacts in here" : "لا توجد أية عناوين", "Name" : "الاسم", "Organization" : "المؤسسة", "Title" : "العنوان", "Add field ..." : "أضف حقلاً ...", "No search result for {query}" : "لم يظهر البحث عن {query} أي نتيجة", "_%n contact_::_%n contacts_" : ["جهة","جهة اتصال","جهتا اتصال","%n جهات اتصال","%n جهات اتصال","%n جهات"], "Post office box" : "صندوق البريد", "Postal code" : "الرمز البريدي.", "City" : "المدينة", "State or province" : "الولاية أو المنطقة.", "Country" : "البلد", "Address" : "عنوان", "(new group)" : "(مجموعة جديدة)", "Last name" : "اسم العائلة", "First name" : "الاسم الأول", "Additional names" : "الاسماء الإضافية", "Prefix" : "بادئة", "Suffix" : "لاحقة", "All contacts" : "كل الجهات", "Not grouped" : "غير مصنف", "New contact" : "جهة إتصال جديدة", "{addressbook} shared by {owner}" : "{owner} شارك {addressbook}", "No contacts in file. Only VCard files are allowed." : "لاتوجد جهات في الملف. ملفات VCard مسموح بها فقط.", "Nickname" : "كنية.\nلقب.", "Detailed name" : "الاسم بالتفصيل", "Notes" : "الملاحظات", "Website" : "موقع إلكتروني", "Federated Cloud ID" : "معرّف السحابة الخارجية", "Home" : "البيت", "Work" : "العمل", "Other" : "آخر", "Groups" : "مجموعات", "Birthday" : "عيد ميلاد", "Anniversary" : "ذكرى", "Date of death" : "تاريخ الوفاة", "Email" : "البريد الإلكترونى", "Instant messaging" : "المراسلة الفورية", "Phone" : "الهاتف", "Mobile" : "الهاتف المحمول", "Fax" : "الفاكس", "Fax home" : "فاكس البيت", "Fax work" : "فاكس العمل", "Pager" : "النداء", "Voice" : "صوت", "Social network" : "شبكة اجتماعية", "Settings" : "الإعدادات" },"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;" } mk.json 0000604 00000003450 15247116035 0006050 0 ustar 00 { "translations": { "Contacts" : "Контакти", "Address book name" : "Име на адресната книга", "Import" : "Увези", "No contacts in here" : "Тука нема контакти", "Name" : "Име", "Organization" : "Организација", "Title" : "Наслов", "Add field ..." : "Додади поле...", "No search result for {query}" : "Нема резултати од пребарувањето за {query}", "Postal code" : "Поштенски број", "City" : "Град", "State or province" : "Град или провинција", "Country" : "Држава", "Address" : "Адреса", "(new group)" : "(нова група)", "Last name" : "Презиме", "First name" : "Име", "Additional names" : "Дополнителни имиња", "All contacts" : "Сите контакти", "Not grouped" : "Не групирани", "New contact" : "Нов контакт", "{addressbook} shared by {owner}" : "{addressbook} споделено од {owner}", "Nickname" : "Прекар", "Notes" : "Белешки", "Website" : "Веб сајт", "Federated Cloud ID" : "Federated Cloud ID", "Home" : "Дома", "Work" : "Работа", "Other" : "Останато", "Groups" : "Групи", "Birthday" : "Роденден", "Email" : "Е-пошта", "Instant messaging" : "Инстантни пораки", "Phone" : "Телефон", "Mobile" : "Мобилен", "Fax" : "Факс", "Fax home" : "Fax дома", "Fax work" : "Fax на работа", "Pager" : "Пејџер", "Voice" : "Глас", "Settings" : "Подесувања" },"pluralForm" :"nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;" } he.js 0000604 00000004545 15247116035 0005506 0 ustar 00 OC.L10N.register( "contacts", { "Contacts" : "אנשי קשר", "Address book name" : "שם ספר כתובות", "Import" : "יבוא", "The selected image is too big (max 1MB)" : "התמונה הנבחרת גדולה מדי (מקסימום 1 מגה בייט)", "No contacts in here" : "אין כאן אנשי קשר", "Name" : "שם", "Organization" : "ארגון", "Title" : "כותרת", "Add field ..." : "הוספת שדה...", "No search result for {query}" : "אין תוצאות חיפוש עבור {query}", "_%n contact_::_%n contacts_" : ["%n איש קשר","%n אנשי קשר"], "Post office box" : "תיבת דואר", "Postal code" : "מיקוד", "City" : "עיר", "State or province" : "מדינה או מחוז", "Country" : "מדינה", "Address" : "כתובת", "(new group)" : "(קבוצה חדשה)", "Last name" : "שם משפחה", "First name" : "שם פרטי", "Additional names" : "שמות נוספים", "Prefix" : "תואר", "Suffix" : "סיומת", "All contacts" : "כל אנשי הקשר", "Not grouped" : "לא שויך לקבוצה", "New contact" : "איש קשר חדש", "{addressbook} shared by {owner}" : "{addressbook} שותף על ידי {owner}", "Contact could not be created." : "לא ניתן היה ליצור איש קשר.", "No contacts in file. Only VCard files are allowed." : "אין אנשי קשר בקובץ. רק קובצי VCard ניתנים לשימוש.", "Nickname" : "כינוי", "Detailed name" : "פרטי שם", "Notes" : "הערות", "Website" : "אתר אינטרנט", "Federated Cloud ID" : "מספר זיהוי ענן מאוגד", "Home" : "בית", "Work" : "עבודה", "Other" : "אחר", "Groups" : "קבוצות", "Birthday" : "יום הולדת", "Anniversary" : "יום השנה", "Date of death" : "תאריך פטירה", "Email" : "דואר אלקטרוני", "Instant messaging" : "מסרים מיידיים", "Phone" : "טלפון", "Mobile" : "נייד", "Fax" : "פקס", "Fax home" : "פקס בבית", "Fax work" : "פקס בעבודה", "Pager" : "זימונית", "Voice" : "קולי", "Social network" : "רשת חברתית", "Settings" : "הגדרות" }, "nplurals=2; plural=(n != 1);"); eu.json 0000604 00000004065 15247116035 0006055 0 ustar 00 { "translations": { "Contacts" : "Kontaktuak", "Address book name" : "Agenda izena", "Import" : "Inportatu", "The selected image is too big (max 1MB)" : "Aukeratutako irudia handiegia da (max 1MB)", "No contacts in here" : "Kontakturik ez dago", "Name" : "Izena", "Organization" : "Erakundea", "Title" : "Izenburua", "Add field ..." : "Eremua gehitu...", "No search result for {query}" : "{query} bilaketak ez du emaitzarik heman", "_%n contact_::_%n contacts_" : ["Kontaktu %n","%n kontaktu"], "Post office box" : "Posta kutxatila", "Postal code" : "Posta kodea", "City" : "Hiria", "State or province" : "Estatu edo probintzia", "Country" : "Herrialdea", "Address" : "Helbidea", "(new group)" : "(talde berria)", "Last name" : "Abizena", "First name" : "Izena", "Additional names" : "Tarteko izenak", "Prefix" : "Aurrizkia", "Suffix" : "Atzizkia", "All contacts" : "Kontaktu guztiak", "Not grouped" : "Taldekatu gabe", "New contact" : "Kontaktu berria", "{addressbook} shared by {owner}" : "{addressbook} shared by {owner}", "Contact could not be created." : "Kontaktua ezin izan da sortu.", "No contacts in file. Only VCard files are allowed." : "Fitxategian kontakturik ez dago. VCard fitxategiak onartzen dira bakarrik.", "Nickname" : "Ezizena", "Detailed name" : "Izen osoa", "Notes" : "Oharrak", "Website" : "Webgunea", "Federated Cloud ID" : "Federatutatako Hodei ID", "Home" : "Etxekoa", "Work" : "Lanekoa", "Other" : "Bestelakoa", "Groups" : "Taldeak", "Birthday" : "Jaioteguna", "Anniversary" : "Urteurrena", "Date of death" : "Heriotze data", "Email" : "E-posta", "Instant messaging" : "Istanteko mezularitza", "Phone" : "Telefonoa", "Mobile" : "Mugikorra", "Fax" : "Faxa", "Fax home" : "Etxeko Faxa", "Fax work" : "Laneko faxa", "Pager" : "Bilagailua", "Voice" : "Ahotsa", "Social network" : "Sare soziala", "Settings" : "Ezarpenak" },"pluralForm" :"nplurals=2; plural=(n != 1);" } ast.json 0000604 00000004004 15247116035 0006224 0 ustar 00 { "translations": { "Contacts" : "Contautos", "Address book name" : "Nome de la Llibreta de direiciones", "Import" : "Importar", "The selected image is too big (max 1MB)" : "La imaxe escoyida ye demasiáu grande (máximu 1 MB)", "No contacts in here" : "Nun hai nengún contactu equí", "Name" : "Nome", "Organization" : "Organización", "Title" : "Títulu", "Add field ..." : "Amestar campu ...", "No search result for {query}" : "Nengun resultáu pa la gueta {query}", "_%n contact_::_%n contacts_" : ["%n contautu","%n contautos"], "Post office box" : "Apartáu de correos", "Postal code" : "Códigu postal", "City" : "Ciudá", "State or province" : "Estáu o provincia", "Country" : "País", "Address" : "Direición", "(new group)" : "(nuevu grupu)", "Last name" : "Apellíu", "First name" : "Nome", "Additional names" : "Nomes adicionales", "Prefix" : "Prefixu", "Suffix" : "Sufixu", "All contacts" : "Tolos contautos", "Not grouped" : "Non agrupáu", "New contact" : "Contautu nuevu", "{addressbook} shared by {owner}" : "{addressbook} compartíu por {owner}", "No contacts in file. Only VCard files are allowed." : "Nengúncontactu nel ficheru. Namás s'almiten ficheros vCard.", "Nickname" : "Nomatu", "Detailed name" : "Nome detalláu", "Notes" : "Notes", "Website" : "Sitiu web", "Federated Cloud ID" : "ID Ñube Federada", "Home" : "Casa", "Work" : "Trabayu", "Other" : "Otru", "Groups" : "Grupos", "Birthday" : "Data de nacencia", "Anniversary" : "Aniversariu", "Date of death" : "Fecha de muerte", "Email" : "Corréu-e", "Instant messaging" : "Mensaxería nel intre", "Phone" : "Teléfonu", "Mobile" : "Móvil", "Fax" : "Fax", "Fax home" : "Fax de casa", "Fax work" : "Fax del trabayu", "Pager" : "Llocalizador", "Voice" : "Voz", "Social network" : "Rede social", "Settings" : "Axustes" },"pluralForm" :"nplurals=2; plural=(n != 1);" } mk.js 0000604 00000003460 15247116035 0005514 0 ustar 00 OC.L10N.register( "contacts", { "Contacts" : "Контакти", "Address book name" : "Име на адресната книга", "Import" : "Увези", "No contacts in here" : "Тука нема контакти", "Name" : "Име", "Organization" : "Организација", "Title" : "Наслов", "Add field ..." : "Додади поле...", "No search result for {query}" : "Нема резултати од пребарувањето за {query}", "Postal code" : "Поштенски број", "City" : "Град", "State or province" : "Град или провинција", "Country" : "Држава", "Address" : "Адреса", "(new group)" : "(нова група)", "Last name" : "Презиме", "First name" : "Име", "Additional names" : "Дополнителни имиња", "All contacts" : "Сите контакти", "Not grouped" : "Не групирани", "New contact" : "Нов контакт", "{addressbook} shared by {owner}" : "{addressbook} споделено од {owner}", "Nickname" : "Прекар", "Notes" : "Белешки", "Website" : "Веб сајт", "Federated Cloud ID" : "Federated Cloud ID", "Home" : "Дома", "Work" : "Работа", "Other" : "Останато", "Groups" : "Групи", "Birthday" : "Роденден", "Email" : "Е-пошта", "Instant messaging" : "Инстантни пораки", "Phone" : "Телефон", "Mobile" : "Мобилен", "Fax" : "Факс", "Fax home" : "Fax дома", "Fax work" : "Fax на работа", "Pager" : "Пејџер", "Voice" : "Глас", "Settings" : "Подесувања" }, "nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;"); ar.js 0000604 00000005156 15247116035 0005513 0 ustar 00 OC.L10N.register( "contacts", { "Contacts" : "جهات الاتصال", "Address book name" : "اسم دفتر العناوين", "Import" : "استيراد", "The selected image is too big (max 1MB)" : "الصورة المختارة كبيرة جداً (الأكبر 1 ميغابايت)", "No contacts in here" : "لا توجد أية عناوين", "Name" : "الاسم", "Organization" : "المؤسسة", "Title" : "العنوان", "Add field ..." : "أضف حقلاً ...", "No search result for {query}" : "لم يظهر البحث عن {query} أي نتيجة", "_%n contact_::_%n contacts_" : ["جهة","جهة اتصال","جهتا اتصال","%n جهات اتصال","%n جهات اتصال","%n جهات"], "Post office box" : "صندوق البريد", "Postal code" : "الرمز البريدي.", "City" : "المدينة", "State or province" : "الولاية أو المنطقة.", "Country" : "البلد", "Address" : "عنوان", "(new group)" : "(مجموعة جديدة)", "Last name" : "اسم العائلة", "First name" : "الاسم الأول", "Additional names" : "الاسماء الإضافية", "Prefix" : "بادئة", "Suffix" : "لاحقة", "All contacts" : "كل الجهات", "Not grouped" : "غير مصنف", "New contact" : "جهة إتصال جديدة", "{addressbook} shared by {owner}" : "{owner} شارك {addressbook}", "No contacts in file. Only VCard files are allowed." : "لاتوجد جهات في الملف. ملفات VCard مسموح بها فقط.", "Nickname" : "كنية.\nلقب.", "Detailed name" : "الاسم بالتفصيل", "Notes" : "الملاحظات", "Website" : "موقع إلكتروني", "Federated Cloud ID" : "معرّف السحابة الخارجية", "Home" : "البيت", "Work" : "العمل", "Other" : "آخر", "Groups" : "مجموعات", "Birthday" : "عيد ميلاد", "Anniversary" : "ذكرى", "Date of death" : "تاريخ الوفاة", "Email" : "البريد الإلكترونى", "Instant messaging" : "المراسلة الفورية", "Phone" : "الهاتف", "Mobile" : "الهاتف المحمول", "Fax" : "الفاكس", "Fax home" : "فاكس البيت", "Fax work" : "فاكس العمل", "Pager" : "النداء", "Voice" : "صوت", "Social network" : "شبكة اجتماعية", "Settings" : "الإعدادات" }, "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;"); et_EE.js 0000604 00000003602 15247116035 0006064 0 ustar 00 OC.L10N.register( "contacts", { "Contacts" : "Kontaktid", "Address book name" : "Aadressiraamatu nimi", "Import" : "Impordi", "The selected image is too big (max 1MB)" : "Valitud pilt on liiga suur (maks 1MB)", "No contacts in here" : "Ühtegi kontakti pole", "Name" : "Nimi", "Organization" : "Organisatsioon", "Title" : "Pealkiri", "Add field ..." : "Lisa väli ...", "No search result for {query}" : "Otsingutulemused sõnadele {query}", "Post office box" : "Postkast", "Postal code" : "Postiindeks", "City" : "Linn", "State or province" : "Maakond", "Country" : "Riik", "Address" : "Aadress", "(new group)" : "(uus grupps)", "Last name" : "Perekonnanimi", "First name" : "Eesnimi", "Additional names" : "Lisanimed", "Prefix" : "Eesliide", "Suffix" : "Järelliide", "All contacts" : "Kõik kontaktid", "Not grouped" : "Pole grupeeritud", "New contact" : "Uus kontakt", "{addressbook} shared by {owner}" : "{owner} jagas aadressiraamatut {addressbook}", "Contact could not be created." : "Kontakti loomine ebaõnnestus.", "No contacts in file. Only VCard files are allowed." : "Failis pole kontakte. Lubatud on ainult VCard.", "Nickname" : "Hüüdnimi", "Detailed name" : "Üksikasjalik nimi", "Notes" : "Märkmed", "Website" : "Veebileht", "Home" : "Kodu", "Work" : "Töö", "Other" : "Muu", "Groups" : "Grupid", "Birthday" : "Sünnipäev", "Anniversary" : "Aastapäev", "Date of death" : "Surma kuupäev", "Email" : "E-post", "Instant messaging" : "Kiirõnumid", "Phone" : "Telefon", "Mobile" : "Mobiil", "Fax" : "Faks", "Fax home" : "Faks kodus", "Fax work" : "Faks tööl", "Pager" : "Piipar", "Voice" : "Hääl", "Social network" : "Sotsiaalvõrk", "Settings" : "Seaded" }, "nplurals=2; plural=(n != 1);"); ast.js 0000604 00000004014 15247116035 0005670 0 ustar 00 OC.L10N.register( "contacts", { "Contacts" : "Contautos", "Address book name" : "Nome de la Llibreta de direiciones", "Import" : "Importar", "The selected image is too big (max 1MB)" : "La imaxe escoyida ye demasiáu grande (máximu 1 MB)", "No contacts in here" : "Nun hai nengún contactu equí", "Name" : "Nome", "Organization" : "Organización", "Title" : "Títulu", "Add field ..." : "Amestar campu ...", "No search result for {query}" : "Nengun resultáu pa la gueta {query}", "_%n contact_::_%n contacts_" : ["%n contautu","%n contautos"], "Post office box" : "Apartáu de correos", "Postal code" : "Códigu postal", "City" : "Ciudá", "State or province" : "Estáu o provincia", "Country" : "País", "Address" : "Direición", "(new group)" : "(nuevu grupu)", "Last name" : "Apellíu", "First name" : "Nome", "Additional names" : "Nomes adicionales", "Prefix" : "Prefixu", "Suffix" : "Sufixu", "All contacts" : "Tolos contautos", "Not grouped" : "Non agrupáu", "New contact" : "Contautu nuevu", "{addressbook} shared by {owner}" : "{addressbook} compartíu por {owner}", "No contacts in file. Only VCard files are allowed." : "Nengúncontactu nel ficheru. Namás s'almiten ficheros vCard.", "Nickname" : "Nomatu", "Detailed name" : "Nome detalláu", "Notes" : "Notes", "Website" : "Sitiu web", "Federated Cloud ID" : "ID Ñube Federada", "Home" : "Casa", "Work" : "Trabayu", "Other" : "Otru", "Groups" : "Grupos", "Birthday" : "Data de nacencia", "Anniversary" : "Aniversariu", "Date of death" : "Fecha de muerte", "Email" : "Corréu-e", "Instant messaging" : "Mensaxería nel intre", "Phone" : "Teléfonu", "Mobile" : "Móvil", "Fax" : "Fax", "Fax home" : "Fax de casa", "Fax work" : "Fax del trabayu", "Pager" : "Llocalizador", "Voice" : "Voz", "Social network" : "Rede social", "Settings" : "Axustes" }, "nplurals=2; plural=(n != 1);"); pt_PT.js 0000604 00000004165 15247116035 0006136 0 ustar 00 OC.L10N.register( "contacts", { "Contacts" : "Contactos", "Address book name" : "Nome do livro de endereços", "Import" : "Importar", "The selected image is too big (max 1MB)" : "A imagem selecionada é demasiado grande (max 1MB)", "No contacts in here" : "Nenhum contacto aqui", "Name" : "Nome", "Organization" : "Organização", "Title" : "Título ", "Add field ..." : "Adicionar campo ...", "No search result for {query}" : "Sem resultados de pesquisa para {query}", "_%n contact_::_%n contacts_" : ["%n contacto","%n contactos"], "Post office box" : "Apartado", "Postal code" : "Código Postal", "City" : "Cidade", "State or province" : "Distrito", "Country" : "País", "Address" : "Endereço", "(new group)" : "(novo grupo)", "Last name" : "Ultimo Nome", "First name" : "Primeiro Nome", "Additional names" : "Nomes adicionais", "Prefix" : "Prefixo", "Suffix" : "Sufixo", "All contacts" : "Todos os contactos", "Not grouped" : "Não agrupados", "New contact" : "Novo contacto", "{addressbook} shared by {owner}" : "{addressbook} partilhado por {owner}", "Contact could not be created." : "Não foi possível criar o contacto.", "No contacts in file. Only VCard files are allowed." : "Nenhum contacto encontrado no ficheiro. Apenas são permitidos ficheiros VCard.", "Nickname" : "Alcunha", "Detailed name" : "Nome em detalhe", "Notes" : "Notas", "Website" : "Site da Internet", "Federated Cloud ID" : "Id. da Nuvem Federada", "Home" : "Início", "Work" : "Emprego", "Other" : "Outro", "Groups" : "Grupos", "Birthday" : "Aniversário", "Anniversary" : "Aniversário", "Date of death" : "Data de falecimento", "Email" : "Correio Eletrónico", "Instant messaging" : "Mensagens Instantâneas", "Phone" : "Telefone", "Mobile" : "Telemóvel", "Fax" : "Fax", "Fax home" : "Fax de casa", "Fax work" : "Fax do emprego", "Pager" : "Pager", "Voice" : "Voz", "Social network" : "Rede Social", "Settings" : "Definições" }, "nplurals=2; plural=(n != 1);"); he.json 0000604 00000004535 15247116035 0006042 0 ustar 00 { "translations": { "Contacts" : "אנשי קשר", "Address book name" : "שם ספר כתובות", "Import" : "יבוא", "The selected image is too big (max 1MB)" : "התמונה הנבחרת גדולה מדי (מקסימום 1 מגה בייט)", "No contacts in here" : "אין כאן אנשי קשר", "Name" : "שם", "Organization" : "ארגון", "Title" : "כותרת", "Add field ..." : "הוספת שדה...", "No search result for {query}" : "אין תוצאות חיפוש עבור {query}", "_%n contact_::_%n contacts_" : ["%n איש קשר","%n אנשי קשר"], "Post office box" : "תיבת דואר", "Postal code" : "מיקוד", "City" : "עיר", "State or province" : "מדינה או מחוז", "Country" : "מדינה", "Address" : "כתובת", "(new group)" : "(קבוצה חדשה)", "Last name" : "שם משפחה", "First name" : "שם פרטי", "Additional names" : "שמות נוספים", "Prefix" : "תואר", "Suffix" : "סיומת", "All contacts" : "כל אנשי הקשר", "Not grouped" : "לא שויך לקבוצה", "New contact" : "איש קשר חדש", "{addressbook} shared by {owner}" : "{addressbook} שותף על ידי {owner}", "Contact could not be created." : "לא ניתן היה ליצור איש קשר.", "No contacts in file. Only VCard files are allowed." : "אין אנשי קשר בקובץ. רק קובצי VCard ניתנים לשימוש.", "Nickname" : "כינוי", "Detailed name" : "פרטי שם", "Notes" : "הערות", "Website" : "אתר אינטרנט", "Federated Cloud ID" : "מספר זיהוי ענן מאוגד", "Home" : "בית", "Work" : "עבודה", "Other" : "אחר", "Groups" : "קבוצות", "Birthday" : "יום הולדת", "Anniversary" : "יום השנה", "Date of death" : "תאריך פטירה", "Email" : "דואר אלקטרוני", "Instant messaging" : "מסרים מיידיים", "Phone" : "טלפון", "Mobile" : "נייד", "Fax" : "פקס", "Fax home" : "פקס בבית", "Fax work" : "פקס בעבודה", "Pager" : "זימונית", "Voice" : "קולי", "Social network" : "רשת חברתית", "Settings" : "הגדרות" },"pluralForm" :"nplurals=2; plural=(n != 1);" } th_TH.json 0000604 00000006430 15247116036 0006451 0 ustar 00 { "translations": { "Contacts" : "ข้อมูลผู้ติดต่อ", "Address book name" : "สมุดชื่อที่อยู่", "Import" : "นำเข้า", "The selected image is too big (max 1MB)" : "รูปภาพที่เลือกมีขนาดใหญ่เกินไป (ขนาดไม่ควรเกิน 1 เมกะไบต์)", "No contacts in here" : "ไม่มีรายชื่อในที่นี่", "Name" : "ชื่อ", "Organization" : "หน่วยงาน", "Title" : "ชื่อเรื่อง", "Add field ..." : "เพิ่มช่อง ...", "No search result for {query}" : "ไม่พบผลลัพธ์การค้นหาสำหรับ {query}", "_%n contact_::_%n contacts_" : ["%n รายชื่อผู้ติดต่อ"], "Post office box" : "กล่องจดหมาย", "Postal code" : "รหัสไปรษณีย์", "City" : "เมือง", "State or province" : "รัฐหรือจังหวัด", "Country" : "ประเทศ", "Address" : "ที่อยู่", "(new group)" : "(กลุ่มใหม่)", "Last name" : "นามสกุลจริง", "First name" : "ชื่อจริง", "Additional names" : "ชื่ออื่นๆ", "Prefix" : "คำนำหน้า", "Suffix" : "คำต่อท้าย", "All contacts" : "รายชื่อทั้งหมด", "Not grouped" : "ไม่ถูกจัดกลุ่ม", "New contact" : "รายชื่อผุ้ติดต่อใหม่", "{addressbook} shared by {owner}" : "{addressbook} ถูกแชร์โดย {owner}", "Contact could not be created." : "ไม่สามารถสร้างรายชื่อผู้ติดต่อ", "No contacts in file. Only VCard files are allowed." : "ไม่มีรายชื่อในไฟล์ เฉพาะไฟล์วีการ์ดจะได้รับอนุญาต", "Nickname" : "ชื่อเล่น", "Detailed name" : "รายละเอียดชื่อ", "Notes" : "บันทึกย่อ", "Website" : "เว็บไซต์", "Federated Cloud ID" : "ไอดีคลาวด์ในเครือ", "Home" : "บ้าน", "Work" : "ที่ทำงาน", "Other" : "อื่นๆ", "Groups" : "กลุ่ม", "Birthday" : "วันเกิด", "Anniversary" : "วันครบรอบ", "Date of death" : "วันที่สิ้นสุด", "Email" : "อีเมล", "Instant messaging" : "ส่งข้อความโต้ตอบแบบทันที", "Phone" : "โทรศัพท์", "Mobile" : "มือถือ", "Fax" : "โทรสาร", "Fax home" : "แฟกซ์ที่บ้าน", "Fax work" : "แฟกซ์ที่ทำงาน", "Pager" : "เพจเจอร์", "Voice" : "เสียงพูด", "Social network" : "เครือข่ายทางสังคม", "Settings" : "ตั้งค่า" },"pluralForm" :"nplurals=1; plural=0;" } sk_SK.js 0000604 00000005131 15247116036 0006115 0 ustar 00 OC.L10N.register( "contacts", { "Contacts" : "Kontakty", "Download" : "Stiahnuť", "ShowURL" : "Zobraziť URL", "Share Addressbook" : "Sprístupniť adresár", "Delete Addressbook" : "Zmazať adresár", "Share with users or groups" : "Sprístupniť používateľom alebo skupinám", "Delete" : "Zmazať", "can edit" : "môže upraviť", "Address book name" : "Názov adresára kontaktov", "Import" : "Import", "The selected image is too big (max 1MB)" : "Vybraný obrázok je príliš veľký (max 1MB)", "No contacts in here" : "Nie sú tu žiadne kontakty", "Name" : "Názov", "Organization" : "Organizácia", "Title" : "Názov", "Add field ..." : "Pridať pole ...", "No search result for {query}" : "Žiadne výsledky vyhľadávania pre {query}", "_%n contact_::_%n contacts_" : ["%n kontakt","%n kontaktov","%n kontaktov"], "Post office box" : "Poštová adresa", "Postal code" : "PSČ", "City" : "Mesto", "State or province" : "Štát alebo oblasť", "Country" : "Krajina", "Address" : "Adresa", "(new group)" : "(nová skupina)", "Last name" : "Priezvisko", "First name" : "Krstné meno", "Additional names" : "Ďalšie mená", "Prefix" : "Titul pred menom", "Suffix" : "Titul po mene", "All contacts" : "Všetky kontakty", "Not grouped" : "Bez skupiny", "New contact" : "Nový kontakt", "{addressbook} shared by {owner}" : "{addressbook} sprístupňuje {owner}", "Contact could not be created." : "Kontakt nieje možné vytvoriť", "No contacts in file. Only VCard files are allowed." : "Žiadne kontakty v súbore. Len VCard súbory sú povolené.", "Only VCard version 4.0 (RFC6350) or version 3.0 (RFC2426) are supported." : "Podporované sú iba formáty VCard verzie 4.0 (RFC6350) alebo verzie 3.0 (RFC2426).", "Nickname" : "Prezývka", "Detailed name" : "Podrobné meno", "Notes" : "Poznámky", "Website" : "Webstránka", "Federated Cloud ID" : "Združené Cloud ID", "Home" : "Domov", "Work" : "Práca", "Other" : "Iné", "Groups" : "Skupiny", "Birthday" : "Narodeniny", "Anniversary" : "Výročie", "Date of death" : "Dátum smrti", "Email" : "Email", "Instant messaging" : "Instant messaging", "Phone" : "Telefón", "Mobile" : "Mobil", "Fax" : "Fax", "Fax home" : "Fax doma", "Fax work" : "Fax v práci", "Pager" : "Pager", "Voice" : "Odkazová schránka", "Social network" : "Sociálna sieť", "Settings" : "Nastavenia" }, "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"); oc.js 0000604 00000002125 15247116036 0005504 0 ustar 00 OC.L10N.register( "contacts", { "Contacts" : "Contactes", "Import" : "Importar", "Name" : "Nom", "Organization" : "Societat", "Title" : "Títol", "Add field ..." : "Apondre un camp...", "Add contact" : "Apondre un contacte", "All contacts" : "Totes los contactes", "Not grouped" : "Pas gropats", "Postal Code" : "Còdi postal", "City" : "Vila", "State or province" : "Estat o region", "Country" : "País", "Address" : "Adreça", "(new group)" : "(grop novèl)", "New contact" : "Contacte novèl", "Nickname" : "Escais", "Notes" : "Nòtas", "Website" : "Site web", "Federated Cloud ID" : "Federated Cloud ID", "Home" : "Domicili", "Work" : "Professional(a)", "Other" : "Autre", "Groups" : "Gropes", "Birthday" : "Anniversari", "Email" : "Adreça corrièl", "Instant messaging" : "Messatjariá instantanèa", "Phone" : "Telefòn", "Mobile" : "Mobil", "Fax" : "Fax", "Pager" : "Messatgièr", "Voice" : "Votz", "Settings" : "Paramètres" }, "nplurals=2; plural=(n > 1);"); pt_PT.json 0000604 00000004155 15247116036 0006473 0 ustar 00 { "translations": { "Contacts" : "Contactos", "Address book name" : "Nome do livro de endereços", "Import" : "Importar", "The selected image is too big (max 1MB)" : "A imagem selecionada é demasiado grande (max 1MB)", "No contacts in here" : "Nenhum contacto aqui", "Name" : "Nome", "Organization" : "Organização", "Title" : "Título ", "Add field ..." : "Adicionar campo ...", "No search result for {query}" : "Sem resultados de pesquisa para {query}", "_%n contact_::_%n contacts_" : ["%n contacto","%n contactos"], "Post office box" : "Apartado", "Postal code" : "Código Postal", "City" : "Cidade", "State or province" : "Distrito", "Country" : "País", "Address" : "Endereço", "(new group)" : "(novo grupo)", "Last name" : "Ultimo Nome", "First name" : "Primeiro Nome", "Additional names" : "Nomes adicionais", "Prefix" : "Prefixo", "Suffix" : "Sufixo", "All contacts" : "Todos os contactos", "Not grouped" : "Não agrupados", "New contact" : "Novo contacto", "{addressbook} shared by {owner}" : "{addressbook} partilhado por {owner}", "Contact could not be created." : "Não foi possível criar o contacto.", "No contacts in file. Only VCard files are allowed." : "Nenhum contacto encontrado no ficheiro. Apenas são permitidos ficheiros VCard.", "Nickname" : "Alcunha", "Detailed name" : "Nome em detalhe", "Notes" : "Notas", "Website" : "Site da Internet", "Federated Cloud ID" : "Id. da Nuvem Federada", "Home" : "Início", "Work" : "Emprego", "Other" : "Outro", "Groups" : "Grupos", "Birthday" : "Aniversário", "Anniversary" : "Aniversário", "Date of death" : "Data de falecimento", "Email" : "Correio Eletrónico", "Instant messaging" : "Mensagens Instantâneas", "Phone" : "Telefone", "Mobile" : "Telemóvel", "Fax" : "Fax", "Fax home" : "Fax de casa", "Fax work" : "Fax do emprego", "Pager" : "Pager", "Voice" : "Voz", "Social network" : "Rede Social", "Settings" : "Definições" },"pluralForm" :"nplurals=2; plural=(n != 1);" } oc.json 0000604 00000002115 15247116036 0006040 0 ustar 00 { "translations": { "Contacts" : "Contactes", "Import" : "Importar", "Name" : "Nom", "Organization" : "Societat", "Title" : "Títol", "Add field ..." : "Apondre un camp...", "Add contact" : "Apondre un contacte", "All contacts" : "Totes los contactes", "Not grouped" : "Pas gropats", "Postal Code" : "Còdi postal", "City" : "Vila", "State or province" : "Estat o region", "Country" : "País", "Address" : "Adreça", "(new group)" : "(grop novèl)", "New contact" : "Contacte novèl", "Nickname" : "Escais", "Notes" : "Nòtas", "Website" : "Site web", "Federated Cloud ID" : "Federated Cloud ID", "Home" : "Domicili", "Work" : "Professional(a)", "Other" : "Autre", "Groups" : "Gropes", "Birthday" : "Anniversari", "Email" : "Adreça corrièl", "Instant messaging" : "Messatjariá instantanèa", "Phone" : "Telefòn", "Mobile" : "Mobil", "Fax" : "Fax", "Pager" : "Messatgièr", "Voice" : "Votz", "Settings" : "Paramètres" },"pluralForm" :"nplurals=2; plural=(n > 1);" } no-php 0000604 00000000000 15247116036 0005657 0 ustar 00 ia.json 0000604 00000005523 15247116036 0006036 0 ustar 00 { "translations": { "Contacts" : "Contactos", "Download" : "Discargar", "ShowURL" : "Monstrar URL", "Share Addressbook" : "Compartir Adressario con alteres", "Delete Addressbook" : "Deler Adressario", "Share with users or groups" : "Compartir con usatores o gruppos", "Delete" : "Deler", "can edit" : "pote modificar", "Address book name" : "Nomine del adressario", "Import" : "Importar", "The selected image is too big (max 1MB)" : "Le imagine selectionate es troppo grande (maxime 1MG)", "This card is corrupted and has been fixed. Please check the data and trigger a save to make the changes permanent." : "Iste carta es corrumpite e illo esseva reparate. Per favor, verifica le datos e salveguarda lo pro facer le cambios permanente.", "No contacts in here" : "Il ha nulle contactos ci.", "Name" : "Nomine", "Organization" : "Organisation", "Title" : "Titulo", "Add field ..." : "Adder campo ...", "Save changes" : "Salveguardar cambios", "No search result for {query}" : "Nulle resultato trovate pro {query}", "_%n contact_::_%n contacts_" : ["%n contacto","%n contactos"], "Post office box" : "Cassa postal", "Postal code" : "Codice postal", "City" : "Citate", "State or province" : "Stato o provincia", "Country" : "Pais", "Address" : "Adresse", "(new group)" : "(nove gruppo)", "Last name" : "Ultime nomine", "First name" : "Prime nomine", "Additional names" : "Nomines additional", "Prefix" : "Prefixo", "Suffix" : "Suffixo", "All contacts" : "Tote contactos", "Not grouped" : "Non gruppate", "New contact" : "Nove contacto", "{addressbook} shared by {owner}" : "{addressbook} compartite per {owner}", "Contact could not be created." : "Contacto non poteva esser create.", "No contacts in file. Only VCard files are allowed." : "Nulle contactos in file. Solmente files VCard es permittite.", "Only VCard version 4.0 (RFC6350) or version 3.0 (RFC2426) are supported." : "Solmente VCard version 4.0 (RFC6350) o version 3.0 (RFC2426) es supportate.", "Nickname" : "Pseudonymo", "Detailed name" : "Nomine detaliate", "Notes" : "Notas", "Website" : "Sito web", "Federated Cloud ID" : "ID del Nube Federate", "Home" : "Domo", "Work" : "Travalio", "Other" : "Altere", "Groups" : "Gruppos", "Birthday" : "Anniversario de nativitate", "Anniversary" : "Anniversario de evento", "Date of death" : "Data de morte", "Email" : "E-posta", "Instant messaging" : "Messageria instantanee", "Phone" : "Phono", "Mobile" : "Mobile", "Fax" : "Fax", "Fax home" : "Fax a domicilio", "Fax work" : "Fax a travalio", "Pager" : "Pager", "Voice" : "Voce", "Social network" : "Medios Social", "Settings" : "Configurationes" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
| ver. 1.4 |
Github
|
.
| PHP 7.4.33 | Generation time: 0.01 |
proxy
|
phpinfo
|
Settings