| 1 | <?php |
|---|
| 2 | |
|---|
| 3 | /* |
|---|
| 4 | +-----------------------------------------------------------------------+ |
|---|
| 5 | | plugins/password/localization/<lang>.inc | |
|---|
| 6 | | | |
|---|
| 7 | | Localization file of the Roundcube Webmail Password plugin | |
|---|
| 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | |
|---|
| 9 | | | |
|---|
| 10 | | Licensed under the GNU General Public License version 3 or | |
|---|
| 11 | | any later version with exceptions for skins & plugins. | |
|---|
| 12 | | See the README file for a full license statement. | |
|---|
| 13 | | | |
|---|
| 14 | +-----------------------------------------------------------------------+ |
|---|
| 15 | |
|---|
| 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ |
|---|
| 17 | */ |
|---|
| 18 | |
|---|
| 19 | $labels = array(); |
|---|
| 20 | $labels['changepasswd'] = 'Promijeni zaporku'; |
|---|
| 21 | $labels['curpasswd'] = 'VaÅŸeÄa zaporka:'; |
|---|
| 22 | $labels['newpasswd'] = 'Nova zaporka:'; |
|---|
| 23 | $labels['confpasswd'] = 'Potvrda nove zaporke:'; |
|---|
| 24 | |
|---|
| 25 | $messages = array(); |
|---|
| 26 | $messages['nopassword'] = 'Molimo unesite novu zaporku.'; |
|---|
| 27 | $messages['nocurpassword'] = 'Molimo unesite trenutnu zaporku.'; |
|---|
| 28 | $messages['passwordincorrect'] = 'Trenutna zaporka je nevaÅŸeÄa.'; |
|---|
| 29 | $messages['passwordinconsistency'] = 'Zaporke su razliÄite, pokuÅ¡ajte ponovo.'; |
|---|
| 30 | $messages['crypterror'] = 'NemoguÄe promijeniti zaporku. Nedostaje enkripcijska funkcija.'; |
|---|
| 31 | $messages['connecterror'] = 'NemoguÄe promijeniti zaporku. GreÅ¡ka prilikom spajanja.'; |
|---|
| 32 | $messages['internalerror'] = 'NemoguÄe promijeniti zaporku.'; |
|---|
| 33 | $messages['passwordshort'] = 'Zaporka mora sadrÅŸavati barem $length znakova.'; |
|---|
| 34 | $messages['passwordweak'] = 'Zaporka mora sadrÅŸavati barem jedanu znamenku i jedan interpunkcijski znak.'; |
|---|
| 35 | $messages['passwordforbidden'] = 'Zaporka sadrÅŸi nedozvoljene znakove.'; |
|---|
| 36 | |
|---|
| 37 | ?> |
|---|