Passman 2.3.7

Merge branch 'fix/noid/travismysqlerror'

Signed-off-by: passman-bot <info@passman.cc>
This commit is contained in:
passman-bot 2021-03-22 14:29:33 +00:00
parent 30bf561d97
commit 3e00e9ec93
No known key found for this signature in database
GPG key ID: B8AB61E4F218DEE0
185 changed files with 1515 additions and 528 deletions

View file

@ -19,7 +19,7 @@ Features:
- Import from various password managers (KeePass, LastPass, DashLane, ZOHO, Clipperz.is )
For an demo of this app visit [https://demo.passman.cc](https://demo.passman.cc)
]]></description>
<version>2.3.6</version>
<version>2.3.7</version>
<licence>agpl</licence>
<author homepage="https://github.com/brantje">Sander Brand</author>
<author homepage="https://github.com/animalillo">Marcos Zuriaga</author>
@ -37,13 +37,12 @@ For an demo of this app visit [https://demo.passman.cc](https://demo.passman.cc)
<screenshot small-thumbnail="https://img.passman.cc/thumbs/share_credential.png">https://img.passman.cc/share_credential.png</screenshot>
<screenshot small-thumbnail="https://img.passman.cc/thumbs/password_audit.png">https://img.passman.cc/password_audit.png</screenshot>
<dependencies>
<php min-version="7.0"/>
<php min-version="7.2"/>
<database>sqlite</database>
<database>pgsql</database>
<database min-version="5.5">mysql</database>
<lib>openssl</lib>
<nextcloud min-version="17" max-version="19"/>
<owncloud min-version="10" max-version="10"/>
<nextcloud min-version="20" max-version="22"/>
</dependencies>
<background-jobs>

View file

@ -30,14 +30,17 @@
"angular-translate": "2.9.0",
"angular-xeditable": "0.3.0",
"angular-datetime-picker": "",
"ng-clipboard": "1.5.10",
"ng-password-meter": "0.4.0",
"ng-clipboard": "1.0.2",
"ng-password-meter": "0.1.6",
"ng-tags-input": "3.1.1",
"papa-parse": "4.1.2",
"llqrcode": "0.0.2",
"sha": " 2.0.1",
"jssha": " 2.0.1",
"sjcl": " 1.0.8",
"ui-sortable": "0.19.0",
"ui-sortable": "1.0",
"zxcvbn": "4.4.2"
},
"resolutions": {
"angular": "1.5.8"
}
}

View file

@ -85,6 +85,7 @@ class CredentialController extends ApiController {
'username' => $username,
'password' => $password,
'url' => $url,
'icon' => $favicon,
'favicon' => $favicon,
'renew_interval' => $renew_interval,
'expire_time' => $expire_time,
@ -94,7 +95,6 @@ class CredentialController extends ApiController {
'otp' => $otp,
'hidden' => $hidden,
'compromised' => $compromised
);
$credential = $this->credentialService->createCredential($credential);
@ -353,4 +353,4 @@ class CredentialController extends ApiController {
$this->credentialRevisionService->updateRevision($revision);
return new JSONResponse(array());
}
}
}

View file

@ -269,7 +269,7 @@ class TranslationController extends ApiController {
'enable.link.sharing' => $this->trans->t('Enable link sharing'),
'share.until.date' => $this->trans->t('Share until date'),
'expire.views' => $this->trans->t('Expire after views'),
'click.share' => $this->trans->t('Click \"Share\" first'),
'click.share' => $this->trans->t('Click "Share" first'),
'show.files' => $this->trans->t('Show files'),
@ -375,7 +375,7 @@ class TranslationController extends ApiController {
'new.vault.name' => $this->trans->t('Please give your new vault a name.'),
'new.vault.pass' => $this->trans->t('Vault password'),
'new.vault.passr' => $this->trans->t('Repeat vault password'),
'new.vault.sharing_key_notice' => $this->trans->t('Your sharing keys will have a strength of 1024 bit, which you can change in \"Settings\" later .'),
'new.vault.sharing_key_notice' => $this->trans->t('Your sharing keys will have a strength of 1024 bit, which you can change in "Settings" later.'),
'new.vault.create' => $this->trans->t('Create vault'),
'go.back.vaults' => $this->trans->t('Go back to vaults'),
'input.vault.password' => $this->trans->t('Please input the password for'),

4
css/passman.min.css vendored

File diff suppressed because one or more lines are too long

12
js/passman.min.js vendored

File diff suppressed because one or more lines are too long

View file

@ -94,6 +94,7 @@ $(document).ready(function () {
$('#passman_https_check').prop('checked', (settings.getKey('https_check').toString().toLowerCase() === '1'));
$('#passman_disable_contextmenu').prop('checked', (settings.getKey('disable_contextmenu').toString().toLowerCase() === '1'));
$('#passman_disable_debugger').prop('checked', (settings.getKey('disable_debugger').toString().toLowerCase() === '1'));
$('#passman_enable_global_search').prop('checked', (settings.getKey('enable_global_search').toString().toLowerCase() === '1'));
$('#vault_key_strength').val(settings.getKey('vault_key_strength'));
@ -113,6 +114,10 @@ $(document).ready(function () {
settings.setAdminKey('disable_debugger', ($(this).is(":checked")) ? 1 : 0);
});
$('#passman_enable_global_search').change(function () {
settings.setAdminKey('enable_global_search', ($(this).is(":checked")) ? 1 : 0);
});
$('#passman_sharing_enabled').change(function () {
settings.setAdminKey('user_sharing_enabled', ($(this).is(":checked")) ? 1 : 0);
});

View file

@ -60,7 +60,7 @@ OC.L10N.register(
"Description" : "Beskrywing",
"Passman" : "Passman",
"Connection to server lost" : "Verbinding met bediener verloor",
"Saving..." : "Stoor tans…",
"Saving …" : "Word gestoor …",
"Dismiss" : "Ontslaan",
"seconds ago" : "sekondes gelede"
},

View file

@ -58,7 +58,7 @@
"Description" : "Beskrywing",
"Passman" : "Passman",
"Connection to server lost" : "Verbinding met bediener verloor",
"Saving..." : "Stoor tans…",
"Saving …" : "Word gestoor …",
"Dismiss" : "Ontslaan",
"seconds ago" : "sekondes gelede"
},"pluralForm" :"nplurals=2; plural=(n != 1);"

View file

@ -37,6 +37,7 @@ OC.L10N.register(
"Disabled" : "معطّل",
"Password length" : "طول كلمة السر",
"Export" : "تصدير",
"Change" : "تعديل",
"Version" : "الإصدار",
"Import" : "استيراد",
"Public key" : "المفتاح العمومي",
@ -80,7 +81,6 @@ OC.L10N.register(
"You deleted %1$s" : "حذفت %1$s",
"Passwords" : "الكلمات السرية",
"Connection to server lost" : "تم فقد الاتصال بالخادم",
"Saving..." : "جاري الحفظ...",
"Dismiss" : "تراجع",
"seconds ago" : "ثوان مضت"
},

View file

@ -35,6 +35,7 @@
"Disabled" : "معطّل",
"Password length" : "طول كلمة السر",
"Export" : "تصدير",
"Change" : "تعديل",
"Version" : "الإصدار",
"Import" : "استيراد",
"Public key" : "المفتاح العمومي",
@ -78,7 +79,6 @@
"You deleted %1$s" : "حذفت %1$s",
"Passwords" : "الكلمات السرية",
"Connection to server lost" : "تم فقد الاتصال بالخادم",
"Saving..." : "جاري الحفظ...",
"Dismiss" : "تراجع",
"seconds ago" : "ثوان مضت"
},"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;"

View file

@ -150,7 +150,7 @@ OC.L10N.register(
"Reason" : "Razón",
"Connection to server lost" : "Perdióse la conexón col sirvidor",
"Problem loading page, reloading in 5 seconds" : "Problema cargando la páxina, recargando en 5 segundos",
"Saving..." : "Guardando...",
"Saving" : "Guardando...",
"Dismiss" : "Escartar",
"seconds ago" : "hai segundos"
},

View file

@ -148,7 +148,7 @@
"Reason" : "Razón",
"Connection to server lost" : "Perdióse la conexón col sirvidor",
"Problem loading page, reloading in 5 seconds" : "Problema cargando la páxina, recargando en 5 segundos",
"Saving..." : "Guardando...",
"Saving" : "Guardando...",
"Dismiss" : "Escartar",
"seconds ago" : "hai segundos"
},"pluralForm" :"nplurals=2; plural=(n != 1);"

View file

@ -39,7 +39,6 @@ OC.L10N.register(
"Description" : "Açıqlanma",
"You created %1$s" : "Siz yaratdınız %1$s",
"You deleted %1$s" : "Siz silindiniz %1$s",
"Saving..." : "Saxlama...",
"seconds ago" : "saniyələr öncə"
},
"nplurals=2; plural=(n != 1);");

View file

@ -37,7 +37,6 @@
"Description" : "Açıqlanma",
"You created %1$s" : "Siz yaratdınız %1$s",
"You deleted %1$s" : "Siz silindiniz %1$s",
"Saving..." : "Saxlama...",
"seconds ago" : "saniyələr öncə"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View file

@ -239,7 +239,7 @@ OC.L10N.register(
"Reason" : "Причина",
"Connection to server lost" : "Връзката със сървъра пропадна",
"Problem loading page, reloading in 5 seconds" : "Проблем при зареждане на страницата, презареждане след 5 секунди",
"Saving..." : "Записване...",
"Saving …" : "Записване …",
"Dismiss" : "Отхвърли",
"seconds ago" : "преди секунди"
},

View file

@ -237,7 +237,7 @@
"Reason" : "Причина",
"Connection to server lost" : "Връзката със сървъра пропадна",
"Problem loading page, reloading in 5 seconds" : "Проблем при зареждане на страницата, презареждане след 5 секунди",
"Saving..." : "Записване...",
"Saving …" : "Записване …",
"Dismiss" : "Отхвърли",
"seconds ago" : "преди секунди"
},"pluralForm" :"nplurals=2; plural=(n != 1);"

View file

@ -38,7 +38,6 @@ OC.L10N.register(
"Description" : "বিবরণ",
"You created %1$s" : "আপনি তৈরি করেছেন %1$s",
"You deleted %1$s" : "আপনি ডিলিট করেছেন %1$s",
"Saving..." : "সংরক্ষণ করা হচ্ছে..",
"seconds ago" : "সেকেন্ড পূর্বে"
},
"nplurals=2; plural=(n != 1);");

View file

@ -36,7 +36,6 @@
"Description" : "বিবরণ",
"You created %1$s" : "আপনি তৈরি করেছেন %1$s",
"You deleted %1$s" : "আপনি ডিলিট করেছেন %1$s",
"Saving..." : "সংরক্ষণ করা হচ্ছে..",
"seconds ago" : "সেকেন্ড পূর্বে"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View file

@ -54,7 +54,7 @@ OC.L10N.register(
"Description" : "Diskrivadur",
"Expires:" : "Termenn :",
"Connection to server lost" : "Kelet eo bet ar c'henstagañ gant ar servijour",
"Saving..." : "Oc'h enrolién",
"Saving …" : "Orc'h enrolliñ",
"Dismiss" : "Arrest",
"seconds ago" : "eilenn zo"
},

View file

@ -52,7 +52,7 @@
"Description" : "Diskrivadur",
"Expires:" : "Termenn :",
"Connection to server lost" : "Kelet eo bet ar c'henstagañ gant ar servijour",
"Saving..." : "Oc'h enrolién",
"Saving …" : "Orc'h enrolliñ",
"Dismiss" : "Arrest",
"seconds ago" : "eilenn zo"
},"pluralForm" :"nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);"

View file

@ -34,7 +34,6 @@ OC.L10N.register(
"Date" : "Date",
"Accept" : "Prihvati",
"Decline" : "Odbij",
"Description" : "Opis",
"Saving..." : "Spremanje..."
"Description" : "Opis"
},
"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);");

View file

@ -32,7 +32,6 @@
"Date" : "Date",
"Accept" : "Prihvati",
"Decline" : "Odbij",
"Description" : "Opis",
"Saving..." : "Spremanje..."
"Description" : "Opis"
},"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);"
}

View file

@ -287,18 +287,17 @@ OC.L10N.register(
"Medium Strength" : "Fortalesa Mitjana",
"Bad Strength" : "Fortalesa Dolenta",
"Expired" : "Caducat",
"Filter Tags" : "Filtre Etiquetes",
"Filter Tags" : "Filtra les etiquetes",
"Simple Navigation" : "Navegació Simple",
"Someone has shared a credential with you." : "Algú us ha compartit una credencial.",
"Click here to request it" : "Feu clic aquí per sol·licitar-lo",
"Loading…" : "S'està carregant...",
"Awwhh… credential not found. Maybe it expired" : "Oohh... no s'ha trobat cap credencial ... Potser ha caducat",
"Compromise!" : "Compromís!",
"Mark as Compromised" : "Marca com a compromès",
"Compromised!" : "Compromès!",
"This password is compromised. You can only remove this warning by changing the password." : "Aquesta contrasenya està compromesa. Només podeu suprimir aquest avís canviant la contrasenya.",
"email" : "correu electrònic",
"Description" : "Descripció",
"Url" : "Url",
"Custom Search:" : "Cerca Personalitzada:",
"Revert to defaults" : "Torna als valors per defecte",
"Error while saving field" : "S'ha produït un error mentre es desava el camp",
@ -361,7 +360,7 @@ OC.L10N.register(
"Expires:" : "Caduca:",
"Connection to server lost" : "S'ha perdut la connexió amb el servidor",
"Problem loading page, reloading in 5 seconds" : "Problemes carregant la pagina, es recarregarà d'aquí 5 segons",
"Saving..." : "S'està desant...",
"Saving …" : "S'està desant …",
"Dismiss" : "Rebutja",
"seconds ago" : "fa uns segons"
},

View file

@ -285,18 +285,17 @@
"Medium Strength" : "Fortalesa Mitjana",
"Bad Strength" : "Fortalesa Dolenta",
"Expired" : "Caducat",
"Filter Tags" : "Filtre Etiquetes",
"Filter Tags" : "Filtra les etiquetes",
"Simple Navigation" : "Navegació Simple",
"Someone has shared a credential with you." : "Algú us ha compartit una credencial.",
"Click here to request it" : "Feu clic aquí per sol·licitar-lo",
"Loading…" : "S'està carregant...",
"Awwhh… credential not found. Maybe it expired" : "Oohh... no s'ha trobat cap credencial ... Potser ha caducat",
"Compromise!" : "Compromís!",
"Mark as Compromised" : "Marca com a compromès",
"Compromised!" : "Compromès!",
"This password is compromised. You can only remove this warning by changing the password." : "Aquesta contrasenya està compromesa. Només podeu suprimir aquest avís canviant la contrasenya.",
"email" : "correu electrònic",
"Description" : "Descripció",
"Url" : "Url",
"Custom Search:" : "Cerca Personalitzada:",
"Revert to defaults" : "Torna als valors per defecte",
"Error while saving field" : "S'ha produït un error mentre es desava el camp",
@ -359,7 +358,7 @@
"Expires:" : "Caduca:",
"Connection to server lost" : "S'ha perdut la connexió amb el servidor",
"Problem loading page, reloading in 5 seconds" : "Problemes carregant la pagina, es recarregarà d'aquí 5 segons",
"Saving..." : "S'està desant...",
"Saving …" : "S'està desant …",
"Dismiss" : "Rebutja",
"seconds ago" : "fa uns segons"
},"pluralForm" :"nplurals=2; plural=(n != 1);"

View file

@ -8,11 +8,11 @@ OC.L10N.register(
"Custom Fields" : "Uživatelsky určené kolonky",
"Please fill in a label." : "Vyplňte štítek.",
"Please fill in a value." : "Vyplňte hodnotu.",
"Error loading file" : "Chyba načítání souboru",
"Error loading file" : "Chyba při načítání souboru",
"An error occurred during decryption" : "Při rozšifrovávání došlo k chybě",
"Credential created!" : "Přihlašovací údaje vytvořeny!",
"Credential deleted" : "Přihlašovací údaj smazán",
"Credential updated" : "Přihlašovací údaje zaktualizovány",
"Credential updated" : "Přihlašovací údaj zaktualizován",
"Credential recovered" : "Přihlašovací údaje obnoveny",
"Credential destroyed" : "Přihlašovací údaje zlikvidovány",
"Error downloading file, you probably have insufficient permissions" : "Chyba při stahování souboru, nejspíš nemáte potřebná oprávnění",
@ -46,7 +46,7 @@ OC.L10N.register(
"Password audit" : "Audit hesel",
"Password settings" : "Nastavení hesla",
"Import credentials" : "Importovat přihlašovací údaje",
"Export credentials" : "Exportovat pověření",
"Export credentials" : "Exportovat přihlašovací údaje",
"Sharing" : "Sdílení",
"Are you sure you want to leave? This will destroy all your credentials" : "Opravdu chcete odejít? Všechna vaše pověření budou ztracena",
"Old password field incorrect!" : "Kolonka původní heslo není vyplněná správně!",
@ -82,7 +82,7 @@ OC.L10N.register(
"There was an error fetching the icon!" : "Při získávání ikony došlo k chybě!",
"Selected icon" : "Vybraná ikona",
"Field label" : "Štítek kolonky",
"Field value" : "Hodnota kolonky",
"Field value" : "Hodnota v kolonce",
"Choose a file" : "Vyberte soubor",
"Text" : "Text",
"File" : "Soubor",
@ -104,7 +104,7 @@ OC.L10N.register(
"Disabled" : "Zakázáno",
"Day(s)" : "Dnů",
"Week(s)" : "Týdny",
"Month(s)" : "Měsíc(e)",
"Month(s)" : "Měsíc(e)",
"Year(s)" : "rok(y)",
"Password generation settings" : "Nastavení vytváření hesel",
"Password length" : "Délka hesla",
@ -113,7 +113,7 @@ OC.L10N.register(
"Use lowercase letters" : "Použít malá písmena",
"Use numbers" : "Použít čísla",
"Use special characters" : "Použít speciální znaky",
"Avoid ambiguous characters" : "Vynechat nejednoznačné znaky",
"Avoid ambiguous characters" : "Vynechat nesnadno od sebe rozlišitelné znaky",
"Require every character type" : "Vyžadovat každý typ znaku",
"Export type" : "Typ exportu",
"Export" : "Export",
@ -125,10 +125,10 @@ OC.L10N.register(
"Old vault password" : "Původní heslo trezoru",
"New vault password" : "Nové heslo k trezoru",
"Repeat new vault password" : "Zopakujte nové heslo trezoru",
"Please wait your vault is being updated, do not leave this page." : "Čekejte, váš trezor se aktualizuje, neopouštějte tuto stránku.",
"Please wait your vault is being updated, do not leave this page." : "Čekejte, váš trezor se aktualizuje neopouštějte tuto stránku.",
"Processing" : "Zpracování",
"Total progress" : "Celkový průběh",
"About Passman" : "O Passman",
"About Passman" : "O aplikaci Passman",
"Version" : "Verze",
"Donate to support development" : "Přispějte na podporu vývoje",
"Bookmarklet" : "Záložky",
@ -268,7 +268,7 @@ OC.L10N.register(
"An admin then accepts or declines the request" : "Správce pak požadavek buď přijme nebo odmítne",
"After an admin destroys this vault, all credentials in it will be lost" : "Poté, co správce potvrdí likvidaci tohoto trezoru, všechna pověření budou ztracena",
"Reason for requesting deletion (optional):" : "Důvod žádosti o smazání (volitelné):",
"Request vault destruction" : "Požádat o zničení trezoru",
"Request vault destruction" : "Požádat o zlikvidování trezoru",
"Yes, request an admin to destroy this vault" : "Ano, požádat správce o zlikvidování tohoto trezoru",
"Cancel destruction request" : "Zrušit požadavek na likvidaci",
"Vault destruction requested" : "Vyžádáno zlikvidování trezoru",
@ -293,12 +293,11 @@ OC.L10N.register(
"Click here to request it" : "Pro vyžádání klikněte sem",
"Loading…" : "Načítání…",
"Awwhh… credential not found. Maybe it expired" : "Hmmmm… přihlašovací údaje nenalezeny. Možná jejich platnost skončila",
"Compromise!" : "Kompromitovat!",
"Mark as Compromised" : "Označit jako kompromitované",
"Compromised!" : "Kompromitováno!",
"This password is compromised. You can only remove this warning by changing the password." : "Toto heslo je kompromitováno. Toto varování je možné zrušit pouze změnou hesla.",
"This password is compromised. You can only remove this warning by changing the password." : "Toto heslo je kompromitováno. Tohoto varování je možné se zbavit pouze změnou hesla.",
"email" : "e-mail",
"Description" : "Popis",
"Url" : "URL adresa",
"Custom Search:" : "Uživatelsky určené hledání:",
"Revert to defaults" : "Vrátit zpět na výchozí hodnoty",
"Error while saving field" : "Chyba při ukládání obsahu kolonky",
@ -328,7 +327,7 @@ OC.L10N.register(
"Your credential \"%s\" expired, click here to update the credential." : "Platnost vašeho pověření „%s“ skončila, pro obnovení klikněte sem",
"Remind me later" : "Připomenout později",
"Ignore" : "Ignorovat",
"%s shared \"%s\" with you. Click here to accept" : "%s s vámi sdílí „%s“. Přijmete kliknutím",
"%s shared \"%s\" with you. Click here to accept" : "%s vám nasdílel(a) „%s“. Přijmete kliknutím sem",
"%s has declined your share request for \"%s\"." : "%s zamítl(a) váš požadavek na sdílení „%s“.",
"%s has accepted your share request for \"%s\"." : "%s přijal(a) váš požadavek na sdílení „%s“.",
"Passman" : "Passman",
@ -358,10 +357,10 @@ OC.L10N.register(
"Click here to request\n\t\t\t\t\tit" : "Klikněte sem pro\n\t\t\t\t\tžádost",
"Loading&hellip;" : "Načítání&hellip;",
"Awwhh… could not find the credential. Maybe it expired?" : "Hmmmm… pověření nenalezeno. Možná jeho platnost skončila?",
"Expires:" : "Platnost končí:",
"Expires:" : "Platnost skončí:",
"Connection to server lost" : "Připojení k serveru ztraceno",
"Problem loading page, reloading in 5 seconds" : "Problém s načítáním stránky, obnovení za 5 sekund",
"Saving..." : "Ukládání…",
"Saving" : "Ukládání…",
"Dismiss" : "Zavřít",
"seconds ago" : "před pár sekundami"
},

View file

@ -6,11 +6,11 @@
"Custom Fields" : "Uživatelsky určené kolonky",
"Please fill in a label." : "Vyplňte štítek.",
"Please fill in a value." : "Vyplňte hodnotu.",
"Error loading file" : "Chyba načítání souboru",
"Error loading file" : "Chyba při načítání souboru",
"An error occurred during decryption" : "Při rozšifrovávání došlo k chybě",
"Credential created!" : "Přihlašovací údaje vytvořeny!",
"Credential deleted" : "Přihlašovací údaj smazán",
"Credential updated" : "Přihlašovací údaje zaktualizovány",
"Credential updated" : "Přihlašovací údaj zaktualizován",
"Credential recovered" : "Přihlašovací údaje obnoveny",
"Credential destroyed" : "Přihlašovací údaje zlikvidovány",
"Error downloading file, you probably have insufficient permissions" : "Chyba při stahování souboru, nejspíš nemáte potřebná oprávnění",
@ -44,7 +44,7 @@
"Password audit" : "Audit hesel",
"Password settings" : "Nastavení hesla",
"Import credentials" : "Importovat přihlašovací údaje",
"Export credentials" : "Exportovat pověření",
"Export credentials" : "Exportovat přihlašovací údaje",
"Sharing" : "Sdílení",
"Are you sure you want to leave? This will destroy all your credentials" : "Opravdu chcete odejít? Všechna vaše pověření budou ztracena",
"Old password field incorrect!" : "Kolonka původní heslo není vyplněná správně!",
@ -80,7 +80,7 @@
"There was an error fetching the icon!" : "Při získávání ikony došlo k chybě!",
"Selected icon" : "Vybraná ikona",
"Field label" : "Štítek kolonky",
"Field value" : "Hodnota kolonky",
"Field value" : "Hodnota v kolonce",
"Choose a file" : "Vyberte soubor",
"Text" : "Text",
"File" : "Soubor",
@ -102,7 +102,7 @@
"Disabled" : "Zakázáno",
"Day(s)" : "Dnů",
"Week(s)" : "Týdny",
"Month(s)" : "Měsíc(e)",
"Month(s)" : "Měsíc(e)",
"Year(s)" : "rok(y)",
"Password generation settings" : "Nastavení vytváření hesel",
"Password length" : "Délka hesla",
@ -111,7 +111,7 @@
"Use lowercase letters" : "Použít malá písmena",
"Use numbers" : "Použít čísla",
"Use special characters" : "Použít speciální znaky",
"Avoid ambiguous characters" : "Vynechat nejednoznačné znaky",
"Avoid ambiguous characters" : "Vynechat nesnadno od sebe rozlišitelné znaky",
"Require every character type" : "Vyžadovat každý typ znaku",
"Export type" : "Typ exportu",
"Export" : "Export",
@ -123,10 +123,10 @@
"Old vault password" : "Původní heslo trezoru",
"New vault password" : "Nové heslo k trezoru",
"Repeat new vault password" : "Zopakujte nové heslo trezoru",
"Please wait your vault is being updated, do not leave this page." : "Čekejte, váš trezor se aktualizuje, neopouštějte tuto stránku.",
"Please wait your vault is being updated, do not leave this page." : "Čekejte, váš trezor se aktualizuje neopouštějte tuto stránku.",
"Processing" : "Zpracování",
"Total progress" : "Celkový průběh",
"About Passman" : "O Passman",
"About Passman" : "O aplikaci Passman",
"Version" : "Verze",
"Donate to support development" : "Přispějte na podporu vývoje",
"Bookmarklet" : "Záložky",
@ -266,7 +266,7 @@
"An admin then accepts or declines the request" : "Správce pak požadavek buď přijme nebo odmítne",
"After an admin destroys this vault, all credentials in it will be lost" : "Poté, co správce potvrdí likvidaci tohoto trezoru, všechna pověření budou ztracena",
"Reason for requesting deletion (optional):" : "Důvod žádosti o smazání (volitelné):",
"Request vault destruction" : "Požádat o zničení trezoru",
"Request vault destruction" : "Požádat o zlikvidování trezoru",
"Yes, request an admin to destroy this vault" : "Ano, požádat správce o zlikvidování tohoto trezoru",
"Cancel destruction request" : "Zrušit požadavek na likvidaci",
"Vault destruction requested" : "Vyžádáno zlikvidování trezoru",
@ -291,12 +291,11 @@
"Click here to request it" : "Pro vyžádání klikněte sem",
"Loading…" : "Načítání…",
"Awwhh… credential not found. Maybe it expired" : "Hmmmm… přihlašovací údaje nenalezeny. Možná jejich platnost skončila",
"Compromise!" : "Kompromitovat!",
"Mark as Compromised" : "Označit jako kompromitované",
"Compromised!" : "Kompromitováno!",
"This password is compromised. You can only remove this warning by changing the password." : "Toto heslo je kompromitováno. Toto varování je možné zrušit pouze změnou hesla.",
"This password is compromised. You can only remove this warning by changing the password." : "Toto heslo je kompromitováno. Tohoto varování je možné se zbavit pouze změnou hesla.",
"email" : "e-mail",
"Description" : "Popis",
"Url" : "URL adresa",
"Custom Search:" : "Uživatelsky určené hledání:",
"Revert to defaults" : "Vrátit zpět na výchozí hodnoty",
"Error while saving field" : "Chyba při ukládání obsahu kolonky",
@ -326,7 +325,7 @@
"Your credential \"%s\" expired, click here to update the credential." : "Platnost vašeho pověření „%s“ skončila, pro obnovení klikněte sem",
"Remind me later" : "Připomenout později",
"Ignore" : "Ignorovat",
"%s shared \"%s\" with you. Click here to accept" : "%s s vámi sdílí „%s“. Přijmete kliknutím",
"%s shared \"%s\" with you. Click here to accept" : "%s vám nasdílel(a) „%s“. Přijmete kliknutím sem",
"%s has declined your share request for \"%s\"." : "%s zamítl(a) váš požadavek na sdílení „%s“.",
"%s has accepted your share request for \"%s\"." : "%s přijal(a) váš požadavek na sdílení „%s“.",
"Passman" : "Passman",
@ -356,10 +355,10 @@
"Click here to request\n\t\t\t\t\tit" : "Klikněte sem pro\n\t\t\t\t\tžádost",
"Loading&hellip;" : "Načítání&hellip;",
"Awwhh… could not find the credential. Maybe it expired?" : "Hmmmm… pověření nenalezeno. Možná jeho platnost skončila?",
"Expires:" : "Platnost končí:",
"Expires:" : "Platnost skončí:",
"Connection to server lost" : "Připojení k serveru ztraceno",
"Problem loading page, reloading in 5 seconds" : "Problém s načítáním stránky, obnovení za 5 sekund",
"Saving..." : "Ukládání…",
"Saving" : "Ukládání…",
"Dismiss" : "Zavřít",
"seconds ago" : "před pár sekundami"
},"pluralForm" :"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;"

View file

@ -36,7 +36,6 @@ OC.L10N.register(
"Tags" : "Tagiau",
"Loading…" : "Yn llwytho…",
"Description" : "Disgrifiad",
"Saving..." : "Yn cadw...",
"seconds ago" : "eiliad yn ôl"
},
"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;");

View file

@ -34,7 +34,6 @@
"Tags" : "Tagiau",
"Loading…" : "Yn llwytho…",
"Description" : "Disgrifiad",
"Saving..." : "Yn cadw...",
"seconds ago" : "eiliad yn ôl"
},"pluralForm" :"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"
}

View file

@ -229,7 +229,6 @@ OC.L10N.register(
"Simple Navigation" : "Simpel Navigation",
"Click here to request it" : "Klik her for at bede om det",
"Loading…" : "Indlæser…",
"Compromise!" : "Marker kompromis!",
"Compromised!" : "Markeret kompromis!",
"email" : "e-mail",
"Description" : "Beskrivelse",
@ -260,7 +259,7 @@ OC.L10N.register(
"Expires:" : "Udløber:",
"Connection to server lost" : "Mistede forbindelsen til serveren",
"Problem loading page, reloading in 5 seconds" : "Problem med indlæsning af side, genindlæser om 5 sekunder",
"Saving..." : "Gemmer...",
"Saving …" : "Gemmer…",
"Dismiss" : "Afvis",
"seconds ago" : "sekunder siden"
},

View file

@ -227,7 +227,6 @@
"Simple Navigation" : "Simpel Navigation",
"Click here to request it" : "Klik her for at bede om det",
"Loading…" : "Indlæser…",
"Compromise!" : "Marker kompromis!",
"Compromised!" : "Markeret kompromis!",
"email" : "e-mail",
"Description" : "Beskrivelse",
@ -258,7 +257,7 @@
"Expires:" : "Udløber:",
"Connection to server lost" : "Mistede forbindelsen til serveren",
"Problem loading page, reloading in 5 seconds" : "Problem med indlæsning af side, genindlæser om 5 sekunder",
"Saving..." : "Gemmer...",
"Saving …" : "Gemmer…",
"Dismiss" : "Afvis",
"seconds ago" : "sekunder siden"
},"pluralForm" :"nplurals=2; plural=(n != 1);"

View file

@ -28,7 +28,7 @@ OC.L10N.register(
"Skipping credential, missing label on line {{line}}" : "Überspringe Anmeldeinformation, fehlende Bezeichnung in Zeile {{line}}",
"Parsed {{num}} credentials, starting to import" : "{{num}} Anmeldeinformationen eingelesen, Import wird gestartet",
"Importing" : "Importieren",
"Start import" : "Import starten",
"Start import" : "Beginne Import",
"Select CSV file" : "CSV-Datei auswählen",
"Parsed {{rows}} lines from CSV file" : "{{rows}} Zeilen der CSV-Datei gelesen",
"Skip first row" : "Erste Zeile überspringen",
@ -38,8 +38,8 @@ OC.L10N.register(
"Example of imported credential" : " Beispiel einer importierten Anmeldeinformation ",
"Missing an importer? Try it with the generic CSV importer." : "Fehlt ein Importer? Versuche es mit dem generischen CSV-Importer.",
"Go back to importers." : "Zurück zur Importfunktion.",
"Revision deleted" : "Überarbeitung gelöscht",
"Revision restored" : "Überarbeitung wiederhergestellt",
"Revision deleted" : "Revision gelöscht",
"Revision restored" : "Revision wiederhergestellt",
"Save in Passman" : "In Passman speichern ",
"Settings saved" : "Einstellungen gespeichert",
"General settings" : "Allgemeine Einstellungen",
@ -78,7 +78,7 @@ OC.L10N.register(
"Use this icon" : "Dieses Icon verwenden",
"Delete current icon" : "Das aktuelle Symbol löschen",
"Get icon from page" : "Symbol von der Seite nutzen",
"This may take a few seconds…" : "Das kann einige Sekunden daueren...",
"This may take a few seconds…" : "Das kann einige Sekunden dauern …",
"There was an error fetching the icon!" : "Fehler beim Laden des Symbols!",
"Selected icon" : "Icon auswählen",
"Field label" : "Feldbeschriftung",
@ -293,12 +293,11 @@ OC.L10N.register(
"Click here to request it" : "Hier klicken um es anzufordern",
"Loading…" : "Lade…",
"Awwhh… credential not found. Maybe it expired" : "Oh… Zugangsdaten nicht gefunden. Vielleicht sind sie abgelaufen ",
"Compromise!" : "Kompromittieren!",
"Mark as Compromised" : "Als kompromittiert markieren",
"Compromised!" : "Kompromittiert!",
"This password is compromised. You can only remove this warning by changing the password." : "Dieses Passwort wurde kompromittiert. Die Warnung kann nur durch eine Änderung des Passwortes entfernt werden.",
"email" : "E-Mail",
"Description" : "Beschreibung",
"Url" : "URL",
"Custom Search:" : "Benutzerdefinierte Suche:",
"Revert to defaults" : "Zurücksetzen auf Standardwerte",
"Error while saving field" : "Fehler beim Speichern des Feldes",
@ -361,8 +360,8 @@ OC.L10N.register(
"Expires:" : "Ablaufdatum:",
"Connection to server lost" : "Verbindung zum Server verloren",
"Problem loading page, reloading in 5 seconds" : "Problem beim Laden der Seite, Seite wird in 5 Sekunden nochmals geladen",
"Saving..." : "Speichere…",
"Dismiss" : "Ausblenden",
"Saving …" : "Speichern …",
"Dismiss" : "Verwerfen",
"seconds ago" : "Gerade eben"
},
"nplurals=2; plural=(n != 1);");

View file

@ -26,7 +26,7 @@
"Skipping credential, missing label on line {{line}}" : "Überspringe Anmeldeinformation, fehlende Bezeichnung in Zeile {{line}}",
"Parsed {{num}} credentials, starting to import" : "{{num}} Anmeldeinformationen eingelesen, Import wird gestartet",
"Importing" : "Importieren",
"Start import" : "Import starten",
"Start import" : "Beginne Import",
"Select CSV file" : "CSV-Datei auswählen",
"Parsed {{rows}} lines from CSV file" : "{{rows}} Zeilen der CSV-Datei gelesen",
"Skip first row" : "Erste Zeile überspringen",
@ -36,8 +36,8 @@
"Example of imported credential" : " Beispiel einer importierten Anmeldeinformation ",
"Missing an importer? Try it with the generic CSV importer." : "Fehlt ein Importer? Versuche es mit dem generischen CSV-Importer.",
"Go back to importers." : "Zurück zur Importfunktion.",
"Revision deleted" : "Überarbeitung gelöscht",
"Revision restored" : "Überarbeitung wiederhergestellt",
"Revision deleted" : "Revision gelöscht",
"Revision restored" : "Revision wiederhergestellt",
"Save in Passman" : "In Passman speichern ",
"Settings saved" : "Einstellungen gespeichert",
"General settings" : "Allgemeine Einstellungen",
@ -76,7 +76,7 @@
"Use this icon" : "Dieses Icon verwenden",
"Delete current icon" : "Das aktuelle Symbol löschen",
"Get icon from page" : "Symbol von der Seite nutzen",
"This may take a few seconds…" : "Das kann einige Sekunden daueren...",
"This may take a few seconds…" : "Das kann einige Sekunden dauern …",
"There was an error fetching the icon!" : "Fehler beim Laden des Symbols!",
"Selected icon" : "Icon auswählen",
"Field label" : "Feldbeschriftung",
@ -291,12 +291,11 @@
"Click here to request it" : "Hier klicken um es anzufordern",
"Loading…" : "Lade…",
"Awwhh… credential not found. Maybe it expired" : "Oh… Zugangsdaten nicht gefunden. Vielleicht sind sie abgelaufen ",
"Compromise!" : "Kompromittieren!",
"Mark as Compromised" : "Als kompromittiert markieren",
"Compromised!" : "Kompromittiert!",
"This password is compromised. You can only remove this warning by changing the password." : "Dieses Passwort wurde kompromittiert. Die Warnung kann nur durch eine Änderung des Passwortes entfernt werden.",
"email" : "E-Mail",
"Description" : "Beschreibung",
"Url" : "URL",
"Custom Search:" : "Benutzerdefinierte Suche:",
"Revert to defaults" : "Zurücksetzen auf Standardwerte",
"Error while saving field" : "Fehler beim Speichern des Feldes",
@ -359,8 +358,8 @@
"Expires:" : "Ablaufdatum:",
"Connection to server lost" : "Verbindung zum Server verloren",
"Problem loading page, reloading in 5 seconds" : "Problem beim Laden der Seite, Seite wird in 5 Sekunden nochmals geladen",
"Saving..." : "Speichere…",
"Dismiss" : "Ausblenden",
"Saving …" : "Speichern …",
"Dismiss" : "Verwerfen",
"seconds ago" : "Gerade eben"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View file

@ -78,7 +78,7 @@ OC.L10N.register(
"Use this icon" : "Dieses Icon verwenden",
"Delete current icon" : "Das aktuelle Symbol löschen",
"Get icon from page" : "Symbol von der Seite nutzen",
"This may take a few seconds…" : "Das kann einige Sekunden daueren...",
"This may take a few seconds…" : "Das kann einige Sekunden dauern …",
"There was an error fetching the icon!" : "Fehler beim Laden des Symbols!",
"Selected icon" : "Icon auswählen",
"Field label" : "Beschriftung des Feldes",
@ -100,7 +100,7 @@ OC.L10N.register(
"Secret" : "Geheimnis",
"Expiration date" : "Ablaufdatum",
"No expiration date set" : "Kein Ablaufdatum gesetzt ",
"Renew interval" : "Intervall erneuern",
"Renew interval" : "Erneuerungsintervall",
"Disabled" : "Deaktiviert",
"Day(s)" : "Tag(e)",
"Week(s)" : "Woche(n)",
@ -172,7 +172,7 @@ OC.L10N.register(
"Enable link sharing" : "Freigaben über Links aktivieren",
"Share until date" : "Freigabe gültig bis Datum",
"Expire after views" : "Läuft nach dem Anschauen ab",
"Click \\\"Share\\\" first" : "Erst auf \\\"Teilen\\\" klicken",
"Click \\\"Share\\\" first" : "Erst auf \"Teilen\" klicken",
"Show files" : "Dateien anzeigen",
"Details" : "Details",
"Hide details" : "Details ausblenden",
@ -211,7 +211,7 @@ OC.L10N.register(
"Settings" : "Einstellungen",
"Share credential {{credential}}" : "Anmeldeinformation {{credential}} teilen",
"Unshare" : "Freigabe aufheben",
"Showing deleted since" : "Anzeigen gelöscht seit",
"Showing deleted since" : "Zeige gelöschte seit",
"Beginning" : "Beginn",
"Showing {{number_filtered}} of {{credential_number}} credentials" : "{{number_filtered}} von {{credential_number}} Anmeldeinformationen anzeigen",
"Search for credential…" : "Suche Anmeldeinformationen…",
@ -251,7 +251,7 @@ OC.L10N.register(
"There are no credentials matching" : "Keine passenden Anmeldedaten",
"Last accessed" : "Letzter Zugriff",
"Never" : "Nie",
"No vaults found, why not create one?" : "Kein Tresor gefunden, warum kein neues erstellen?",
"No vaults found, why not create one?" : "Kein Tresor gefunden, möchten Sie einen erstellen?",
"Password strength must be at least: {{strength}}" : "Mindest erforderliche Passwortstärke: {{strength}}",
"Please give your new vault a name." : "Bitte einen Namen für den neuen Tresor eingeben.",
"Repeat vault password" : "Tresor-Passwort wiederholen",
@ -293,12 +293,11 @@ OC.L10N.register(
"Click here to request it" : "Hier klicken um es anzufordern",
"Loading…" : "Lade…",
"Awwhh… credential not found. Maybe it expired" : "Oh… Zugangsdaten nicht gefunden. Vielleicht sind sie abgelaufen ",
"Compromise!" : "Kompromittieren!",
"Mark as Compromised" : "Als kompromittiert markieren",
"Compromised!" : "Kompromittiert!",
"This password is compromised. You can only remove this warning by changing the password." : "Dieses Passwort wurde kompromittiert. Die Warnung kann nur durch eine Änderung des Passwortes entfernt werden.",
"email" : "E-Mail",
"Description" : "Beschreibung",
"Url" : "URL",
"Custom Search:" : "Benutzerdefinierte Suche:",
"Revert to defaults" : "Zurücksetzen auf Standardwerte",
"Error while saving field" : "Fehler beim Speichern des Feldes",
@ -310,7 +309,7 @@ OC.L10N.register(
"You created %1$s" : "Sie haben %1$s erstellt",
"%1$s has been updated by %2$s" : "%1$s wurde durch %2$s aktualisiert",
"You updated %1$s" : "Sie haben %1$s aktualisiert",
"%2$s has revised %1$s to the revision of %3$s" : "%2$s hat %1$s auf die Revision %3$s revidiert",
"%2$s has revised %1$s to the revision of %3$s" : "%2$s hat %1$s auf die Revision %3$s zurückgesetzt",
"You reverted %1$s back to the revision of %3$s" : "Sie haben %1$s auf die Revision %3$s rückgängig gemacht",
"%3$s has renamed %1$s to %2$s" : "%3$s hat %1$s zu %2$s umbenannt",
"You renamed %1$s to %2$s" : "Sie haben %1$s zu %2$s umbenannt",
@ -326,7 +325,7 @@ OC.L10N.register(
"%s has been shared with a link" : "%s wurde über einen Link geteilt",
"Passwords" : "Passwörter",
"Your credential \"%s\" expired, click here to update the credential." : "Ihre Anmeldedaten \"%s\" sind abgelaufen, klicken Sie zur Aktualisierung ihrer Anmeldedaten hier.",
"Remind me later" : "Erinnern Sie mich später",
"Remind me later" : "Erinnere mich später",
"Ignore" : "Ignorieren",
"%s shared \"%s\" with you. Click here to accept" : "%s teilt \"%s\" mit Ihnen. Um dies zu akzeptieren, klicken Sie bitte hier",
"%s has declined your share request for \"%s\"." : "%s hat das Teilen von \"%s\" mit Ihnen abgelehnt.",
@ -361,7 +360,7 @@ OC.L10N.register(
"Expires:" : "Ablaufdatum:",
"Connection to server lost" : "Verbindung zum Server verloren",
"Problem loading page, reloading in 5 seconds" : "Problem beim Laden der Seite, Seite wird in 5 Sekunden erneut geladen",
"Saving..." : "Speichere…",
"Saving" : "Speichere…",
"Dismiss" : "Ausblenden",
"seconds ago" : "Gerade eben"
},

View file

@ -76,7 +76,7 @@
"Use this icon" : "Dieses Icon verwenden",
"Delete current icon" : "Das aktuelle Symbol löschen",
"Get icon from page" : "Symbol von der Seite nutzen",
"This may take a few seconds…" : "Das kann einige Sekunden daueren...",
"This may take a few seconds…" : "Das kann einige Sekunden dauern …",
"There was an error fetching the icon!" : "Fehler beim Laden des Symbols!",
"Selected icon" : "Icon auswählen",
"Field label" : "Beschriftung des Feldes",
@ -98,7 +98,7 @@
"Secret" : "Geheimnis",
"Expiration date" : "Ablaufdatum",
"No expiration date set" : "Kein Ablaufdatum gesetzt ",
"Renew interval" : "Intervall erneuern",
"Renew interval" : "Erneuerungsintervall",
"Disabled" : "Deaktiviert",
"Day(s)" : "Tag(e)",
"Week(s)" : "Woche(n)",
@ -170,7 +170,7 @@
"Enable link sharing" : "Freigaben über Links aktivieren",
"Share until date" : "Freigabe gültig bis Datum",
"Expire after views" : "Läuft nach dem Anschauen ab",
"Click \\\"Share\\\" first" : "Erst auf \\\"Teilen\\\" klicken",
"Click \\\"Share\\\" first" : "Erst auf \"Teilen\" klicken",
"Show files" : "Dateien anzeigen",
"Details" : "Details",
"Hide details" : "Details ausblenden",
@ -209,7 +209,7 @@
"Settings" : "Einstellungen",
"Share credential {{credential}}" : "Anmeldeinformation {{credential}} teilen",
"Unshare" : "Freigabe aufheben",
"Showing deleted since" : "Anzeigen gelöscht seit",
"Showing deleted since" : "Zeige gelöschte seit",
"Beginning" : "Beginn",
"Showing {{number_filtered}} of {{credential_number}} credentials" : "{{number_filtered}} von {{credential_number}} Anmeldeinformationen anzeigen",
"Search for credential…" : "Suche Anmeldeinformationen…",
@ -249,7 +249,7 @@
"There are no credentials matching" : "Keine passenden Anmeldedaten",
"Last accessed" : "Letzter Zugriff",
"Never" : "Nie",
"No vaults found, why not create one?" : "Kein Tresor gefunden, warum kein neues erstellen?",
"No vaults found, why not create one?" : "Kein Tresor gefunden, möchten Sie einen erstellen?",
"Password strength must be at least: {{strength}}" : "Mindest erforderliche Passwortstärke: {{strength}}",
"Please give your new vault a name." : "Bitte einen Namen für den neuen Tresor eingeben.",
"Repeat vault password" : "Tresor-Passwort wiederholen",
@ -291,12 +291,11 @@
"Click here to request it" : "Hier klicken um es anzufordern",
"Loading…" : "Lade…",
"Awwhh… credential not found. Maybe it expired" : "Oh… Zugangsdaten nicht gefunden. Vielleicht sind sie abgelaufen ",
"Compromise!" : "Kompromittieren!",
"Mark as Compromised" : "Als kompromittiert markieren",
"Compromised!" : "Kompromittiert!",
"This password is compromised. You can only remove this warning by changing the password." : "Dieses Passwort wurde kompromittiert. Die Warnung kann nur durch eine Änderung des Passwortes entfernt werden.",
"email" : "E-Mail",
"Description" : "Beschreibung",
"Url" : "URL",
"Custom Search:" : "Benutzerdefinierte Suche:",
"Revert to defaults" : "Zurücksetzen auf Standardwerte",
"Error while saving field" : "Fehler beim Speichern des Feldes",
@ -308,7 +307,7 @@
"You created %1$s" : "Sie haben %1$s erstellt",
"%1$s has been updated by %2$s" : "%1$s wurde durch %2$s aktualisiert",
"You updated %1$s" : "Sie haben %1$s aktualisiert",
"%2$s has revised %1$s to the revision of %3$s" : "%2$s hat %1$s auf die Revision %3$s revidiert",
"%2$s has revised %1$s to the revision of %3$s" : "%2$s hat %1$s auf die Revision %3$s zurückgesetzt",
"You reverted %1$s back to the revision of %3$s" : "Sie haben %1$s auf die Revision %3$s rückgängig gemacht",
"%3$s has renamed %1$s to %2$s" : "%3$s hat %1$s zu %2$s umbenannt",
"You renamed %1$s to %2$s" : "Sie haben %1$s zu %2$s umbenannt",
@ -324,7 +323,7 @@
"%s has been shared with a link" : "%s wurde über einen Link geteilt",
"Passwords" : "Passwörter",
"Your credential \"%s\" expired, click here to update the credential." : "Ihre Anmeldedaten \"%s\" sind abgelaufen, klicken Sie zur Aktualisierung ihrer Anmeldedaten hier.",
"Remind me later" : "Erinnern Sie mich später",
"Remind me later" : "Erinnere mich später",
"Ignore" : "Ignorieren",
"%s shared \"%s\" with you. Click here to accept" : "%s teilt \"%s\" mit Ihnen. Um dies zu akzeptieren, klicken Sie bitte hier",
"%s has declined your share request for \"%s\"." : "%s hat das Teilen von \"%s\" mit Ihnen abgelehnt.",
@ -359,7 +358,7 @@
"Expires:" : "Ablaufdatum:",
"Connection to server lost" : "Verbindung zum Server verloren",
"Problem loading page, reloading in 5 seconds" : "Problem beim Laden der Seite, Seite wird in 5 Sekunden erneut geladen",
"Saving..." : "Speichere…",
"Saving" : "Speichere…",
"Dismiss" : "Ausblenden",
"seconds ago" : "Gerade eben"
},"pluralForm" :"nplurals=2; plural=(n != 1);"

View file

@ -293,12 +293,11 @@ OC.L10N.register(
"Click here to request it" : "Κάντε κλικ εδώ για να το αιτηθείτε",
"Loading…" : "Γίνεται φόρτωση...",
"Awwhh… credential not found. Maybe it expired" : "Awwhh… τα διαπιστευτήρια δεν βρέθηκαν. Ίσως έληξαν",
"Compromise!" : "Διακινδυνευμένο!",
"Mark as Compromised" : "Επισήμανση ως συμβιβασμένου",
"Compromised!" : "Με κίνδυνο!",
"This password is compromised. You can only remove this warning by changing the password." : "Ο κωδικός είναι διακινδυνεμένος. Μπορείτε να αφαιρέσετε αυτή την προειδοποίηση αλλάζοντας τον κωδικό.",
"email" : "ηλεκτρονικό ταχυδρομείο",
"Description" : "Περιγραφή",
"Url" : "Url",
"Custom Search:" : "Προσαρμοσμένη Αναζήτηση:",
"Revert to defaults" : "Επαναφορά στις προεπιλογές",
"Error while saving field" : "Σφάλμα κατά την αποθήκευση πεδίου",
@ -361,7 +360,7 @@ OC.L10N.register(
"Expires:" : "Ληγμένα:",
"Connection to server lost" : "Η σύνδεση στον διακομιστή διακόπηκε",
"Problem loading page, reloading in 5 seconds" : "Πρόβλημα φόρτωσης σελίδας, φόρτωση ξανά σε 5 δευτερόλεπτα",
"Saving..." : "Γίνεται αποθήκευση...",
"Saving …" : "Αποθηκεύεται ...",
"Dismiss" : "Αποδέσμευση",
"seconds ago" : "δευτερόλεπτα πριν"
},

View file

@ -291,12 +291,11 @@
"Click here to request it" : "Κάντε κλικ εδώ για να το αιτηθείτε",
"Loading…" : "Γίνεται φόρτωση...",
"Awwhh… credential not found. Maybe it expired" : "Awwhh… τα διαπιστευτήρια δεν βρέθηκαν. Ίσως έληξαν",
"Compromise!" : "Διακινδυνευμένο!",
"Mark as Compromised" : "Επισήμανση ως συμβιβασμένου",
"Compromised!" : "Με κίνδυνο!",
"This password is compromised. You can only remove this warning by changing the password." : "Ο κωδικός είναι διακινδυνεμένος. Μπορείτε να αφαιρέσετε αυτή την προειδοποίηση αλλάζοντας τον κωδικό.",
"email" : "ηλεκτρονικό ταχυδρομείο",
"Description" : "Περιγραφή",
"Url" : "Url",
"Custom Search:" : "Προσαρμοσμένη Αναζήτηση:",
"Revert to defaults" : "Επαναφορά στις προεπιλογές",
"Error while saving field" : "Σφάλμα κατά την αποθήκευση πεδίου",
@ -359,7 +358,7 @@
"Expires:" : "Ληγμένα:",
"Connection to server lost" : "Η σύνδεση στον διακομιστή διακόπηκε",
"Problem loading page, reloading in 5 seconds" : "Πρόβλημα φόρτωσης σελίδας, φόρτωση ξανά σε 5 δευτερόλεπτα",
"Saving..." : "Γίνεται αποθήκευση...",
"Saving …" : "Αποθηκεύεται ...",
"Dismiss" : "Αποδέσμευση",
"seconds ago" : "δευτερόλεπτα πριν"
},"pluralForm" :"nplurals=2; plural=(n != 1);"

View file

@ -295,7 +295,6 @@ OC.L10N.register(
"This password is compromised. You can only remove this warning by changing the password." : "This password is compromised. You can only remove this warning by changing the password.",
"email" : "email",
"Description" : "Description",
"Url" : "Url",
"Custom Search:" : "Custom Search:",
"Revert to defaults" : "Revert to defaults",
"Error while saving field" : "Error while saving field",
@ -357,7 +356,6 @@ OC.L10N.register(
"Expires:" : "Expires:",
"Connection to server lost" : "Connection to server lost",
"Problem loading page, reloading in 5 seconds" : "Problem loading page, reloading in 5 seconds",
"Saving..." : "Saving...",
"Dismiss" : "Dismiss",
"seconds ago" : "seconds ago"
},

View file

@ -293,7 +293,6 @@
"This password is compromised. You can only remove this warning by changing the password." : "This password is compromised. You can only remove this warning by changing the password.",
"email" : "email",
"Description" : "Description",
"Url" : "Url",
"Custom Search:" : "Custom Search:",
"Revert to defaults" : "Revert to defaults",
"Error while saving field" : "Error while saving field",
@ -355,7 +354,6 @@
"Expires:" : "Expires:",
"Connection to server lost" : "Connection to server lost",
"Problem loading page, reloading in 5 seconds" : "Problem loading page, reloading in 5 seconds",
"Saving..." : "Saving...",
"Dismiss" : "Dismiss",
"seconds ago" : "seconds ago"
},"pluralForm" :"nplurals=2; plural=(n != 1);"

View file

@ -79,7 +79,7 @@ OC.L10N.register(
"You deleted %1$s" : "Vi forigis %1$s",
"Passwords" : "Pasvortoj",
"Connection to server lost" : "Konekto al servilo perdita",
"Saving..." : "Konservado...",
"Saving" : "Konservado...",
"Dismiss" : "Preterpasi",
"seconds ago" : "antaŭ kelkaj sekundoj"
},

View file

@ -77,7 +77,7 @@
"You deleted %1$s" : "Vi forigis %1$s",
"Passwords" : "Pasvortoj",
"Connection to server lost" : "Konekto al servilo perdita",
"Saving..." : "Konservado...",
"Saving" : "Konservado...",
"Dismiss" : "Preterpasi",
"seconds ago" : "antaŭ kelkaj sekundoj"
},"pluralForm" :"nplurals=2; plural=(n != 1);"

View file

@ -293,12 +293,11 @@ OC.L10N.register(
"Click here to request it" : "Haz clic aquí para solicitarlo",
"Loading…" : "Cargando...",
"Awwhh… credential not found. Maybe it expired" : "Ooooh... No se ha encontrado la contraseña. Quizás haya caducado",
"Compromise!" : "¡Peligro!",
"Mark as Compromised" : "Marcar como Comprometida",
"Compromised!" : "¡Publicada!",
"This password is compromised. You can only remove this warning by changing the password." : "Esta contraseña ha sido publicada. Solo puedes eliminar esta advertencia cambiando la contraseña actual.",
"email" : "correo",
"Description" : "Descripción",
"Url" : "URL",
"Custom Search:" : "Búsqueda personalizada:",
"Revert to defaults" : "Volver a los valores por defecto",
"Error while saving field" : "Error mientras se guardaba el campo",
@ -361,7 +360,7 @@ OC.L10N.register(
"Expires:" : "Caduca:",
"Connection to server lost" : "Se ha perdido la conexión al servidor",
"Problem loading page, reloading in 5 seconds" : "Problema al cargar la página, recargando en 5 segundos",
"Saving..." : "Guardando...",
"Saving …" : "Guardando…",
"Dismiss" : "Descartar",
"seconds ago" : "hace segundos"
},

View file

@ -291,12 +291,11 @@
"Click here to request it" : "Haz clic aquí para solicitarlo",
"Loading…" : "Cargando...",
"Awwhh… credential not found. Maybe it expired" : "Ooooh... No se ha encontrado la contraseña. Quizás haya caducado",
"Compromise!" : "¡Peligro!",
"Mark as Compromised" : "Marcar como Comprometida",
"Compromised!" : "¡Publicada!",
"This password is compromised. You can only remove this warning by changing the password." : "Esta contraseña ha sido publicada. Solo puedes eliminar esta advertencia cambiando la contraseña actual.",
"email" : "correo",
"Description" : "Descripción",
"Url" : "URL",
"Custom Search:" : "Búsqueda personalizada:",
"Revert to defaults" : "Volver a los valores por defecto",
"Error while saving field" : "Error mientras se guardaba el campo",
@ -359,7 +358,7 @@
"Expires:" : "Caduca:",
"Connection to server lost" : "Se ha perdido la conexión al servidor",
"Problem loading page, reloading in 5 seconds" : "Problema al cargar la página, recargando en 5 segundos",
"Saving..." : "Guardando...",
"Saving …" : "Guardando…",
"Dismiss" : "Descartar",
"seconds ago" : "hace segundos"
},"pluralForm" :"nplurals=2; plural=(n != 1);"

View file

@ -316,7 +316,6 @@ OC.L10N.register(
"Click here to request\n\t\t\t\t\tit" : "Haz click aquí para solicitarlo ",
"Connection to server lost" : "Se perdió la conexión al servidor",
"Problem loading page, reloading in 5 seconds" : "Se presentó un problema al cargar la página, recargando en 5 segundos",
"Saving..." : "Guardando ...",
"Dismiss" : "Descartar",
"seconds ago" : "hace segundos"
},

View file

@ -314,7 +314,6 @@
"Click here to request\n\t\t\t\t\tit" : "Haz click aquí para solicitarlo ",
"Connection to server lost" : "Se perdió la conexión al servidor",
"Problem loading page, reloading in 5 seconds" : "Se presentó un problema al cargar la página, recargando en 5 segundos",
"Saving..." : "Guardando ...",
"Dismiss" : "Descartar",
"seconds ago" : "hace segundos"
},"pluralForm" :"nplurals=2; plural=(n != 1);"

View file

@ -283,7 +283,6 @@ OC.L10N.register(
"Reason" : "Razón",
"Connection to server lost" : "Se perdió la conexión al servidor",
"Problem loading page, reloading in 5 seconds" : "Se presentó un problema al cargar la página, recargando en 5 segundos",
"Saving..." : "Guardando ...",
"Dismiss" : "Descartar",
"seconds ago" : "segundos"
},

View file

@ -281,7 +281,6 @@
"Reason" : "Razón",
"Connection to server lost" : "Se perdió la conexión al servidor",
"Problem loading page, reloading in 5 seconds" : "Se presentó un problema al cargar la página, recargando en 5 segundos",
"Saving..." : "Guardando ...",
"Dismiss" : "Descartar",
"seconds ago" : "segundos"
},"pluralForm" :"nplurals=2; plural=(n != 1);"

View file

@ -318,7 +318,6 @@ OC.L10N.register(
"Loading&hellip;" : "Cargando&hellip;",
"Connection to server lost" : "Se perdió la conexión al servidor",
"Problem loading page, reloading in 5 seconds" : "Se presentó un problema al cargar la página, recargando en 5 segundos",
"Saving..." : "Guardando ...",
"Dismiss" : "Descartar",
"seconds ago" : "hace segundos"
},

View file

@ -316,7 +316,6 @@
"Loading&hellip;" : "Cargando&hellip;",
"Connection to server lost" : "Se perdió la conexión al servidor",
"Problem loading page, reloading in 5 seconds" : "Se presentó un problema al cargar la página, recargando en 5 segundos",
"Saving..." : "Guardando ...",
"Dismiss" : "Descartar",
"seconds ago" : "hace segundos"
},"pluralForm" :"nplurals=2; plural=(n != 1);"

View file

@ -318,7 +318,6 @@ OC.L10N.register(
"Loading&hellip;" : "Cargando&hellip;",
"Connection to server lost" : "Se perdió la conexión al servidor",
"Problem loading page, reloading in 5 seconds" : "Se presentó un problema al cargar la página, recargando en 5 segundos",
"Saving..." : "Guardando ...",
"Dismiss" : "Descartar",
"seconds ago" : "hace segundos"
},

View file

@ -316,7 +316,6 @@
"Loading&hellip;" : "Cargando&hellip;",
"Connection to server lost" : "Se perdió la conexión al servidor",
"Problem loading page, reloading in 5 seconds" : "Se presentó un problema al cargar la página, recargando en 5 segundos",
"Saving..." : "Guardando ...",
"Dismiss" : "Descartar",
"seconds ago" : "hace segundos"
},"pluralForm" :"nplurals=2; plural=(n != 1);"

View file

@ -318,7 +318,6 @@ OC.L10N.register(
"Loading&hellip;" : "Cargando&hellip;",
"Connection to server lost" : "Se perdió la conexión al servidor",
"Problem loading page, reloading in 5 seconds" : "Se presentó un problema al cargar la página, recargando en 5 segundos",
"Saving..." : "Guardando ...",
"Dismiss" : "Descartar",
"seconds ago" : "hace segundos"
},

View file

@ -316,7 +316,6 @@
"Loading&hellip;" : "Cargando&hellip;",
"Connection to server lost" : "Se perdió la conexión al servidor",
"Problem loading page, reloading in 5 seconds" : "Se presentó un problema al cargar la página, recargando en 5 segundos",
"Saving..." : "Guardando ...",
"Dismiss" : "Descartar",
"seconds ago" : "hace segundos"
},"pluralForm" :"nplurals=2; plural=(n != 1);"

View file

@ -318,7 +318,6 @@ OC.L10N.register(
"Loading&hellip;" : "Cargando&hellip;",
"Connection to server lost" : "Se perdió la conexión al servidor",
"Problem loading page, reloading in 5 seconds" : "Se presentó un problema al cargar la página, recargando en 5 segundos",
"Saving..." : "Guardando ...",
"Dismiss" : "Descartar",
"seconds ago" : "hace segundos"
},

View file

@ -316,7 +316,6 @@
"Loading&hellip;" : "Cargando&hellip;",
"Connection to server lost" : "Se perdió la conexión al servidor",
"Problem loading page, reloading in 5 seconds" : "Se presentó un problema al cargar la página, recargando en 5 segundos",
"Saving..." : "Guardando ...",
"Dismiss" : "Descartar",
"seconds ago" : "hace segundos"
},"pluralForm" :"nplurals=2; plural=(n != 1);"

View file

@ -318,7 +318,6 @@ OC.L10N.register(
"Loading&hellip;" : "Cargando&hellip;",
"Connection to server lost" : "Se perdió la conexión al servidor",
"Problem loading page, reloading in 5 seconds" : "Se presentó un problema al cargar la página, recargando en 5 segundos",
"Saving..." : "Guardando ...",
"Dismiss" : "Descartar",
"seconds ago" : "hace segundos"
},

View file

@ -316,7 +316,6 @@
"Loading&hellip;" : "Cargando&hellip;",
"Connection to server lost" : "Se perdió la conexión al servidor",
"Problem loading page, reloading in 5 seconds" : "Se presentó un problema al cargar la página, recargando en 5 segundos",
"Saving..." : "Guardando ...",
"Dismiss" : "Descartar",
"seconds ago" : "hace segundos"
},"pluralForm" :"nplurals=2; plural=(n != 1);"

View file

@ -318,7 +318,6 @@ OC.L10N.register(
"Loading&hellip;" : "Cargando&hellip;",
"Connection to server lost" : "Se perdió la conexión al servidor",
"Problem loading page, reloading in 5 seconds" : "Se presentó un problema al cargar la página, recargando en 5 segundos",
"Saving..." : "Guardando ...",
"Dismiss" : "Descartar",
"seconds ago" : "hace segundos"
},

View file

@ -316,7 +316,6 @@
"Loading&hellip;" : "Cargando&hellip;",
"Connection to server lost" : "Se perdió la conexión al servidor",
"Problem loading page, reloading in 5 seconds" : "Se presentó un problema al cargar la página, recargando en 5 segundos",
"Saving..." : "Guardando ...",
"Dismiss" : "Descartar",
"seconds ago" : "hace segundos"
},"pluralForm" :"nplurals=2; plural=(n != 1);"

View file

@ -316,7 +316,6 @@ OC.L10N.register(
"Click here to request\n\t\t\t\t\tit" : "Haz click aquí para solicitarlo ",
"Connection to server lost" : "Se perdió la conexión al servidor",
"Problem loading page, reloading in 5 seconds" : "Se presentó un problema al cargar la página, recargando en 5 segundos",
"Saving..." : "Guardando ...",
"Dismiss" : "Descartar",
"seconds ago" : "hace segundos"
},

View file

@ -314,7 +314,6 @@
"Click here to request\n\t\t\t\t\tit" : "Haz click aquí para solicitarlo ",
"Connection to server lost" : "Se perdió la conexión al servidor",
"Problem loading page, reloading in 5 seconds" : "Se presentó un problema al cargar la página, recargando en 5 segundos",
"Saving..." : "Guardando ...",
"Dismiss" : "Descartar",
"seconds ago" : "hace segundos"
},"pluralForm" :"nplurals=2; plural=(n != 1);"

View file

@ -320,7 +320,6 @@ OC.L10N.register(
"Loading&hellip;" : "Cargando&hellip;",
"Connection to server lost" : "Se perdió la conexión al servidor",
"Problem loading page, reloading in 5 seconds" : "Se presentó un problema al cargar la página, recargando en 5 segundos",
"Saving..." : "Guardando ...",
"Dismiss" : "Descartar",
"seconds ago" : "hace segundos"
},

View file

@ -318,7 +318,6 @@
"Loading&hellip;" : "Cargando&hellip;",
"Connection to server lost" : "Se perdió la conexión al servidor",
"Problem loading page, reloading in 5 seconds" : "Se presentó un problema al cargar la página, recargando en 5 segundos",
"Saving..." : "Guardando ...",
"Dismiss" : "Descartar",
"seconds ago" : "hace segundos"
},"pluralForm" :"nplurals=2; plural=(n != 1);"

View file

@ -316,7 +316,6 @@ OC.L10N.register(
"Click here to request\n\t\t\t\t\tit" : "Haz click aquí para solicitarlo ",
"Connection to server lost" : "Se perdió la conexión al servidor",
"Problem loading page, reloading in 5 seconds" : "Se presentó un problema al cargar la página, recargando en 5 segundos",
"Saving..." : "Guardando ...",
"Dismiss" : "Descartar",
"seconds ago" : "hace segundos"
},

View file

@ -314,7 +314,6 @@
"Click here to request\n\t\t\t\t\tit" : "Haz click aquí para solicitarlo ",
"Connection to server lost" : "Se perdió la conexión al servidor",
"Problem loading page, reloading in 5 seconds" : "Se presentó un problema al cargar la página, recargando en 5 segundos",
"Saving..." : "Guardando ...",
"Dismiss" : "Descartar",
"seconds ago" : "hace segundos"
},"pluralForm" :"nplurals=2; plural=(n != 1);"

View file

@ -316,7 +316,6 @@ OC.L10N.register(
"Click here to request\n\t\t\t\t\tit" : "Haz click aquí para solicitarlo ",
"Connection to server lost" : "Se perdió la conexión al servidor",
"Problem loading page, reloading in 5 seconds" : "Se presentó un problema al cargar la página, recargando en 5 segundos",
"Saving..." : "Guardando ...",
"Dismiss" : "Descartar",
"seconds ago" : "hace segundos"
},

View file

@ -314,7 +314,6 @@
"Click here to request\n\t\t\t\t\tit" : "Haz click aquí para solicitarlo ",
"Connection to server lost" : "Se perdió la conexión al servidor",
"Problem loading page, reloading in 5 seconds" : "Se presentó un problema al cargar la página, recargando en 5 segundos",
"Saving..." : "Guardando ...",
"Dismiss" : "Descartar",
"seconds ago" : "hace segundos"
},"pluralForm" :"nplurals=2; plural=(n != 1);"

View file

@ -316,7 +316,6 @@ OC.L10N.register(
"Click here to request\n\t\t\t\t\tit" : "Haz click aquí para solicitarlo ",
"Connection to server lost" : "Se perdió la conexión al servidor",
"Problem loading page, reloading in 5 seconds" : "Se presentó un problema al cargar la página, recargando en 5 segundos",
"Saving..." : "Guardando ...",
"Dismiss" : "Descartar",
"seconds ago" : "hace segundos"
},

View file

@ -314,7 +314,6 @@
"Click here to request\n\t\t\t\t\tit" : "Haz click aquí para solicitarlo ",
"Connection to server lost" : "Se perdió la conexión al servidor",
"Problem loading page, reloading in 5 seconds" : "Se presentó un problema al cargar la página, recargando en 5 segundos",
"Saving..." : "Guardando ...",
"Dismiss" : "Descartar",
"seconds ago" : "hace segundos"
},"pluralForm" :"nplurals=2; plural=(n != 1);"

View file

@ -316,7 +316,6 @@ OC.L10N.register(
"Click here to request\n\t\t\t\t\tit" : "Haz click aquí para solicitarlo ",
"Connection to server lost" : "Se perdió la conexión al servidor",
"Problem loading page, reloading in 5 seconds" : "Se presentó un problema al cargar la página, recargando en 5 segundos",
"Saving..." : "Guardando ...",
"Dismiss" : "Descartar",
"seconds ago" : "hace segundos"
},

View file

@ -314,7 +314,6 @@
"Click here to request\n\t\t\t\t\tit" : "Haz click aquí para solicitarlo ",
"Connection to server lost" : "Se perdió la conexión al servidor",
"Problem loading page, reloading in 5 seconds" : "Se presentó un problema al cargar la página, recargando en 5 segundos",
"Saving..." : "Guardando ...",
"Dismiss" : "Descartar",
"seconds ago" : "hace segundos"
},"pluralForm" :"nplurals=2; plural=(n != 1);"

View file

@ -316,7 +316,6 @@ OC.L10N.register(
"Click here to request\n\t\t\t\t\tit" : "Haz click aquí para solicitarlo ",
"Connection to server lost" : "Se perdió la conexión al servidor",
"Problem loading page, reloading in 5 seconds" : "Se presentó un problema al cargar la página, recargando en 5 segundos",
"Saving..." : "Guardando ...",
"Dismiss" : "Descartar",
"seconds ago" : "hace segundos"
},

View file

@ -314,7 +314,6 @@
"Click here to request\n\t\t\t\t\tit" : "Haz click aquí para solicitarlo ",
"Connection to server lost" : "Se perdió la conexión al servidor",
"Problem loading page, reloading in 5 seconds" : "Se presentó un problema al cargar la página, recargando en 5 segundos",
"Saving..." : "Guardando ...",
"Dismiss" : "Descartar",
"seconds ago" : "hace segundos"
},"pluralForm" :"nplurals=2; plural=(n != 1);"

View file

@ -318,7 +318,6 @@ OC.L10N.register(
"Loading&hellip;" : "Cargando&hellip;",
"Connection to server lost" : "Se perdió la conexión al servidor",
"Problem loading page, reloading in 5 seconds" : "Se presentó un problema al cargar la página, recargando en 5 segundos",
"Saving..." : "Guardando ...",
"Dismiss" : "Descartar",
"seconds ago" : "hace segundos"
},

View file

@ -316,7 +316,6 @@
"Loading&hellip;" : "Cargando&hellip;",
"Connection to server lost" : "Se perdió la conexión al servidor",
"Problem loading page, reloading in 5 seconds" : "Se presentó un problema al cargar la página, recargando en 5 segundos",
"Saving..." : "Guardando ...",
"Dismiss" : "Descartar",
"seconds ago" : "hace segundos"
},"pluralForm" :"nplurals=2; plural=(n != 1);"

View file

@ -316,7 +316,6 @@ OC.L10N.register(
"Click here to request\n\t\t\t\t\tit" : "Haz click aquí para solicitarlo ",
"Connection to server lost" : "Se perdió la conexión al servidor",
"Problem loading page, reloading in 5 seconds" : "Se presentó un problema al cargar la página, recargando en 5 segundos",
"Saving..." : "Guardando ...",
"Dismiss" : "Descartar",
"seconds ago" : "hace segundos"
},

View file

@ -314,7 +314,6 @@
"Click here to request\n\t\t\t\t\tit" : "Haz click aquí para solicitarlo ",
"Connection to server lost" : "Se perdió la conexión al servidor",
"Problem loading page, reloading in 5 seconds" : "Se presentó un problema al cargar la página, recargando en 5 segundos",
"Saving..." : "Guardando ...",
"Dismiss" : "Descartar",
"seconds ago" : "hace segundos"
},"pluralForm" :"nplurals=2; plural=(n != 1);"

View file

@ -7,6 +7,7 @@ OC.L10N.register(
"Please fill in a value." : "Palun sisesta väärtus.",
"Done" : "Valmis",
"Settings saved" : "Seaded salvestatud",
"Password settings" : "Parooli seaded",
"Sharing" : "Jagamine",
"Share with users and groups" : "Jaga kasutajate ja gruppidega",
"Share link" : "Jaga link",
@ -14,27 +15,40 @@ OC.L10N.register(
"Good" : "Hea",
"Copy to clipboard" : "Kopeeri lõikepuhvrisse",
"Username" : "Kasutajanimi",
"Delete current icon" : "Kustuta praegune ikoon",
"File" : "Fail",
"Add" : "Lisa",
"Type" : "Tüüp",
"Actions" : "Tegevused",
"Empty" : "Tühi",
"Filename" : "Faili nimi",
"Upload date" : "Üleslaadimise kuupäev",
"Size" : "Suurus",
"Issuer" : "Väljastaja",
"Secret" : "Salajane",
"Expiration date" : "Aegumise kuupäev",
"No expiration date set" : "Aegumise kuupäeva pole määratud",
"Disabled" : "Keelatud",
"Use numbers" : "Kasuta arve",
"Export" : "Ekspordi",
"Change" : "Muuda",
"Processing" : "Töötlemine",
"Version" : "Versioon",
"Import" : "Impordi",
"Public key" : "Avalik võti",
"Uploading" : "Üleslaadimine",
"User" : "Kasutaja",
"Read" : "Lugemine",
"Write" : "Kirjuta",
"Files" : "Failid",
"Pending" : "Ootel",
"Show files" : "Näita faile",
"Details" : "Üksikasjad",
"Hide details" : "Peida üksikasjad",
"Pattern" : "Muster",
"by" : "lisas",
"Label" : "Silt",
"Delete revision" : "Kustuta versioon",
"Save" : "Salvesta",
"Cancel" : "Loobu",
"Settings" : "Seaded",
@ -62,9 +76,9 @@ OC.L10N.register(
"You created %1$s" : "Sa tekitasid %1$s",
"You deleted %1$s" : "Sa kustutasid %1$s",
"Passwords" : "Paroolid",
"Ignore" : "Ignoreeri",
"Connection to server lost" : "Ühendus serveriga katkes",
"Problem loading page, reloading in 5 seconds" : "Tõrge lehe laadimisel, ümberlaadimine 5 sekundi pärast",
"Saving..." : "Salvestamine...",
"Dismiss" : "Jäta vahele",
"seconds ago" : "sekundit tagasi"
},

View file

@ -5,6 +5,7 @@
"Please fill in a value." : "Palun sisesta väärtus.",
"Done" : "Valmis",
"Settings saved" : "Seaded salvestatud",
"Password settings" : "Parooli seaded",
"Sharing" : "Jagamine",
"Share with users and groups" : "Jaga kasutajate ja gruppidega",
"Share link" : "Jaga link",
@ -12,27 +13,40 @@
"Good" : "Hea",
"Copy to clipboard" : "Kopeeri lõikepuhvrisse",
"Username" : "Kasutajanimi",
"Delete current icon" : "Kustuta praegune ikoon",
"File" : "Fail",
"Add" : "Lisa",
"Type" : "Tüüp",
"Actions" : "Tegevused",
"Empty" : "Tühi",
"Filename" : "Faili nimi",
"Upload date" : "Üleslaadimise kuupäev",
"Size" : "Suurus",
"Issuer" : "Väljastaja",
"Secret" : "Salajane",
"Expiration date" : "Aegumise kuupäev",
"No expiration date set" : "Aegumise kuupäeva pole määratud",
"Disabled" : "Keelatud",
"Use numbers" : "Kasuta arve",
"Export" : "Ekspordi",
"Change" : "Muuda",
"Processing" : "Töötlemine",
"Version" : "Versioon",
"Import" : "Impordi",
"Public key" : "Avalik võti",
"Uploading" : "Üleslaadimine",
"User" : "Kasutaja",
"Read" : "Lugemine",
"Write" : "Kirjuta",
"Files" : "Failid",
"Pending" : "Ootel",
"Show files" : "Näita faile",
"Details" : "Üksikasjad",
"Hide details" : "Peida üksikasjad",
"Pattern" : "Muster",
"by" : "lisas",
"Label" : "Silt",
"Delete revision" : "Kustuta versioon",
"Save" : "Salvesta",
"Cancel" : "Loobu",
"Settings" : "Seaded",
@ -60,9 +74,9 @@
"You created %1$s" : "Sa tekitasid %1$s",
"You deleted %1$s" : "Sa kustutasid %1$s",
"Passwords" : "Paroolid",
"Ignore" : "Ignoreeri",
"Connection to server lost" : "Ühendus serveriga katkes",
"Problem loading page, reloading in 5 seconds" : "Tõrge lehe laadimisel, ümberlaadimine 5 sekundi pärast",
"Saving..." : "Salvestamine...",
"Dismiss" : "Jäta vahele",
"seconds ago" : "sekundit tagasi"
},"pluralForm" :"nplurals=2; plural=(n != 1);"

View file

@ -261,7 +261,6 @@ OC.L10N.register(
"Awwhh… credential not found. Maybe it expired" : "Ooohh... ez da kredentziala aurkitu. Agian iraungitu da ",
"email" : "posta elektronikoa",
"Description" : "Deskribapena",
"Url" : "Url",
"Custom Search:" : "Bilaketa pertsonalizatua:",
"Revert to defaults" : "Berezarri lehenetsitakoak",
"Error while saving field" : "Errorea eremua gordetzean",
@ -302,6 +301,7 @@ OC.L10N.register(
"Disable JavaScript debugger" : "Desgaitu JavaScript araztailea",
"Allow users on this server to share passwords with a link" : "Baimendu zerbitzari honetako erabiltzaileek pasahitzak partekatu dezaten esteka batekin",
"Allow users on this server to share passwords with other users" : "Baimendu zerbitzari honetako erabiltzaileek beste erabiltzaileekin pasahitzak partekatzea",
"Move credentials from one account to another" : "Mugitu kontu baten kredentzialak beste batera",
"Source account" : "Iturburuko kontua",
"Destination account" : "Helburuko kontua",
"Credentials moved!" : "Kredentzialak mugituta!",
@ -314,7 +314,7 @@ OC.L10N.register(
"Expires:" : "Iraungitzea:",
"Connection to server lost" : "Zerbitzariarekiko konexioa eten da",
"Problem loading page, reloading in 5 seconds" : "Arazoa orria kargatzerakoan, 5 segundotan birkargatzen",
"Saving..." : "Gordetzen...",
"Saving …" : "Gordetzen …",
"Dismiss" : "Baztertu",
"seconds ago" : "duela segundo batzuk"
},

View file

@ -259,7 +259,6 @@
"Awwhh… credential not found. Maybe it expired" : "Ooohh... ez da kredentziala aurkitu. Agian iraungitu da ",
"email" : "posta elektronikoa",
"Description" : "Deskribapena",
"Url" : "Url",
"Custom Search:" : "Bilaketa pertsonalizatua:",
"Revert to defaults" : "Berezarri lehenetsitakoak",
"Error while saving field" : "Errorea eremua gordetzean",
@ -300,6 +299,7 @@
"Disable JavaScript debugger" : "Desgaitu JavaScript araztailea",
"Allow users on this server to share passwords with a link" : "Baimendu zerbitzari honetako erabiltzaileek pasahitzak partekatu dezaten esteka batekin",
"Allow users on this server to share passwords with other users" : "Baimendu zerbitzari honetako erabiltzaileek beste erabiltzaileekin pasahitzak partekatzea",
"Move credentials from one account to another" : "Mugitu kontu baten kredentzialak beste batera",
"Source account" : "Iturburuko kontua",
"Destination account" : "Helburuko kontua",
"Credentials moved!" : "Kredentzialak mugituta!",
@ -312,7 +312,7 @@
"Expires:" : "Iraungitzea:",
"Connection to server lost" : "Zerbitzariarekiko konexioa eten da",
"Problem loading page, reloading in 5 seconds" : "Arazoa orria kargatzerakoan, 5 segundotan birkargatzen",
"Saving..." : "Gordetzen...",
"Saving …" : "Gordetzen …",
"Dismiss" : "Baztertu",
"seconds ago" : "duela segundo batzuk"
},"pluralForm" :"nplurals=2; plural=(n != 1);"

View file

@ -293,12 +293,10 @@ OC.L10N.register(
"Click here to request it" : "به درخواست آن را در اینجا کلیک کنید",
"Loading…" : "بار کردن…",
"Awwhh… credential not found. Maybe it expired" : "Awwhh ... اعتبار یافت نشد. شاید منقضی شده باشد",
"Compromise!" : "به خطر افتادن!",
"Compromised!" : "در معرض خطر!",
"This password is compromised. You can only remove this warning by changing the password." : "این رمز عبور به خطر افتاده است. فقط با تغییر رمز عبور می توانید این هشدار را حذف کنید.",
"email" : "ایمیل",
"Description" : "توضیحات",
"Url" : "آدرس",
"Custom Search:" : "جستجوی سفارشی:",
"Revert to defaults" : "به پیش فرض برگردید",
"Error while saving field" : "هنگام ذخیره فیلد خطایی رخ داد",
@ -361,7 +359,6 @@ OC.L10N.register(
"Expires:" : "منقضی می شود:",
"Connection to server lost" : "اتصال به سرور از دست رفته است",
"Problem loading page, reloading in 5 seconds" : "صفحه بارگیری مشکل ، بارگیری مجدد در 5 ثانیه",
"Saving..." : "در حال ذخیره سازی...",
"Dismiss" : "پنهان کن",
"seconds ago" : "ثانیه‌هایی پیش"
},

View file

@ -291,12 +291,10 @@
"Click here to request it" : "به درخواست آن را در اینجا کلیک کنید",
"Loading…" : "بار کردن…",
"Awwhh… credential not found. Maybe it expired" : "Awwhh ... اعتبار یافت نشد. شاید منقضی شده باشد",
"Compromise!" : "به خطر افتادن!",
"Compromised!" : "در معرض خطر!",
"This password is compromised. You can only remove this warning by changing the password." : "این رمز عبور به خطر افتاده است. فقط با تغییر رمز عبور می توانید این هشدار را حذف کنید.",
"email" : "ایمیل",
"Description" : "توضیحات",
"Url" : "آدرس",
"Custom Search:" : "جستجوی سفارشی:",
"Revert to defaults" : "به پیش فرض برگردید",
"Error while saving field" : "هنگام ذخیره فیلد خطایی رخ داد",
@ -359,7 +357,6 @@
"Expires:" : "منقضی می شود:",
"Connection to server lost" : "اتصال به سرور از دست رفته است",
"Problem loading page, reloading in 5 seconds" : "صفحه بارگیری مشکل ، بارگیری مجدد در 5 ثانیه",
"Saving..." : "در حال ذخیره سازی...",
"Dismiss" : "پنهان کن",
"seconds ago" : "ثانیه‌هایی پیش"
},"pluralForm" :"nplurals=2; plural=(n > 1);"

View file

@ -14,18 +14,27 @@ OC.L10N.register(
"Credential updated" : "Tilitieto päivitetty",
"Credential recovered" : "Tilitieto palautettu",
"Credential destroyed" : "Tilitieto tuhottu",
"Error downloading file, you probably have insufficient permissions" : "Virhe tiedostoa ladatessa. Sinulla ei mitä luultavimmin ole riittäviä oikeuksia",
"Invalid QR code" : "Virheellinen QR-koodi",
"Starting export" : "Aloitetaan vienti",
"Decrypting credentials" : "Puretaan tunnisteiden salausta",
"Done" : "Valmis",
"File read." : "Tiedosto luettu.",
"Proceed with the following steps to import your file" : "Seuraa seuraavia ohjeita tuodaksesi tiedostosta.",
"Adding {{credential}}" : "Lisätään {{credential}}",
"Added {{credential}}" : "Lisätty {{credential}}",
"Parsed {{num}} credentials, starting to import" : "Käytiin läpi {{num}} tunnistetta, aloitetaan tuonti",
"Importing" : "Tuodaan",
"Start import" : "Aloita tuonti",
"Select CSV file" : "Valitse CSV-tiedosto",
"Parsed {{rows}} lines from CSV file" : "Käytiin läpi {{rows}} riviä CSV-tiedostosta",
"Skip first row" : "Ohita ensimmäinen rivi",
"You need to assign the label field before you can start the import." : "Sinun tulee määritellä nimikekenttä ennen tuonnin aloittamista.",
"The first 5 lines of the CSV are shown." : "CSV:n ensimmäiset viisi riviä näytetään.",
"Assign the proper fields to each column." : "Määrittele sopivat kentät kullekin sarakkeelle.",
"Example of imported credential" : "Esimerkki tuodusta tunnisteesta",
"Missing an importer? Try it with the generic CSV importer." : "Puuttuuko tuojaohjelma? Kokeile yleistä CSV-tuojaa.",
"Go back to importers." : "Takaisin tuojiin",
"Save in Passman" : "Tallenna Passmaniin",
"Settings saved" : "Asetukset tallennettu",
"General settings" : "Yleiset asetukset",
@ -33,6 +42,7 @@ OC.L10N.register(
"Import credentials" : "Tuo tilitetioja",
"Export credentials" : "Vie tilitietoja",
"Sharing" : "Jakaminen",
"Old password field incorrect!" : "Vanha salasana on väärä!",
"New password does not match!" : "Uusi salasana ei täsmää!",
"Please log in with your new vault password" : "Kirjaudu sisään uudella holvin salasanalla",
"Share with users and groups" : "Jaa käyttäjien ja ryhmien kanssa",
@ -49,6 +59,7 @@ OC.L10N.register(
"Generate password" : "Luo salasana",
"Copy password to clipboard" : "Kopioi salasana leikepöydälle",
"Password copied to clipboard!" : "Salasana kopioitu leikepöydälle!",
"Complete" : "Valmis",
"Username" : "Käyttäjätunnus",
"Repeat password" : "Toista salasana",
"Add tag" : "Lisää tunniste",
@ -56,6 +67,7 @@ OC.L10N.register(
"Search icons" : "Etsi kuvakkeita",
"Upload a custom icon:" : "Lähetä mukautettu kuvake:",
"Use this icon" : "Käytä tätä kuvaketta",
"This may take a few seconds…" : "Tämä saattaa kestää muutaman sekunnin",
"Selected icon" : "Valittu kuvake",
"Field label" : "Kentän nimike",
"Field value" : "Kentän arvo",
@ -192,6 +204,9 @@ OC.L10N.register(
"Show All" : "Näytä kaikki",
"Tags" : "Tunnisteet",
"Search Tags" : "Etsi tunneisteita",
"Good Strength" : "Hyvä vahvuus",
"Medium Strength" : "Keskinkertainen vahvuus",
"Bad Strength" : "Heikko vahvuus",
"Expired" : "Vanhentunut",
"Someone has shared a credential with you." : "Joku on jakanut tilitiedot kanssasi.",
"Loading…" : "Ladataan…",
@ -225,7 +240,7 @@ OC.L10N.register(
"Expires:" : "Vanhenee:",
"Connection to server lost" : "Yhteys palvelimelle menetetty",
"Problem loading page, reloading in 5 seconds" : "Ongelma sivun lataamisessa, päivitetään 5 sekunnin kuluttua",
"Saving..." : "Tallennetaan...",
"Saving …" : "Tallennetaan…",
"Dismiss" : "Hylkää",
"seconds ago" : "sekuntia sitten"
},

View file

@ -12,18 +12,27 @@
"Credential updated" : "Tilitieto päivitetty",
"Credential recovered" : "Tilitieto palautettu",
"Credential destroyed" : "Tilitieto tuhottu",
"Error downloading file, you probably have insufficient permissions" : "Virhe tiedostoa ladatessa. Sinulla ei mitä luultavimmin ole riittäviä oikeuksia",
"Invalid QR code" : "Virheellinen QR-koodi",
"Starting export" : "Aloitetaan vienti",
"Decrypting credentials" : "Puretaan tunnisteiden salausta",
"Done" : "Valmis",
"File read." : "Tiedosto luettu.",
"Proceed with the following steps to import your file" : "Seuraa seuraavia ohjeita tuodaksesi tiedostosta.",
"Adding {{credential}}" : "Lisätään {{credential}}",
"Added {{credential}}" : "Lisätty {{credential}}",
"Parsed {{num}} credentials, starting to import" : "Käytiin läpi {{num}} tunnistetta, aloitetaan tuonti",
"Importing" : "Tuodaan",
"Start import" : "Aloita tuonti",
"Select CSV file" : "Valitse CSV-tiedosto",
"Parsed {{rows}} lines from CSV file" : "Käytiin läpi {{rows}} riviä CSV-tiedostosta",
"Skip first row" : "Ohita ensimmäinen rivi",
"You need to assign the label field before you can start the import." : "Sinun tulee määritellä nimikekenttä ennen tuonnin aloittamista.",
"The first 5 lines of the CSV are shown." : "CSV:n ensimmäiset viisi riviä näytetään.",
"Assign the proper fields to each column." : "Määrittele sopivat kentät kullekin sarakkeelle.",
"Example of imported credential" : "Esimerkki tuodusta tunnisteesta",
"Missing an importer? Try it with the generic CSV importer." : "Puuttuuko tuojaohjelma? Kokeile yleistä CSV-tuojaa.",
"Go back to importers." : "Takaisin tuojiin",
"Save in Passman" : "Tallenna Passmaniin",
"Settings saved" : "Asetukset tallennettu",
"General settings" : "Yleiset asetukset",
@ -31,6 +40,7 @@
"Import credentials" : "Tuo tilitetioja",
"Export credentials" : "Vie tilitietoja",
"Sharing" : "Jakaminen",
"Old password field incorrect!" : "Vanha salasana on väärä!",
"New password does not match!" : "Uusi salasana ei täsmää!",
"Please log in with your new vault password" : "Kirjaudu sisään uudella holvin salasanalla",
"Share with users and groups" : "Jaa käyttäjien ja ryhmien kanssa",
@ -47,6 +57,7 @@
"Generate password" : "Luo salasana",
"Copy password to clipboard" : "Kopioi salasana leikepöydälle",
"Password copied to clipboard!" : "Salasana kopioitu leikepöydälle!",
"Complete" : "Valmis",
"Username" : "Käyttäjätunnus",
"Repeat password" : "Toista salasana",
"Add tag" : "Lisää tunniste",
@ -54,6 +65,7 @@
"Search icons" : "Etsi kuvakkeita",
"Upload a custom icon:" : "Lähetä mukautettu kuvake:",
"Use this icon" : "Käytä tätä kuvaketta",
"This may take a few seconds…" : "Tämä saattaa kestää muutaman sekunnin",
"Selected icon" : "Valittu kuvake",
"Field label" : "Kentän nimike",
"Field value" : "Kentän arvo",
@ -190,6 +202,9 @@
"Show All" : "Näytä kaikki",
"Tags" : "Tunnisteet",
"Search Tags" : "Etsi tunneisteita",
"Good Strength" : "Hyvä vahvuus",
"Medium Strength" : "Keskinkertainen vahvuus",
"Bad Strength" : "Heikko vahvuus",
"Expired" : "Vanhentunut",
"Someone has shared a credential with you." : "Joku on jakanut tilitiedot kanssasi.",
"Loading…" : "Ladataan…",
@ -223,7 +238,7 @@
"Expires:" : "Vanhenee:",
"Connection to server lost" : "Yhteys palvelimelle menetetty",
"Problem loading page, reloading in 5 seconds" : "Ongelma sivun lataamisessa, päivitetään 5 sekunnin kuluttua",
"Saving..." : "Tallennetaan...",
"Saving …" : "Tallennetaan…",
"Dismiss" : "Hylkää",
"seconds ago" : "sekuntia sitten"
},"pluralForm" :"nplurals=2; plural=(n != 1);"

View file

@ -293,12 +293,11 @@ OC.L10N.register(
"Click here to request it" : "Cliquez ici pour le demander",
"Loading…" : "Chargement...",
"Awwhh… credential not found. Maybe it expired" : "Awwhh.... information d'identification non trouvée. Il est peut être expiré",
"Compromise!" : "Compromis !",
"Mark as Compromised" : "Marquer comme compromis",
"Compromised!" : "Compromis !",
"This password is compromised. You can only remove this warning by changing the password." : "Ce mot de passe est compromis. Vous ne pouvez supprimer cet avertissement qu'en modifiant votre mot de passe.",
"email" : "email",
"Description" : "Description",
"Url" : "URL",
"Custom Search:" : "Recherche personnalisée",
"Revert to defaults" : "Restaurer les valeurs par défaut",
"Error while saving field" : "Erreur lors de la sauvegarde du champ",
@ -361,7 +360,7 @@ OC.L10N.register(
"Expires:" : "Expire le :",
"Connection to server lost" : "La connexion au serveur a été perdue",
"Problem loading page, reloading in 5 seconds" : "Problème de chargement de la page, actualisation dans 5 secondes",
"Saving..." : "Enregistrement…",
"Saving …" : "Enregistrement ...",
"Dismiss" : "Ignorer",
"seconds ago" : "il y a quelques secondes"
},

View file

@ -291,12 +291,11 @@
"Click here to request it" : "Cliquez ici pour le demander",
"Loading…" : "Chargement...",
"Awwhh… credential not found. Maybe it expired" : "Awwhh.... information d'identification non trouvée. Il est peut être expiré",
"Compromise!" : "Compromis !",
"Mark as Compromised" : "Marquer comme compromis",
"Compromised!" : "Compromis !",
"This password is compromised. You can only remove this warning by changing the password." : "Ce mot de passe est compromis. Vous ne pouvez supprimer cet avertissement qu'en modifiant votre mot de passe.",
"email" : "email",
"Description" : "Description",
"Url" : "URL",
"Custom Search:" : "Recherche personnalisée",
"Revert to defaults" : "Restaurer les valeurs par défaut",
"Error while saving field" : "Erreur lors de la sauvegarde du champ",
@ -359,7 +358,7 @@
"Expires:" : "Expire le :",
"Connection to server lost" : "La connexion au serveur a été perdue",
"Problem loading page, reloading in 5 seconds" : "Problème de chargement de la page, actualisation dans 5 secondes",
"Saving..." : "Enregistrement…",
"Saving …" : "Enregistrement ...",
"Dismiss" : "Ignorer",
"seconds ago" : "il y a quelques secondes"
},"pluralForm" :"nplurals=2; plural=(n > 1);"

View file

@ -1,7 +1,7 @@
OC.L10N.register(
"passman",
{
"Generating sharing keys ( %s / 2)" : "Xerando chaves de compartición ( %s / 2)",
"Generating sharing keys ( %s / 2)" : "Xerando claves de compartición ( %s / 2)",
"Incorrect vault password!" : "Contrasinal da bóveda incorrecta!",
"Passwords do not match" : "Os contrasinais non coinciden",
"General" : "Xeral",
@ -79,7 +79,7 @@ OC.L10N.register(
"Delete current icon" : "Eliminar a icona actual",
"Get icon from page" : "Obtér a icona da páxina",
"This may take a few seconds…" : "Isto pode levar uns segundos…",
"There was an error fetching the icon!" : "Produciuse un erro ao recuperar a icona!",
"There was an error fetching the icon!" : "Produciuse un erro ao obter a icona!",
"Selected icon" : "Icona seleccionada",
"Field label" : "Campo etiqueta",
"Field value" : "Campo valor",
@ -121,7 +121,7 @@ OC.L10N.register(
"Rename vault" : "Renomear a bóveda",
"New vault name" : "Nome novo para a bóveda",
"Change" : "Cambiar",
"Change vault key" : "Cambiar a chave da bóveda",
"Change vault key" : "Cambiar a clave da bóveda",
"Old vault password" : "Anterior contrasinal da bóveda",
"New vault password" : "Novo contrasinal da bóveda",
"Repeat new vault password" : "Repita o novo contrasinal da bóveda",
@ -144,12 +144,12 @@ OC.L10N.register(
"Import" : "Importar",
"Read progress" : "Progreso da lectura",
"Upload progress" : "Progreso do envío",
"Private Key" : "Chave privada",
"Public key" : "Chave pública",
"Key size" : "Tamaño da chave",
"Save keys" : "Gardar as chaves",
"Generate sharing keys" : "Xerar chaves de compartición",
"Generating sharing keys" : "Xerando chaves de compartición",
"Private Key" : "Clave privada",
"Public key" : "Clave pública",
"Key size" : "Tamaño da clave",
"Save keys" : "Gardar as claves",
"Generate sharing keys" : "Xerar claves de compartición",
"Generating sharing keys" : "Xerando claves de compartición",
"The password tool scans your password, calculates average cracking time, listing those below the threshold" : "A ferramenta de contrasinais analizará o seu contrasinal, calculará o tempo medio para crebalo e enumerará aqueles que estean por baixo do limiar",
"Minimum password stength" : "Fortaleza mínima do contrasinal",
"Start scan" : "Iniciar a analise",
@ -255,7 +255,7 @@ OC.L10N.register(
"Password strength must be at least: {{strength}}" : "A fortaleza do contrasinal debe ser cando menos: {{strength}}",
"Please give your new vault a name." : "Póñalle un nome á súa bóveda",
"Repeat vault password" : "Repita o contrasinal da bóveda",
"Your sharing keys will have a strength of 1024 bit, which you can change in \\\"Settings\\\" later ." : "A súa chave de compartir terá unha forza de 1024 bits, que pode cambiar máis adiante en «Axustes».",
"Your sharing keys will have a strength of 1024 bit, which you can change in \\\"Settings\\\" later ." : "A súa clave de compartir terá unha forza de 1024 bits, que pode cambiar máis adiante en «Axustes».",
"Create vault" : "Crear unha bóveda",
"Go back to vaults" : "Volver ás bóvedas",
"Please input the password for" : "Introduza o contrasinal para",
@ -293,12 +293,11 @@ OC.L10N.register(
"Click here to request it" : "Prema aquí para solicitalo",
"Loading…" : "Cargando…",
"Awwhh… credential not found. Maybe it expired" : "Amodo… non se atopou a credencial, seica caducou?",
"Compromise!" : "Compromiso!",
"Mark as Compromised" : "Marcar como comprometido",
"Compromised!" : "Comprometido!",
"This password is compromised. You can only remove this warning by changing the password." : "Este contrasinal está comprometido. Só pode eliminar este aviso cambiando o contrasinal.",
"email" : "correo",
"Description" : "Descrición",
"Url" : "URL",
"Custom Search:" : "Busca personalizada:",
"Revert to defaults" : "Reverter a valores predeterminados",
"Error while saving field" : "Produciuse un erro ao gardar o campo",
@ -317,7 +316,7 @@ OC.L10N.register(
"%1$s has been deleted by %2$s" : "%1$s foi eliminado por %2$s",
"You deleted %1$s" : "Vostede eliminou %1$s",
"%1$s has been recovered by %2$s" : "%1$s foi recuperado por %2$s",
"You recovered %1$s" : "Vostede restaurou %1$s",
"You recovered %1$s" : "Vostede recuperou %1$s",
"%1$s has been permanently deleted by %2$s" : "%1$s foi eliminado de xeito permanente por %2$s",
"You permanently deleted %1$s" : "Vostede eliminou %1$s de xeito permanente",
"The password of %1$s has expired, renew it now." : "O contrasinal de %1$s caducou, renóvea agora.",
@ -333,7 +332,7 @@ OC.L10N.register(
"%s has accepted your share request for \"%s\"." : "%s aceptou a súa solicitude para compartir «%s».",
"Passman" : "Passman",
"Passman is a full featured password manager." : "Passman é un completo xestor de contrasinais. ",
"Passman is a full featured password manager.\nFeatures:\n- Vaults\n- Vault key is never sent to the server\n- Browser extension for easy access to passwords\n- Android app for on the road access\n- Credentials are client side encrypted with 256bit AES\n- Credentials are server side encrypted with 256bit AES\n- Ability to add custom fields to credentials\n- Built-in OTP (One Time Password) generator\n- Password analyzer\n- Share passwords internally and via link in a secure manner.\n- Import from various password managers (KeePass, LastPass, DashLane, ZOHO, Clipperz.is )\nFor an demo of this app visit [https://demo.passman.cc](https://demo.passman.cc)" : "Passman é un completo xestor de contrasinais.\nCaracterísticas:\n- Bóvedas\n- A chave da bóveda non se envía nunca ao servidor\n- Extensión do navegador para facilitar o acceso aos contrasinais\n- Apli de Android para acceder en mobilidade\n- As credenciais están en cifradas do lado do cliente con AES de 256 bits\n- As credenciais están cifradas no lado do servidor con AES de 256 bits\n- Posibilidade de engadir campos personalizados a credenciais\n- Xerador incorporado de OTP (One Time Password)\n- Analizador de contrasinais\n- Comparte contrasinais internamente e mediante a ligazón dun xeito seguro.\n- Importación dende varios xestores de contrasinais (KeePass, LastPass, DashLane, ZOHO, Clipperz.is)\nPara ver unha demostración desta aplicación, visite [https://demo.passman.cc](https://demo.passman.cc)",
"Passman is a full featured password manager.\nFeatures:\n- Vaults\n- Vault key is never sent to the server\n- Browser extension for easy access to passwords\n- Android app for on the road access\n- Credentials are client side encrypted with 256bit AES\n- Credentials are server side encrypted with 256bit AES\n- Ability to add custom fields to credentials\n- Built-in OTP (One Time Password) generator\n- Password analyzer\n- Share passwords internally and via link in a secure manner.\n- Import from various password managers (KeePass, LastPass, DashLane, ZOHO, Clipperz.is )\nFor an demo of this app visit [https://demo.passman.cc](https://demo.passman.cc)" : "Passman é un completo xestor de contrasinais.\nCaracterísticas:\n- Bóvedas\n- A clave da bóveda non se envía nunca ao servidor\n- Extensión do navegador para facilitar o acceso aos contrasinais\n- Apli de Android para acceder en mobilidade\n- As credenciais están en cifradas do lado do cliente con AES de 256 bits\n- As credenciais están cifradas no lado do servidor con AES de 256 bits\n- Posibilidade de engadir campos personalizados a credenciais\n- Xerador incorporado de OTP (One Time Password)\n- Analizador de contrasinais\n- Comparte contrasinais internamente e mediante a ligazón dun xeito seguro.\n- Importación dende varios xestores de contrasinais (KeePass, LastPass, DashLane, ZOHO, Clipperz.is)\nPara ver unha demostración desta aplicación, visite [https://demo.passman.cc](https://demo.passman.cc)",
"Unable to get version info" : "Non é posíbel obter información da versión",
"Passman Settings" : "Axustes de Passman",
"GitHub version:" : "Versión do GitHub:",
@ -361,7 +360,7 @@ OC.L10N.register(
"Expires:" : "Caduca:",
"Connection to server lost" : "Perdida a conexión co servidor",
"Problem loading page, reloading in 5 seconds" : "Produciuse un problema ao cargar a páxina, volverá cargar en 5 segundos",
"Saving..." : "Gardando…",
"Saving" : "Gardando…",
"Dismiss" : "Rexeitar",
"seconds ago" : "hai uns segundos"
},

View file

@ -1,5 +1,5 @@
{ "translations": {
"Generating sharing keys ( %s / 2)" : "Xerando chaves de compartición ( %s / 2)",
"Generating sharing keys ( %s / 2)" : "Xerando claves de compartición ( %s / 2)",
"Incorrect vault password!" : "Contrasinal da bóveda incorrecta!",
"Passwords do not match" : "Os contrasinais non coinciden",
"General" : "Xeral",
@ -77,7 +77,7 @@
"Delete current icon" : "Eliminar a icona actual",
"Get icon from page" : "Obtér a icona da páxina",
"This may take a few seconds…" : "Isto pode levar uns segundos…",
"There was an error fetching the icon!" : "Produciuse un erro ao recuperar a icona!",
"There was an error fetching the icon!" : "Produciuse un erro ao obter a icona!",
"Selected icon" : "Icona seleccionada",
"Field label" : "Campo etiqueta",
"Field value" : "Campo valor",
@ -119,7 +119,7 @@
"Rename vault" : "Renomear a bóveda",
"New vault name" : "Nome novo para a bóveda",
"Change" : "Cambiar",
"Change vault key" : "Cambiar a chave da bóveda",
"Change vault key" : "Cambiar a clave da bóveda",
"Old vault password" : "Anterior contrasinal da bóveda",
"New vault password" : "Novo contrasinal da bóveda",
"Repeat new vault password" : "Repita o novo contrasinal da bóveda",
@ -142,12 +142,12 @@
"Import" : "Importar",
"Read progress" : "Progreso da lectura",
"Upload progress" : "Progreso do envío",
"Private Key" : "Chave privada",
"Public key" : "Chave pública",
"Key size" : "Tamaño da chave",
"Save keys" : "Gardar as chaves",
"Generate sharing keys" : "Xerar chaves de compartición",
"Generating sharing keys" : "Xerando chaves de compartición",
"Private Key" : "Clave privada",
"Public key" : "Clave pública",
"Key size" : "Tamaño da clave",
"Save keys" : "Gardar as claves",
"Generate sharing keys" : "Xerar claves de compartición",
"Generating sharing keys" : "Xerando claves de compartición",
"The password tool scans your password, calculates average cracking time, listing those below the threshold" : "A ferramenta de contrasinais analizará o seu contrasinal, calculará o tempo medio para crebalo e enumerará aqueles que estean por baixo do limiar",
"Minimum password stength" : "Fortaleza mínima do contrasinal",
"Start scan" : "Iniciar a analise",
@ -253,7 +253,7 @@
"Password strength must be at least: {{strength}}" : "A fortaleza do contrasinal debe ser cando menos: {{strength}}",
"Please give your new vault a name." : "Póñalle un nome á súa bóveda",
"Repeat vault password" : "Repita o contrasinal da bóveda",
"Your sharing keys will have a strength of 1024 bit, which you can change in \\\"Settings\\\" later ." : "A súa chave de compartir terá unha forza de 1024 bits, que pode cambiar máis adiante en «Axustes».",
"Your sharing keys will have a strength of 1024 bit, which you can change in \\\"Settings\\\" later ." : "A súa clave de compartir terá unha forza de 1024 bits, que pode cambiar máis adiante en «Axustes».",
"Create vault" : "Crear unha bóveda",
"Go back to vaults" : "Volver ás bóvedas",
"Please input the password for" : "Introduza o contrasinal para",
@ -291,12 +291,11 @@
"Click here to request it" : "Prema aquí para solicitalo",
"Loading…" : "Cargando…",
"Awwhh… credential not found. Maybe it expired" : "Amodo… non se atopou a credencial, seica caducou?",
"Compromise!" : "Compromiso!",
"Mark as Compromised" : "Marcar como comprometido",
"Compromised!" : "Comprometido!",
"This password is compromised. You can only remove this warning by changing the password." : "Este contrasinal está comprometido. Só pode eliminar este aviso cambiando o contrasinal.",
"email" : "correo",
"Description" : "Descrición",
"Url" : "URL",
"Custom Search:" : "Busca personalizada:",
"Revert to defaults" : "Reverter a valores predeterminados",
"Error while saving field" : "Produciuse un erro ao gardar o campo",
@ -315,7 +314,7 @@
"%1$s has been deleted by %2$s" : "%1$s foi eliminado por %2$s",
"You deleted %1$s" : "Vostede eliminou %1$s",
"%1$s has been recovered by %2$s" : "%1$s foi recuperado por %2$s",
"You recovered %1$s" : "Vostede restaurou %1$s",
"You recovered %1$s" : "Vostede recuperou %1$s",
"%1$s has been permanently deleted by %2$s" : "%1$s foi eliminado de xeito permanente por %2$s",
"You permanently deleted %1$s" : "Vostede eliminou %1$s de xeito permanente",
"The password of %1$s has expired, renew it now." : "O contrasinal de %1$s caducou, renóvea agora.",
@ -331,7 +330,7 @@
"%s has accepted your share request for \"%s\"." : "%s aceptou a súa solicitude para compartir «%s».",
"Passman" : "Passman",
"Passman is a full featured password manager." : "Passman é un completo xestor de contrasinais. ",
"Passman is a full featured password manager.\nFeatures:\n- Vaults\n- Vault key is never sent to the server\n- Browser extension for easy access to passwords\n- Android app for on the road access\n- Credentials are client side encrypted with 256bit AES\n- Credentials are server side encrypted with 256bit AES\n- Ability to add custom fields to credentials\n- Built-in OTP (One Time Password) generator\n- Password analyzer\n- Share passwords internally and via link in a secure manner.\n- Import from various password managers (KeePass, LastPass, DashLane, ZOHO, Clipperz.is )\nFor an demo of this app visit [https://demo.passman.cc](https://demo.passman.cc)" : "Passman é un completo xestor de contrasinais.\nCaracterísticas:\n- Bóvedas\n- A chave da bóveda non se envía nunca ao servidor\n- Extensión do navegador para facilitar o acceso aos contrasinais\n- Apli de Android para acceder en mobilidade\n- As credenciais están en cifradas do lado do cliente con AES de 256 bits\n- As credenciais están cifradas no lado do servidor con AES de 256 bits\n- Posibilidade de engadir campos personalizados a credenciais\n- Xerador incorporado de OTP (One Time Password)\n- Analizador de contrasinais\n- Comparte contrasinais internamente e mediante a ligazón dun xeito seguro.\n- Importación dende varios xestores de contrasinais (KeePass, LastPass, DashLane, ZOHO, Clipperz.is)\nPara ver unha demostración desta aplicación, visite [https://demo.passman.cc](https://demo.passman.cc)",
"Passman is a full featured password manager.\nFeatures:\n- Vaults\n- Vault key is never sent to the server\n- Browser extension for easy access to passwords\n- Android app for on the road access\n- Credentials are client side encrypted with 256bit AES\n- Credentials are server side encrypted with 256bit AES\n- Ability to add custom fields to credentials\n- Built-in OTP (One Time Password) generator\n- Password analyzer\n- Share passwords internally and via link in a secure manner.\n- Import from various password managers (KeePass, LastPass, DashLane, ZOHO, Clipperz.is )\nFor an demo of this app visit [https://demo.passman.cc](https://demo.passman.cc)" : "Passman é un completo xestor de contrasinais.\nCaracterísticas:\n- Bóvedas\n- A clave da bóveda non se envía nunca ao servidor\n- Extensión do navegador para facilitar o acceso aos contrasinais\n- Apli de Android para acceder en mobilidade\n- As credenciais están en cifradas do lado do cliente con AES de 256 bits\n- As credenciais están cifradas no lado do servidor con AES de 256 bits\n- Posibilidade de engadir campos personalizados a credenciais\n- Xerador incorporado de OTP (One Time Password)\n- Analizador de contrasinais\n- Comparte contrasinais internamente e mediante a ligazón dun xeito seguro.\n- Importación dende varios xestores de contrasinais (KeePass, LastPass, DashLane, ZOHO, Clipperz.is)\nPara ver unha demostración desta aplicación, visite [https://demo.passman.cc](https://demo.passman.cc)",
"Unable to get version info" : "Non é posíbel obter información da versión",
"Passman Settings" : "Axustes de Passman",
"GitHub version:" : "Versión do GitHub:",
@ -359,7 +358,7 @@
"Expires:" : "Caduca:",
"Connection to server lost" : "Perdida a conexión co servidor",
"Problem loading page, reloading in 5 seconds" : "Produciuse un problema ao cargar a páxina, volverá cargar en 5 segundos",
"Saving..." : "Gardando…",
"Saving" : "Gardando…",
"Dismiss" : "Rexeitar",
"seconds ago" : "hai uns segundos"
},"pluralForm" :"nplurals=2; plural=(n != 1);"

View file

@ -258,7 +258,6 @@ OC.L10N.register(
"Awwhh… credential not found. Maybe it expired" : "אוףףףףף… לא נמצאו פרטי גישה. אולי תוקפם פג",
"email" : "דוא״ל",
"Description" : "תיאור",
"Url" : "כתובת",
"Custom Search:" : "חיפוש מותאם אישית:",
"Revert to defaults" : "החזרה לבררות מחדל",
"Error while saving field" : "אירעה שגיאה במהלך שמירת השדה",
@ -308,7 +307,7 @@ OC.L10N.register(
"Expires:" : "תפוגה:",
"Connection to server lost" : "החיבור לשרת אבד",
"Problem loading page, reloading in 5 seconds" : "אירעה שגיאה בעת טעינת העמוד, יתרענן בעוד 5 שניות",
"Saving..." : "מתבצעת שמירה…",
"Saving" : "מתבצעת שמירה…",
"Dismiss" : "התעלמות",
"seconds ago" : "לפני מספר שניות"
},

View file

@ -256,7 +256,6 @@
"Awwhh… credential not found. Maybe it expired" : "אוףףףףף… לא נמצאו פרטי גישה. אולי תוקפם פג",
"email" : "דוא״ל",
"Description" : "תיאור",
"Url" : "כתובת",
"Custom Search:" : "חיפוש מותאם אישית:",
"Revert to defaults" : "החזרה לבררות מחדל",
"Error while saving field" : "אירעה שגיאה במהלך שמירת השדה",
@ -306,7 +305,7 @@
"Expires:" : "תפוגה:",
"Connection to server lost" : "החיבור לשרת אבד",
"Problem loading page, reloading in 5 seconds" : "אירעה שגיאה בעת טעינת העמוד, יתרענן בעוד 5 שניות",
"Saving..." : "מתבצעת שמירה…",
"Saving" : "מתבצעת שמירה…",
"Dismiss" : "התעלמות",
"seconds ago" : "לפני מספר שניות"
},"pluralForm" :"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;"

View file

@ -293,12 +293,11 @@ OC.L10N.register(
"Click here to request it" : "Kliknite ovdje kako biste je zatražili",
"Loading…" : "Učitavanje…",
"Awwhh… credential not found. Maybe it expired" : "Ah… vjerodajnica nije pronađena. Možda je istekla",
"Compromise!" : "Kompromis!",
"Mark as Compromised" : "Označi kao ugroženo",
"Compromised!" : "Ugrožena!",
"This password is compromised. You can only remove this warning by changing the password." : "Vaša lozinka je ugrožena. Ovo upozorenje možete ukloniti samo promjenom zaporke.",
"email" : "e-pošta",
"Description" : "Opis",
"Url" : "Url",
"Custom Search:" : "Prilagođeno pretraživanje:",
"Revert to defaults" : "Vrati se na zadane vrijednosti",
"Error while saving field" : "Pogreška prilikom spremanja polja",
@ -361,7 +360,7 @@ OC.L10N.register(
"Expires:" : "Istječe:",
"Connection to server lost" : "Izgubljena veza s poslužiteljem",
"Problem loading page, reloading in 5 seconds" : "Problem s učitavanjem stranice, ponovno učitavanje za 5 sekundi",
"Saving..." : "Spremanje...",
"Saving" : "Spremanje...",
"Dismiss" : "Zanemari",
"seconds ago" : "prije nekoliko sekundi"
},

View file

@ -291,12 +291,11 @@
"Click here to request it" : "Kliknite ovdje kako biste je zatražili",
"Loading…" : "Učitavanje…",
"Awwhh… credential not found. Maybe it expired" : "Ah… vjerodajnica nije pronađena. Možda je istekla",
"Compromise!" : "Kompromis!",
"Mark as Compromised" : "Označi kao ugroženo",
"Compromised!" : "Ugrožena!",
"This password is compromised. You can only remove this warning by changing the password." : "Vaša lozinka je ugrožena. Ovo upozorenje možete ukloniti samo promjenom zaporke.",
"email" : "e-pošta",
"Description" : "Opis",
"Url" : "Url",
"Custom Search:" : "Prilagođeno pretraživanje:",
"Revert to defaults" : "Vrati se na zadane vrijednosti",
"Error while saving field" : "Pogreška prilikom spremanja polja",
@ -359,7 +358,7 @@
"Expires:" : "Istječe:",
"Connection to server lost" : "Izgubljena veza s poslužiteljem",
"Problem loading page, reloading in 5 seconds" : "Problem s učitavanjem stranice, ponovno učitavanje za 5 sekundi",
"Saving..." : "Spremanje...",
"Saving" : "Spremanje...",
"Dismiss" : "Zanemari",
"seconds ago" : "prije nekoliko sekundi"
},"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;"

View file

@ -327,7 +327,7 @@ OC.L10N.register(
"Expires:" : "Lejárat:",
"Connection to server lost" : "Megszakadt a kapcsolat a szerverrel",
"Problem loading page, reloading in 5 seconds" : "Probléma adódott az oldal betöltése közben, újratöltés 5 másodpercen belül",
"Saving..." : "Mentés...",
"Saving …" : "Mentés…",
"Dismiss" : "Elutasít",
"seconds ago" : "pár másodperce"
},

View file

@ -325,7 +325,7 @@
"Expires:" : "Lejárat:",
"Connection to server lost" : "Megszakadt a kapcsolat a szerverrel",
"Problem loading page, reloading in 5 seconds" : "Probléma adódott az oldal betöltése közben, újratöltés 5 másodpercen belül",
"Saving..." : "Mentés...",
"Saving …" : "Mentés…",
"Dismiss" : "Elutasít",
"seconds ago" : "pár másodperce"
},"pluralForm" :"nplurals=2; plural=(n != 1);"

View file

@ -32,7 +32,6 @@ OC.L10N.register(
"Description" : "Նկարագրություն",
"You created %1$s" : "Դու ստեղծեցիր %1$s",
"You deleted %1$s" : "Դու ջնջեցիր %1$s",
"Saving..." : "Պահում եմ...",
"seconds ago" : "վրկ. առաջ"
},
"nplurals=2; plural=(n != 1);");

View file

@ -30,7 +30,6 @@
"Description" : "Նկարագրություն",
"You created %1$s" : "Դու ստեղծեցիր %1$s",
"You deleted %1$s" : "Դու ջնջեցիր %1$s",
"Saving..." : "Պահում եմ...",
"seconds ago" : "վրկ. առաջ"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View file

@ -43,7 +43,6 @@ OC.L10N.register(
"Description" : "Description",
"You created %1$s" : "Tu creava %1$s",
"You deleted %1$s" : "Tu deleva %1$s",
"Saving..." : "Salveguardante...",
"Dismiss" : "Dimitter",
"seconds ago" : "secundas passate"
},

View file

@ -41,7 +41,6 @@
"Description" : "Description",
"You created %1$s" : "Tu creava %1$s",
"You deleted %1$s" : "Tu deleva %1$s",
"Saving..." : "Salveguardante...",
"Dismiss" : "Dimitter",
"seconds ago" : "secundas passate"
},"pluralForm" :"nplurals=2; plural=(n != 1);"

View file

@ -60,7 +60,7 @@ OC.L10N.register(
"Passwords" : "Kata sandi",
"Connection to server lost" : "Koneksi ke server gagal",
"Problem loading page, reloading in 5 seconds" : "Terjadi masalah dalam memuat laman, mencoba lagi dalam 5 detik",
"Saving..." : "Menyimpan...",
"Saving …" : "Menyimpan ...",
"Dismiss" : "Batal",
"seconds ago" : "beberapa detik yang lalu"
},

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