1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
# This file has the strings, mostly error strings, for the logic / JS backend / model
# files: sanitizeDatatypes.js, fetchhttp.js, util.js
# sanitizeDatatypes.js
hostname_syntax.error=Naziv servera je prazan ili sadrži zabranjene znakove. Dopuštena su samo slova, brojevi, te . i -.
alphanumdash.error=Strin sadrži nepodržane znakove. Dopuštena su samo slova, brojevi, te - i _.
allowed_value.error=Isporučena vrijednost nije na listi dopuštenih
url_scheme.error=URL shema nije dopuštena
url_parsing.error=URL nije prepoznat
string_empty.error=Morate isporučiti vrijednost za ovaj string
boolean.error=Nije boolean
no_number.error=Nije broj
number_too_large.error=Prevelik broj
number_too_small.error=Premalen broj
# fetchhttp.js
cannot_contact_server.error=Ne mogu kontaktirati server
bad_response_content.error=Pogrešan sadržaj odgovora
# verifyConfig.js
# LOCALIZATION NOTE(auth_failed_generic.error): The login failed (server refused to allow the user in), but the server did not give any meaningful error message. This is a common case when the user entered a wrong password or is otherwise not allowed.
auth_failed_generic.error=Prijava neuspješna. Jesu li korisničko ime/email adresa i lozinka ispravni?
# LOCALIZATION NOTE(auth_failed_with_reason.error): The login failed (server refused to allow the user in), and the server gave an error message which we can present to the user. This is a common case when the user entered a wrong password or is otherwise not allowed. %1$S will be the IMAP/POP3/SMTP server hostname. %2$S will be the error message from the server (usually in the local language where the server is or in English).
auth_failed_with_reason.error=Prijava neuspješna. Server %1$S je odgovorio: %2$S
# LOCALIZATION NOTE(verification_failed.error): We had some other error, not during authentication with the server, but at earlier points, e.g. locally or we entirely failed to contact the given server, and we unfortunately have no detailed error message.
verification_failed.error=Provjera prijave neuspješna iz nepoznatog razloga.
# LOCALIZATION NOTE(verification_failed_with_exception.error): We had some other error, not during authentication with the server, but at earlier points, e.g. locally or we entirely failed to contact the given server, and we have an error message. %1$S will be an error message, possibly in English
verification_failed_with_exception.error=Provjera prijave neuspješna uz poruku: %1$S
|