You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

sl.yml 56KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260
  1. sl:
  2. # Text direction: Left-to-Right (ltr) or Right-to-Left (rtl)
  3. direction: ltr
  4. date:
  5. formats:
  6. # Use the strftime parameters for formats.
  7. # When no format has been given, it uses default.
  8. # You can provide other formats here if you like!
  9. default: "%d.%m.%Y"
  10. short: "%d. %b"
  11. long: "%d. %B, %Y"
  12. day_names: [Nedelja, Ponedeljek, Torek, Sreda, Četrtek, Petek, Sobota]
  13. abbr_day_names: [Ned, Pon, To, Sr, Čet, Pet, Sob]
  14. # Don't forget the nil at the beginning; there's no such thing as a 0th month
  15. month_names: [~, Januar, Februar, Marec, April, Maj, Junij, Julij, Avgust, September, Oktober, November, December]
  16. abbr_month_names: [~, Jan, Feb, Mar, Apr, Maj, Jun, Jul, Aug, Sep, Okt, Nov, Dec]
  17. # Used in date_select and datime_select.
  18. order:
  19. - :day
  20. - :month
  21. - :year
  22. time:
  23. formats:
  24. default: "%a, %d. %b, %Y %H:%M:%S %z"
  25. time: "%H:%M"
  26. short: "%d. %b %H:%M"
  27. long: "%d. %B, %Y %H:%M"
  28. am: "am"
  29. pm: "pm"
  30. datetime:
  31. distance_in_words:
  32. half_a_minute: "pol minute"
  33. less_than_x_seconds:
  34. one: "manj kot 1. sekundo"
  35. other: "manj kot %{count} sekund"
  36. x_seconds:
  37. one: "1. sekunda"
  38. other: "%{count} sekund"
  39. less_than_x_minutes:
  40. one: "manj kot minuto"
  41. other: "manj kot %{count} minut"
  42. x_minutes:
  43. one: "1 minuta"
  44. other: "%{count} minut"
  45. about_x_hours:
  46. one: "okrog 1. ure"
  47. other: "okrog %{count} ur"
  48. x_hours:
  49. one: "1 ura"
  50. other: "%{count} ur"
  51. x_days:
  52. one: "1 dan"
  53. other: "%{count} dni"
  54. about_x_months:
  55. one: "okrog 1. mesec"
  56. other: "okrog %{count} mesecev"
  57. x_months:
  58. one: "1 mesec"
  59. other: "%{count} mesecev"
  60. about_x_years:
  61. one: "okrog 1. leto"
  62. other: "okrog %{count} let"
  63. over_x_years:
  64. one: "več kot 1. leto"
  65. other: "več kot %{count} let"
  66. almost_x_years:
  67. one: "skoraj 1. leto"
  68. other: "skoraj %{count} let"
  69. number:
  70. format:
  71. separator: ","
  72. delimiter: "."
  73. precision: 3
  74. human:
  75. format:
  76. precision: 3
  77. delimiter: ""
  78. storage_units:
  79. format: "%n %u"
  80. units:
  81. kb: KB
  82. tb: TB
  83. gb: GB
  84. byte:
  85. one: Byte
  86. other: Bytes
  87. mb: MB
  88. # Used in array.to_sentence.
  89. support:
  90. array:
  91. sentence_connector: "in"
  92. skip_last_comma: false
  93. activerecord:
  94. errors:
  95. template:
  96. header:
  97. one: "1. napaka je preprečila temu %{model} da bi se shranil"
  98. other: "%{count} napak je preprečilo temu %{model} da bi se shranil"
  99. messages:
  100. inclusion: "ni vključen na seznamu"
  101. exclusion: "je rezerviran"
  102. invalid: "je napačen"
  103. confirmation: "ne ustreza potrdilu"
  104. accepted: "mora biti sprejet"
  105. empty: "ne sme biti prazen"
  106. blank: "ne sme biti neizpolnjen"
  107. too_long: "je predolg"
  108. too_short: "je prekratek"
  109. wrong_length: "je napačne dolžine"
  110. taken: "je že zaseden"
  111. not_a_number: "ni število"
  112. not_a_date: "ni veljaven datum"
  113. greater_than: "mora biti večji kot %{count}"
  114. greater_than_or_equal_to: "mora biti večji ali enak kot %{count}"
  115. equal_to: "mora biti enak kot %{count}"
  116. less_than: "mora biti manjši kot %{count}"
  117. less_than_or_equal_to: "mora biti manjši ali enak kot %{count}"
  118. odd: "mora biti sodo"
  119. even: "mora biti liho"
  120. greater_than_start_date: "mora biti kasnejši kot začetni datum"
  121. not_same_project: "ne pripada istemu projektu"
  122. circular_dependency: "Ta odnos bi povzročil krožno odvisnost"
  123. cant_link_an_issue_with_a_descendant: "Zahtevek ne more biti povezan s svojo podnalogo"
  124. earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues"
  125. not_a_regexp: "is not a valid regular expression"
  126. open_issue_with_closed_parent: "An open issue cannot be attached to a closed parent task"
  127. actionview_instancetag_blank_option: Prosimo izberite
  128. general_text_No: 'Ne'
  129. general_text_Yes: 'Da'
  130. general_text_no: 'ne'
  131. general_text_yes: 'da'
  132. general_lang_name: 'Slovene (Slovenščina)'
  133. general_csv_separator: ','
  134. general_csv_decimal_separator: '.'
  135. general_csv_encoding: UTF-8
  136. general_pdf_fontname: freesans
  137. general_pdf_monospaced_fontname: freemono
  138. general_first_day_of_week: '1'
  139. notice_account_updated: Račun je bil uspešno posodobljen.
  140. notice_account_invalid_credentials: Napačno uporabniško ime ali geslo
  141. notice_account_password_updated: Geslo je bilo uspešno posodobljeno.
  142. notice_account_wrong_password: Napačno geslo
  143. notice_account_register_done: Račun je bil uspešno ustvarjen. Za aktivacijo potrdite povezavo, ki vam je bila poslana v e-nabiralnik.
  144. notice_account_unknown_email: Neznan uporabnik.
  145. notice_can_t_change_password: Ta račun za overovljanje uporablja zunanji. Gesla ni mogoče spremeniti.
  146. notice_account_lost_email_sent: Poslano vam je bilo e-pismo z navodili za izbiro novega gesla.
  147. notice_account_activated: Vaš račun je bil aktiviran. Sedaj se lahko prijavite.
  148. notice_successful_create: Ustvarjanje uspelo.
  149. notice_successful_update: Posodobitev uspela.
  150. notice_successful_delete: Izbris uspel.
  151. notice_successful_connection: Povezava uspela.
  152. notice_file_not_found: Stran na katero se želite povezati ne obstaja ali pa je bila umaknjena.
  153. notice_locking_conflict: Drug uporabnik je posodobil podatke.
  154. notice_not_authorized: Nimate privilegijev za dostop do te strani.
  155. notice_email_sent: "E-poštno sporočilo je bilo poslano %{value}"
  156. notice_email_error: "Ob pošiljanju e-sporočila je prišlo do napake (%{value})"
  157. notice_feeds_access_key_reseted: Vaš Atom dostopni ključ je bil ponastavljen.
  158. notice_failed_to_save_issues: "Neuspelo shranjevanje %{count} zahtevka na %{total} izbranem: %{ids}."
  159. notice_no_issue_selected: "Izbran ni noben zahtevek! Prosimo preverite zahtevke, ki jih želite urediti."
  160. notice_account_pending: "Vaš račun je bil ustvarjen in čaka na potrditev s strani administratorja."
  161. notice_default_data_loaded: Privzete nastavitve so bile uspešno naložene.
  162. notice_unable_delete_version: Verzije ni bilo mogoče izbrisati.
  163. error_can_t_load_default_data: "Privzetih nastavitev ni bilo mogoče naložiti: %{value}"
  164. error_scm_not_found: "Vnos ali revizija v shrambi ni bila najdena ."
  165. error_scm_command_failed: "Med vzpostavljem povezave s shrambo je prišlo do napake: %{value}"
  166. error_scm_annotate: "Vnos ne obstaja ali pa ga ni mogoče komentirati."
  167. error_issue_not_found_in_project: 'Zahtevek ni bil najden ali pa ne pripada temu projektu'
  168. mail_subject_lost_password: "Vaše %{value} geslo"
  169. mail_body_lost_password: 'Za spremembo glesla kliknite na naslednjo povezavo:'
  170. mail_subject_register: "Aktivacija %{value} vašega računa"
  171. mail_body_register: 'Za aktivacijo vašega računa kliknite na naslednjo povezavo:'
  172. mail_body_account_information_external: "Za prijavo lahko uporabite vaš %{value} račun."
  173. mail_body_account_information: "Informacije o vašem računu. Za spremembo gesla sledite linku 'Spremeni geslo' na naslovu za prijavo, spodaj."
  174. mail_subject_account_activation_request: "%{value} zahtevek za aktivacijo računa"
  175. mail_body_account_activation_request: "Registriral se je nov uporabnik (%{value}). Račun čaka na vašo odobritev:"
  176. mail_subject_reminder: "%{count} zahtevek(zahtevki) zapadejo v naslednjih %{days} dneh"
  177. mail_body_reminder: "%{count} zahtevek(zahtevki), ki so vam dodeljeni bodo zapadli v naslednjih %{days} dneh:"
  178. field_name: Ime
  179. field_description: Opis
  180. field_summary: Povzetek
  181. field_is_required: Zahtevano
  182. field_firstname: Ime
  183. field_lastname: Priimek
  184. field_mail: E-naslov
  185. field_filename: Datoteka
  186. field_filesize: Velikost
  187. field_downloads: Prenosi
  188. field_author: Avtor
  189. field_created_on: Ustvarjen
  190. field_updated_on: Posodobljeno
  191. field_field_format: Format
  192. field_is_for_all: Za vse projekte
  193. field_possible_values: Možne vrednosti
  194. field_regexp: Regularni izraz
  195. field_min_length: Minimalna dolžina
  196. field_max_length: Maksimalna dolžina
  197. field_value: Vrednost
  198. field_category: Kategorija
  199. field_title: Naslov
  200. field_project: Projekt
  201. field_issue: Zahtevek
  202. field_status: Status
  203. field_notes: Zabeležka
  204. field_is_closed: Zahtevek zaprt
  205. field_is_default: Privzeta vrednost
  206. field_tracker: Vrsta zahtevka
  207. field_subject: Tema
  208. field_due_date: Do datuma
  209. field_assigned_to: Dodeljen
  210. field_priority: Prioriteta
  211. field_fixed_version: Ciljna verzija
  212. field_user: Uporabnik
  213. field_role: Vloga
  214. field_homepage: Domača stran
  215. field_is_public: Javno
  216. field_parent: Podprojekt projekta
  217. field_is_in_roadmap: Zahtevki prikazani na zemljevidu
  218. field_login: Prijava
  219. field_mail_notification: E-poštna oznanila
  220. field_admin: Administrator
  221. field_last_login_on: Zadnjič povezan(a)
  222. field_language: Jezik
  223. field_effective_date: Datum
  224. field_password: Geslo
  225. field_new_password: Novo geslo
  226. field_password_confirmation: Potrditev
  227. field_version: Verzija
  228. field_type: Tip
  229. field_host: Gostitelj
  230. field_port: Vrata
  231. field_account: Račun
  232. field_base_dn: Bazni DN
  233. field_attr_login: Oznaka za prijavo
  234. field_attr_firstname: Oznaka za ime
  235. field_attr_lastname: Oznaka za priimek
  236. field_attr_mail: Oznaka za e-naslov
  237. field_onthefly: Sprotna izdelava uporabnikov
  238. field_start_date: Začetek
  239. field_done_ratio: "% Narejeno"
  240. field_auth_source: Način overovljanja
  241. field_hide_mail: Skrij moj e-naslov
  242. field_comments: Komentar
  243. field_url: URL
  244. field_start_page: Začetna stran
  245. field_subproject: Podprojekt
  246. field_hours: Ur
  247. field_activity: Aktivnost
  248. field_spent_on: Datum
  249. field_identifier: Identifikator
  250. field_is_filter: Uporabljen kot filter
  251. field_issue_to: Povezan zahtevek
  252. field_delay: Zamik
  253. field_assignable: Zahtevki so lahko dodeljeni tej vlogi
  254. field_redirect_existing_links: Preusmeri obstoječe povezave
  255. field_estimated_hours: Ocenjen čas
  256. field_column_names: Stolpci
  257. field_time_zone: Časovni pas
  258. field_searchable: Zmožen iskanja
  259. field_default_value: Privzeta vrednost
  260. field_comments_sorting: Prikaži komentarje
  261. field_parent_title: Matična stran
  262. setting_app_title: Naslov aplikacije
  263. setting_welcome_text: Pozdravno besedilo
  264. setting_default_language: Privzeti jezik
  265. setting_login_required: Zahtevano overovljanje
  266. setting_self_registration: Samostojna registracija
  267. setting_attachment_max_size: Maksimalna velikost priponk
  268. setting_issues_export_limit: Skrajna meja za izvoz zahtevkov
  269. setting_mail_from: E-naslov za emisijo
  270. setting_bcc_recipients: Prejemniki slepih kopij (bcc)
  271. setting_plain_text_mail: navadno e-sporočilo (ne HTML)
  272. setting_host_name: Ime gostitelja in pot
  273. setting_text_formatting: Oblikovanje besedila
  274. setting_wiki_compression: Stiskanje Wiki zgodovine
  275. setting_feeds_limit: Meja obsega Atom virov
  276. setting_default_projects_public: Novi projekti so privzeto javni
  277. setting_autofetch_changesets: Samodejni izvleček zapisa sprememb
  278. setting_sys_api_enabled: Omogoči WS za upravljanje shrambe
  279. setting_commit_ref_keywords: Sklicne ključne besede
  280. setting_commit_fix_keywords: Urejanje ključne besede
  281. setting_autologin: Avtomatska prijava
  282. setting_date_format: Oblika datuma
  283. setting_time_format: Oblika časa
  284. setting_cross_project_issue_relations: Dovoli povezave zahtevkov med različnimi projekti
  285. setting_issue_list_default_columns: Privzeti stolpci prikazani na seznamu zahtevkov
  286. setting_emails_footer: Noga e-sporočil
  287. setting_protocol: Protokol
  288. setting_per_page_options: Število elementov na stran
  289. setting_user_format: Oblika prikaza uporabnikov
  290. setting_activity_days_default: Prikaz dni na aktivnost projekta
  291. setting_display_subprojects_issues: Privzeti prikaz zahtevkov podprojektov v glavnem projektu
  292. setting_enabled_scm: Omogočen SCM
  293. setting_mail_handler_api_enabled: Omogoči WS za prihajajočo e-pošto
  294. setting_mail_handler_api_key: API ključ
  295. setting_sequential_project_identifiers: Generiraj projektne identifikatorje sekvenčno
  296. setting_gravatar_enabled: Uporabljaj Gravatar ikone
  297. setting_diff_max_lines_displayed: Maksimalno število prikazanih vrstic različnosti
  298. permission_edit_project: Uredi projekt
  299. permission_select_project_modules: Izberi module projekta
  300. permission_manage_members: Uredi člane
  301. permission_manage_versions: Uredi verzije
  302. permission_manage_categories: Urejanje kategorij zahtevkov
  303. permission_add_issues: Dodaj zahtevke
  304. permission_edit_issues: Uredi zahtevke
  305. permission_manage_issue_relations: Uredi odnose med zahtevki
  306. permission_add_issue_notes: Dodaj zabeležke
  307. permission_edit_issue_notes: Uredi zabeležke
  308. permission_edit_own_issue_notes: Uredi lastne zabeležke
  309. permission_delete_issues: Izbriši zahtevke
  310. permission_manage_public_queries: Uredi javna povpraševanja
  311. permission_save_queries: Shrani povpraševanje
  312. permission_view_gantt: Poglej gantogram
  313. permission_view_calendar: Poglej koledar
  314. permission_view_issue_watchers: Oglej si listo spremeljevalcev
  315. permission_add_issue_watchers: Dodaj spremljevalce
  316. permission_log_time: Beleži porabljen čas
  317. permission_view_time_entries: Poglej porabljen čas
  318. permission_edit_time_entries: Uredi beležko časa
  319. permission_edit_own_time_entries: Uredi beležko lastnega časa
  320. permission_manage_news: Uredi novice
  321. permission_comment_news: Komentiraj novice
  322. permission_view_documents: Poglej dokumente
  323. permission_manage_files: Uredi datoteke
  324. permission_view_files: Poglej datoteke
  325. permission_manage_wiki: Uredi wiki
  326. permission_rename_wiki_pages: Preimenuj wiki strani
  327. permission_delete_wiki_pages: Izbriši wiki strani
  328. permission_view_wiki_pages: Poglej wiki
  329. permission_view_wiki_edits: Poglej wiki zgodovino
  330. permission_edit_wiki_pages: Uredi wiki strani
  331. permission_delete_wiki_pages_attachments: Izbriši priponke
  332. permission_protect_wiki_pages: Zaščiti wiki strani
  333. permission_manage_repository: Uredi shrambo
  334. permission_browse_repository: Prebrskaj shrambo
  335. permission_view_changesets: Poglej zapis sprememb
  336. permission_commit_access: Dostop za predajo
  337. permission_manage_boards: Uredi table
  338. permission_view_messages: Poglej sporočila
  339. permission_add_messages: Objavi sporočila
  340. permission_edit_messages: Uredi sporočila
  341. permission_edit_own_messages: Uredi lastna sporočila
  342. permission_delete_messages: Izbriši sporočila
  343. permission_delete_own_messages: Izbriši lastna sporočila
  344. project_module_issue_tracking: Sledenje zahtevkom
  345. project_module_time_tracking: Sledenje časa
  346. project_module_news: Novice
  347. project_module_documents: Dokumenti
  348. project_module_files: Datoteke
  349. project_module_wiki: Wiki
  350. project_module_repository: Shramba
  351. project_module_boards: Table
  352. label_user: Uporabnik
  353. label_user_plural: Uporabniki
  354. label_user_new: Nov uporabnik
  355. label_project: Projekt
  356. label_project_new: Nov projekt
  357. label_project_plural: Projekti
  358. label_x_projects:
  359. zero: ni projektov
  360. one: 1 projekt
  361. other: "%{count} projektov"
  362. label_project_all: Vsi projekti
  363. label_project_latest: Zadnji projekti
  364. label_issue: Zahtevek
  365. label_issue_new: Nov zahtevek
  366. label_issue_plural: Zahtevki
  367. label_issue_view_all: Poglej vse zahtevke
  368. label_issues_by: "Zahtevki od %{value}"
  369. label_issue_added: Zahtevek dodan
  370. label_issue_updated: Zahtevek posodobljen
  371. label_document: Dokument
  372. label_document_new: Nov dokument
  373. label_document_plural: Dokumenti
  374. label_document_added: Dokument dodan
  375. label_role: Vloga
  376. label_role_plural: Vloge
  377. label_role_new: Nova vloga
  378. label_role_and_permissions: Vloge in dovoljenja
  379. label_member: Član
  380. label_member_new: Nov član
  381. label_member_plural: Člani
  382. label_tracker: Vrsta zahtevka
  383. label_tracker_plural: Vrste zahtevkov
  384. label_tracker_new: Nova vrsta zahtevka
  385. label_workflow: Potek dela
  386. label_issue_status: Stanje zahtevka
  387. label_issue_status_plural: Stanje zahtevkov
  388. label_issue_status_new: Novo stanje
  389. label_issue_category: Kategorija zahtevka
  390. label_issue_category_plural: Kategorije zahtevkov
  391. label_issue_category_new: Nova kategorija
  392. label_custom_field: Polje po meri
  393. label_custom_field_plural: Polja po meri
  394. label_custom_field_new: Novo polje po meri
  395. label_enumerations: Seznami
  396. label_enumeration_new: Nova vrednost
  397. label_information: Informacija
  398. label_information_plural: Informacije
  399. label_please_login: Prosimo prijavite se
  400. label_register: Registracija
  401. label_password_lost: Spremeni geslo
  402. label_home: Domov
  403. label_my_page: Moja stran
  404. label_my_account: Moj račun
  405. label_my_projects: Moji projekti
  406. label_administration: Upravljanje
  407. label_login: Prijava
  408. label_logout: Odjava
  409. label_help: Pomoč
  410. label_reported_issues: Prijavljeni zahtevki
  411. label_assigned_to_me_issues: Zahtevki dodeljeni meni
  412. label_last_login: Zadnja povezava
  413. label_registered_on: Registriran
  414. label_activity: Aktivnosti
  415. label_overall_activity: Celotna aktivnost
  416. label_user_activity: "Aktivnost %{value}"
  417. label_new: Nov
  418. label_logged_as: Prijavljen(a) kot
  419. label_environment: Okolje
  420. label_authentication: Overovitev
  421. label_auth_source: Način overovitve
  422. label_auth_source_new: Nov način overovitve
  423. label_auth_source_plural: Načini overovitve
  424. label_subproject_plural: Podprojekti
  425. label_and_its_subprojects: "%{value} in njegovi podprojekti"
  426. label_min_max_length: Min - Max dolžina
  427. label_list: Seznam
  428. label_date: Datum
  429. label_integer: Celo število
  430. label_float: Decimalno število
  431. label_boolean: Boolean
  432. label_string: Besedilo
  433. label_text: Dolgo besedilo
  434. label_attribute: Lastnost
  435. label_attribute_plural: Lastnosti
  436. label_no_data: Ni podatkov za prikaz
  437. label_change_status: Spremeni stanje
  438. label_history: Zgodovina
  439. label_attachment: Datoteka
  440. label_attachment_new: Nova datoteka
  441. label_attachment_delete: Izbriši datoteko
  442. label_attachment_plural: Datoteke
  443. label_file_added: Datoteka dodana
  444. label_report: Poročilo
  445. label_report_plural: Poročila
  446. label_news: Novica
  447. label_news_new: Dodaj novico
  448. label_news_plural: Novice
  449. label_news_latest: Zadnje novice
  450. label_news_view_all: Poglej vse novice
  451. label_news_added: Dodane novice
  452. label_settings: Nastavitve
  453. label_overview: Povzetek
  454. label_version: Verzija
  455. label_version_new: Nova verzija
  456. label_version_plural: Verzije
  457. label_confirmation: Potrditev
  458. label_export_to: 'Na razpolago tudi v:'
  459. label_read: Preberi...
  460. label_public_projects: Javni projekti
  461. label_open_issues: odprt zahtevek
  462. label_open_issues_plural: odprti zahtevki
  463. label_closed_issues: zaprt zahtevek
  464. label_closed_issues_plural: zaprti zahtevki
  465. label_x_open_issues_abbr:
  466. zero: 0 odprtih
  467. one: 1 odprt
  468. other: "%{count} odprtih"
  469. label_x_closed_issues_abbr:
  470. zero: 0 zaprtih
  471. one: 1 zaprt
  472. other: "%{count} zaprtih"
  473. label_total: Skupaj
  474. label_permissions: Dovoljenja
  475. label_current_status: Trenutno stanje
  476. label_new_statuses_allowed: Novi zahtevki dovoljeni
  477. label_all: vsi
  478. label_none: noben
  479. label_nobody: nihče
  480. label_next: Naslednji
  481. label_previous: Prejšnji
  482. label_used_by: V uporabi od
  483. label_details: Podrobnosti
  484. label_add_note: Dodaj zabeležko
  485. label_calendar: Koledar
  486. label_months_from: mesecev od
  487. label_gantt: Gantogram
  488. label_internal: Notranji
  489. label_last_changes: "zadnjih %{count} sprememb"
  490. label_change_view_all: Poglej vse spremembe
  491. label_comment: Komentar
  492. label_comment_plural: Komentarji
  493. label_x_comments:
  494. zero: ni komentarjev
  495. one: 1 komentar
  496. other: "%{count} komentarjev"
  497. label_comment_add: Dodaj komentar
  498. label_comment_added: Komentar dodan
  499. label_comment_delete: Izbriši komentarje
  500. label_query: Iskanje po meri
  501. label_query_plural: Iskanja po meri
  502. label_query_new: Novo iskanje
  503. label_filter_add: Dodaj filter
  504. label_filter_plural: Filtri
  505. label_equals: je enako
  506. label_not_equals: ni enako
  507. label_in_less_than: v manj kot
  508. label_in_more_than: v več kot
  509. label_in: v
  510. label_today: danes
  511. label_all_time: v vsem času
  512. label_yesterday: včeraj
  513. label_this_week: ta teden
  514. label_last_week: pretekli teden
  515. label_last_n_days: "zadnjih %{count} dni"
  516. label_this_month: ta mesec
  517. label_last_month: zadnji mesec
  518. label_this_year: to leto
  519. label_date_range: Razpon datumov
  520. label_less_than_ago: manj kot dni nazaj
  521. label_more_than_ago: več kot dni nazaj
  522. label_ago: dni nazaj
  523. label_contains: vsebuje
  524. label_not_contains: ne vsebuje
  525. label_day_plural: dni
  526. label_repository: Shramba
  527. label_repository_plural: Shrambe
  528. label_browse: Prebrskaj
  529. label_revision: Revizija
  530. label_revision_plural: Revizije
  531. label_associated_revisions: Povezane revizije
  532. label_added: dodano
  533. label_modified: spremenjeno
  534. label_copied: kopirano
  535. label_renamed: preimenovano
  536. label_deleted: izbrisano
  537. label_latest_revision: Zadnja revizija
  538. label_latest_revision_plural: Zadnje revizije
  539. label_view_revisions: Poglej revizije
  540. label_max_size: Največja velikost
  541. label_sort_highest: Premakni na vrh
  542. label_sort_higher: Premakni gor
  543. label_sort_lower: Premakni dol
  544. label_sort_lowest: Premakni na dno
  545. label_roadmap: Načrt
  546. label_roadmap_due_in: "Do %{value}"
  547. label_roadmap_overdue: "%{value} zakasnel"
  548. label_roadmap_no_issues: Ni zahtevkov za to verzijo
  549. label_search: Išči
  550. label_result_plural: Rezultati
  551. label_all_words: Vse besede
  552. label_wiki: Predstavitev
  553. label_wiki_edit: Uredi stran
  554. label_wiki_edit_plural: Uredi strani
  555. label_wiki_page: Predstavitvena stran
  556. label_wiki_page_plural: Predstavitvene strani
  557. label_index_by_title: Razvrsti po naslovu
  558. label_index_by_date: Razvrsti po datumu
  559. label_current_version: Trenutna verzija
  560. label_preview: Predogled
  561. label_feed_plural: Atom viri
  562. label_changes_details: Podrobnosti o vseh spremembah
  563. label_issue_tracking: Sledenje zahtevkom
  564. label_spent_time: Porabljen čas
  565. label_f_hour: "%{value} ura"
  566. label_f_hour_plural: "%{value} ur"
  567. label_time_tracking: Sledenje času
  568. label_change_plural: Spremembe
  569. label_statistics: Statistika
  570. label_commits_per_month: Predaj na mesec
  571. label_commits_per_author: Predaj na avtorja
  572. label_view_diff: Preglej razlike
  573. label_diff_inline: znotraj
  574. label_diff_side_by_side: vzporedno
  575. label_options: Možnosti
  576. label_copy_workflow_from: Kopiraj potek dela od
  577. label_permissions_report: Poročilo o dovoljenjih
  578. label_watched_issues: Spremljani zahtevki
  579. label_related_issues: Povezani zahtevki
  580. label_applied_status: Uveljavljeno stanje
  581. label_loading: Nalaganje...
  582. label_relation_new: Nova povezava
  583. label_relation_delete: Izbriši povezavo
  584. label_relates_to: povezan z
  585. label_duplicates: duplikati
  586. label_duplicated_by: dupliciral
  587. label_blocks: blok
  588. label_blocked_by: blokiral
  589. label_precedes: ima prednost pred
  590. label_follows: sledi
  591. label_stay_logged_in: Ostani prijavljen(a)
  592. label_disabled: onemogoči
  593. label_show_completed_versions: Prikaži zaključene verzije
  594. label_me: jaz
  595. label_board: Forum
  596. label_board_new: Nov forum
  597. label_board_plural: Forumi
  598. label_topic_plural: Teme
  599. label_message_plural: Sporočila
  600. label_message_last: Zadnje sporočilo
  601. label_message_new: Novo sporočilo
  602. label_message_posted: Sporočilo dodano
  603. label_reply_plural: Odgovori
  604. label_send_information: Pošlji informacijo o računu uporabniku
  605. label_year: Leto
  606. label_month: Mesec
  607. label_week: Teden
  608. label_date_from: Do
  609. label_date_to: Do
  610. label_language_based: Glede na uporabnikov jezik
  611. label_sort_by: "Razporedi po %{value}"
  612. label_send_test_email: Pošlji testno e-pismo
  613. label_feeds_access_key_created_on: "Atom dostopni ključ narejen %{value} nazaj"
  614. label_module_plural: Moduli
  615. label_added_time_by: "Dodal %{author} %{age} nazaj"
  616. label_updated_time_by: "Posodobil %{author} %{age} nazaj"
  617. label_updated_time: "Posodobljeno %{value} nazaj"
  618. label_jump_to_a_project: Skoči na projekt...
  619. label_file_plural: Datoteke
  620. label_changeset_plural: Zapisi sprememb
  621. label_default_columns: Privzeti stolpci
  622. label_no_change_option: (Ni spremembe)
  623. label_bulk_edit_selected_issues: Uredi izbrane zahtevke skupaj
  624. label_theme: Tema
  625. label_default: Privzeto
  626. label_search_titles_only: Preišči samo naslove
  627. label_user_mail_option_all: "Za vsak dogodek v vseh mojih projektih"
  628. label_user_mail_option_selected: "Za vsak dogodek samo na izbranih projektih..."
  629. label_user_mail_no_self_notified: "Ne želim biti opozorjen(a) na spremembe, ki jih naredim sam(a)"
  630. label_registration_activation_by_email: aktivacija računa po e-pošti
  631. label_registration_manual_activation: ročna aktivacija računa
  632. label_registration_automatic_activation: samodejna aktivacija računa
  633. label_display_per_page: "Na stran: %{value}"
  634. label_age: Starost
  635. label_change_properties: Sprememba lastnosti
  636. label_general: Splošno
  637. label_scm: SCM
  638. label_plugins: Vtičniki
  639. label_ldap_authentication: LDAP overovljanje
  640. label_downloads_abbr: D/L
  641. label_optional_description: Neobvezen opis
  642. label_add_another_file: Dodaj še eno datoteko
  643. label_preferences: Preference
  644. label_chronological_order: Kronološko
  645. label_reverse_chronological_order: Obrnjeno kronološko
  646. label_incoming_emails: Prihajajoča e-pošta
  647. label_generate_key: Ustvari ključ
  648. label_issue_watchers: Spremljevalci
  649. label_example: Vzorec
  650. button_login: Prijavi se
  651. button_submit: Pošlji
  652. button_save: Shrani
  653. button_check_all: Označi vse
  654. button_uncheck_all: Odznači vse
  655. button_delete: Izbriši
  656. button_create: Ustvari
  657. button_test: Testiraj
  658. button_edit: Uredi
  659. button_add: Dodaj
  660. button_change: Spremeni
  661. button_apply: Uporabi
  662. button_clear: Počisti
  663. button_lock: Zakleni
  664. button_unlock: Odkleni
  665. button_download: Prenesi
  666. button_list: Seznam
  667. button_view: Pogled
  668. button_move: Premakni
  669. button_back: Nazaj
  670. button_cancel: Prekliči
  671. button_activate: Aktiviraj
  672. button_sort: Razvrsti
  673. button_log_time: Beleži čas
  674. button_rollback: Povrni na to verzijo
  675. button_watch: Spremljaj
  676. button_unwatch: Ne spremljaj
  677. button_reply: Odgovori
  678. button_archive: Arhiviraj
  679. button_unarchive: Odarhiviraj
  680. button_reset: Ponastavi
  681. button_rename: Preimenuj
  682. button_change_password: Spremeni geslo
  683. button_copy: Kopiraj
  684. button_annotate: Zapiši pripombo
  685. button_update: Posodobi
  686. button_configure: Konfiguriraj
  687. button_quote: Citiraj
  688. status_active: aktivni
  689. status_registered: registriran
  690. status_locked: zaklenjen
  691. text_select_mail_notifications: Izberi dejanja za katera naj bodo poslana oznanila preko e-pošto.
  692. text_regexp_info: npr. ^[A-Z0-9]+$
  693. text_min_max_length_info: 0 pomeni brez omejitev
  694. text_project_destroy_confirmation: Ali ste prepričani da želite izbrisati izbrani projekt in vse z njim povezane podatke?
  695. text_subprojects_destroy_warning: "Njegov(i) podprojekt(i): %{value} bodo prav tako izbrisani."
  696. text_workflow_edit: Izberite vlogo in zahtevek za urejanje poteka dela
  697. text_are_you_sure: Ali ste prepričani?
  698. text_tip_issue_begin_day: naloga z začetkom na ta dan
  699. text_tip_issue_end_day: naloga z zaključkom na ta dan
  700. text_tip_issue_begin_end_day: naloga ki se začne in konča ta dan
  701. text_caracters_maximum: "največ %{count} znakov."
  702. text_caracters_minimum: "Mora biti vsaj dolg vsaj %{count} znakov."
  703. text_length_between: "Dolžina med %{min} in %{max} znakov."
  704. text_tracker_no_workflow: Potek dela za to vrsto zahtevka ni določen
  705. text_unallowed_characters: Nedovoljeni znaki
  706. text_comma_separated: Dovoljenih je več vrednosti (ločenih z vejico).
  707. text_issues_ref_in_commit_messages: Zahtevki sklicev in popravkov v sporočilu predaje
  708. text_issue_added: "Zahtevek %{id} je sporočil(a) %{author}."
  709. text_issue_updated: "Zahtevek %{id} je posodobil(a) %{author}."
  710. text_wiki_destroy_confirmation: Ali ste prepričani da želite izbrisati to wiki stran in vso njeno vsebino?
  711. text_issue_category_destroy_question: "Nekateri zahtevki (%{count}) so dodeljeni tej kategoriji. Kaj želite storiti?"
  712. text_issue_category_destroy_assignments: Odstrani naloge v kategoriji
  713. text_issue_category_reassign_to: Ponovno dodeli zahtevke tej kategoriji
  714. text_user_mail_option: "Na neizbrane projekte boste prejemali le obvestila o zadevah ki jih spremljate ali v katere ste vključeni (npr. zahtevki katerih avtor(ica) ste)"
  715. text_no_configuration_data: "Vloge, vrste zahtevkov, statusi zahtevkov in potek dela še niso bili določeni. \nZelo priporočljivo je, da naložite privzeto konfiguracijo, ki jo lahko kasneje tudi prilagodite."
  716. text_load_default_configuration: Naloži privzeto konfiguracijo
  717. text_status_changed_by_changeset: "Dodano v zapis sprememb %{value}."
  718. text_issues_destroy_confirmation: 'Ali ste prepričani, da želite izbrisati izbrani(e) zahtevek(ke)?'
  719. text_select_project_modules: 'Izberite module, ki jih želite omogočiti za ta projekt:'
  720. text_default_administrator_account_changed: Spremenjen privzeti administratorski račun
  721. text_file_repository_writable: Omogočeno pisanje v shrambo datotek
  722. text_rmagick_available: RMagick je na voljo(neobvezno)
  723. text_destroy_time_entries_question: "%{hours} ur je bilo opravljenih na zahtevku, ki ga želite izbrisati. Kaj želite storiti?"
  724. text_destroy_time_entries: Izbriši opravljene ure
  725. text_assign_time_entries_to_project: Predaj opravljene ure projektu
  726. text_reassign_time_entries: 'Prenesi opravljene ure na ta zahtevek:'
  727. text_user_wrote: "%{value} je napisal(a):"
  728. text_enumeration_destroy_question: "%{count} objektov je določenih tej vrednosti."
  729. text_enumeration_category_reassign_to: 'Ponastavi jih na to vrednost:'
  730. text_email_delivery_not_configured: "E-poštna dostava ni nastavljena in oznanila so onemogočena.\nNastavite vaš SMTP strežnik v config/configuration.yml in ponovno zaženite aplikacijo da ga omogočite.\n"
  731. text_repository_usernames_mapping: "Izberite ali posodobite Redmine uporabnika dodeljenega vsakemu uporabniškemu imenu najdenemu v zapisniku shrambe.\n Uporabniki z enakim Redmine ali shrambinem uporabniškem imenu ali e-poštnem naslovu so samodejno dodeljeni."
  732. text_diff_truncated: '... Ta sprememba je bila odsekana ker presega največjo velikost ki je lahko prikazana.'
  733. default_role_manager: Upravnik
  734. default_role_developer: Razvijalec
  735. default_role_reporter: Poročevalec
  736. default_tracker_bug: Hrošč
  737. default_tracker_feature: Funkcija
  738. default_tracker_support: Podpora
  739. default_issue_status_new: Nov
  740. default_issue_status_in_progress: V teku
  741. default_issue_status_resolved: Rešen
  742. default_issue_status_feedback: Povratna informacija
  743. default_issue_status_closed: Zaključen
  744. default_issue_status_rejected: Zavrnjen
  745. default_doc_category_user: Uporabniška dokumentacija
  746. default_doc_category_tech: Tehnična dokumentacija
  747. default_priority_low: Nizka
  748. default_priority_normal: Običajna
  749. default_priority_high: Visoka
  750. default_priority_urgent: Urgentna
  751. default_priority_immediate: Takojšnje ukrepanje
  752. default_activity_design: Oblikovanje
  753. default_activity_development: Razvoj
  754. enumeration_issue_priorities: Prioritete zahtevkov
  755. enumeration_doc_categories: Kategorije dokumentov
  756. enumeration_activities: Aktivnosti (sledenje časa)
  757. warning_attachments_not_saved: "%{count} datotek(e) ni bilo mogoče shraniti."
  758. field_editable: Uredljivo
  759. text_plugin_assets_writable: Zapisljiva mapa za vtičnike
  760. label_display: Prikaz
  761. button_create_and_continue: Ustvari in nadaljuj
  762. text_custom_field_possible_values_info: 'Ena vrstica za vsako vrednost'
  763. setting_repository_log_display_limit: Največje število prikazanih revizij v log datoteki
  764. setting_file_max_size_displayed: Največja velikost besedilnih datotek v vključenem prikazu
  765. field_watcher: Opazovalec
  766. setting_openid: Dovoli OpenID prijavo in registracijo
  767. field_identity_url: OpenID URL
  768. label_login_with_open_id_option: ali se prijavi z OpenID
  769. field_content: Vsebina
  770. label_descending: Padajoče
  771. label_sort: Razvrsti
  772. label_ascending: Naraščajoče
  773. label_date_from_to: Od %{start} do %{end}
  774. label_greater_or_equal: ">="
  775. label_less_or_equal: <=
  776. text_wiki_page_destroy_question: Ta stran ima %{descendants} podstran(i) in naslednik(ov). Kaj želite storiti?
  777. text_wiki_page_reassign_children: Znova dodeli podstrani tej glavni strani
  778. text_wiki_page_nullify_children: Obdrži podstrani kot glavne strani
  779. text_wiki_page_destroy_children: Izbriši podstrani in vse njihove naslednike
  780. setting_password_min_length: Minimalna dolžina gesla
  781. field_group_by: Združi rezultate po
  782. mail_subject_wiki_content_updated: "'%{id}' wiki stran je bila posodobljena"
  783. label_wiki_content_added: Wiki stran dodana
  784. mail_subject_wiki_content_added: "'%{id}' wiki stran je bila dodana"
  785. mail_body_wiki_content_added: "%{author} je dodal '%{id}' wiki stran"
  786. label_wiki_content_updated: Wiki stran posodobljena
  787. mail_body_wiki_content_updated: "%{author} je posodobil '%{id}' wiki stran."
  788. permission_add_project: Ustvari projekt
  789. setting_new_project_user_role_id: Vloga, dodeljena neadministratorskemu uporabniku, ki je ustvaril projekt
  790. label_view_all_revisions: Poglej vse revizije
  791. label_tag: Oznaka
  792. label_branch: Veja
  793. error_no_tracker_in_project: Noben sledilnik ni povezan s tem projektom. Prosimo preverite nastavitve projekta.
  794. error_no_default_issue_status: Privzeti zahtevek ni definiran. Prosimo preverite svoje nastavitve (Pojdite na "Administracija -> Stanje zahtevkov").
  795. text_journal_changed: "%{label} se je spremenilo iz %{old} v %{new}"
  796. text_journal_set_to: "%{label} nastavljeno na %{value}"
  797. text_journal_deleted: "%{label} izbrisan (%{old})"
  798. label_group_plural: Skupine
  799. label_group: Skupina
  800. label_group_new: Nova skupina
  801. label_time_entry_plural: Porabljen čas
  802. text_journal_added: "%{label} %{value} dodan"
  803. field_active: Aktiven
  804. enumeration_system_activity: Sistemska aktivnost
  805. permission_delete_issue_watchers: Izbriši opazovalce
  806. version_status_closed: zaprt
  807. version_status_locked: zaklenjen
  808. version_status_open: odprt
  809. error_can_not_reopen_issue_on_closed_version: Zahtevek dodeljen zaprti verziji ne more biti ponovno odprt
  810. label_user_anonymous: Anonimni
  811. button_move_and_follow: Premakni in sledi
  812. setting_default_projects_modules: Privzeti moduli za nove projekte
  813. setting_gravatar_default: Privzeta Gravatar slika
  814. field_sharing: Deljenje
  815. label_version_sharing_hierarchy: S projektno hierarhijo
  816. label_version_sharing_system: Z vsemi projekti
  817. label_version_sharing_descendants: S podprojekti
  818. label_version_sharing_tree: Z drevesom projekta
  819. label_version_sharing_none: Ni deljeno
  820. error_can_not_archive_project: Ta projekt ne more biti arhiviran
  821. button_duplicate: Podvoji
  822. button_copy_and_follow: Kopiraj in sledi
  823. label_copy_source: Vir
  824. setting_issue_done_ratio: Izračunaj razmerje opravljenega zahtevka z
  825. setting_issue_done_ratio_issue_status: Uporabi stanje zahtevka
  826. error_issue_done_ratios_not_updated: Razmerje opravljenega zahtevka ni bilo posodobljeno.
  827. error_workflow_copy_target: Prosimo izberite ciljni(e) sledilnik(e) in vlogo(e)
  828. setting_issue_done_ratio_issue_field: Uporabi polje zahtevka
  829. label_copy_same_as_target: Enako kot cilj
  830. label_copy_target: Cilj
  831. notice_issue_done_ratios_updated: Razmerje opravljenega zahtevka posodobljeno.
  832. error_workflow_copy_source: Prosimo izberite vir zahtevka ali vlogo
  833. label_update_issue_done_ratios: Posodobi razmerje opravljenega zahtevka
  834. setting_start_of_week: Začni koledarje z
  835. permission_view_issues: Poglej zahtevke
  836. label_display_used_statuses_only: Prikaži samo stanja ki uporabljajo ta sledilnik
  837. label_revision_id: Revizija %{value}
  838. label_api_access_key: API dostopni ključ
  839. label_api_access_key_created_on: API dostopni ključ ustvarjen pred %{value}
  840. label_feeds_access_key: Atom dostopni ključ
  841. notice_api_access_key_reseted: Vaš API dostopni ključ je bil ponastavljen.
  842. setting_rest_api_enabled: Omogoči REST spletni servis
  843. label_missing_api_access_key: Manjkajoč API dostopni ključ
  844. label_missing_feeds_access_key: Manjkajoč Atom dostopni ključ
  845. button_show: Prikaži
  846. text_line_separated: Dovoljenih več vrednosti (ena vrstica za vsako vrednost).
  847. setting_mail_handler_body_delimiters: Odreži e-pošto po eni od teh vrstic
  848. permission_add_subprojects: Ustvari podprojekte
  849. label_subproject_new: Nov podprojekt
  850. text_own_membership_delete_confirmation: |-
  851. Odstranili boste nekatere ali vse od dovoljenj zaradi česar morda ne boste mogli več urejati tega projekta.
  852. Ali ste prepričani, da želite nadaljevati?
  853. label_close_versions: Zapri dokončane verzije
  854. label_board_sticky: Lepljivo
  855. label_board_locked: Zaklenjeno
  856. permission_export_wiki_pages: Izvozi wiki strani
  857. setting_cache_formatted_text: Predpomni oblikovano besedilo
  858. permission_manage_project_activities: Uredi aktivnosti projekta
  859. error_unable_delete_issue_status: Stanja zahtevka ni bilo možno spremeniti
  860. label_profile: Profil
  861. permission_manage_subtasks: Uredi podnaloge
  862. field_parent_issue: Nadrejena naloga
  863. label_subtask_plural: Podnaloge
  864. label_project_copy_notifications: Med kopiranjem projekta pošlji e-poštno sporočilo
  865. error_can_not_delete_custom_field: Polja po meri ni mogoče izbrisati
  866. error_unable_to_connect: Povezava ni mogoča (%{value})
  867. error_can_not_remove_role: Ta vloga je v uporabi in je ni mogoče izbrisati.
  868. error_can_not_delete_tracker: Ta sledilnik vsebuje zahtevke in se ga ne more izbrisati.
  869. field_principal: Upravnik varnosti
  870. notice_failed_to_save_members: "Shranjevanje uporabnika(ov) ni uspelo: %{errors}."
  871. text_zoom_out: Približaj
  872. text_zoom_in: Oddalji
  873. notice_unable_delete_time_entry: Brisanje dnevnika porabljenaga časa ni mogoče.
  874. label_overall_spent_time: Skupni porabljeni čas
  875. field_time_entries: Beleži porabljeni čas
  876. project_module_gantt: Gantogram
  877. project_module_calendar: Koledear
  878. button_edit_associated_wikipage: "Uredi povezano Wiki stran: %{page_title}"
  879. field_text: Besedilno polje
  880. setting_default_notification_option: Privzeta možnost obveščanja
  881. label_user_mail_option_only_my_events: Samo za stvari, ki jih opazujem ali sem v njih vpleten
  882. label_user_mail_option_none: Noben dogodek
  883. field_member_of_group: Pooblaščenčeva skupina
  884. field_assigned_to_role: Pooblaščenčeva vloga
  885. notice_not_authorized_archived_project: Projekt, do katerega poskušate dostopati, je bil arhiviran.
  886. label_principal_search: "Poišči uporabnika ali skupino:"
  887. label_user_search: "Poišči uporabnikia:"
  888. field_visible: Viden
  889. setting_emails_header: Glava e-pošte
  890. setting_commit_logtime_activity_id: Aktivnost zabeleženega časa
  891. text_time_logged_by_changeset: Uporabljeno v spremembi %{value}.
  892. setting_commit_logtime_enabled: Omogoči beleženje časa
  893. notice_gantt_chart_truncated: Graf je bil odrezan, ker je prekoračil največje dovoljeno število elementov, ki se jih lahko prikaže (%{max})
  894. setting_gantt_items_limit: Največje število elementov prikazano na gantogramu
  895. field_warn_on_leaving_unsaved: Opozori me, kadar zapuščam stran z neshranjenim besedilom
  896. text_warn_on_leaving_unsaved: Trenutna stran vsebuje neshranjeno besedilo ki bo izgubljeno, če zapustite to stran.
  897. label_my_queries: Moje poizvedbe po meri
  898. text_journal_changed_no_detail: "%{label} posodobljen"
  899. label_news_comment_added: Komentar dodan novici
  900. button_expand_all: Razširi vse
  901. button_collapse_all: Skrči vse
  902. label_additional_workflow_transitions_for_assignee: Dovoljeni dodatni prehodi kadar je uporabnik pooblaščenec
  903. label_additional_workflow_transitions_for_author: Dovoljeni dodatni prehodi kadar je uporabnik avtor
  904. label_bulk_edit_selected_time_entries: Skupinsko urejanje izbranih časovnih zapisov
  905. text_time_entries_destroy_confirmation: Ali ste prepričani, da želite izbristai izbran(e) časovn(i/e) zapis(e)?
  906. label_role_anonymous: Anonimni
  907. label_role_non_member: Nečlan
  908. label_issue_note_added: Dodan zaznamek
  909. label_issue_status_updated: Status posodobljen
  910. label_issue_priority_updated: Prioriteta posodobljena
  911. label_issues_visibility_own: Zahtevek ustvarjen s strani uporabnika ali dodeljen uporabniku
  912. field_issues_visibility: Vidljivost zahtevkov
  913. label_issues_visibility_all: Vsi zahtevki
  914. permission_set_own_issues_private: Nastavi lastne zahtevke kot javne ali zasebne
  915. field_is_private: Zaseben
  916. permission_set_issues_private: Nastavi zahtevke kot javne ali zasebne
  917. label_issues_visibility_public: Vsi nezasebni zahtevki
  918. text_issues_destroy_descendants_confirmation: To bo izbrisalo tudi %{count} podnalog(o).
  919. field_commit_logs_encoding: Kodiranje sporočil ob predaji
  920. field_scm_path_encoding: Pot do kodiranja
  921. text_scm_path_encoding_note: "Privzeto: UTF-8"
  922. field_path_to_repository: Pot do shrambe
  923. field_root_directory: Korenska mapa
  924. field_cvs_module: Modul
  925. field_cvsroot: CVSROOT
  926. text_mercurial_repository_note: Lokalna shramba (npr. /hgrepo, c:\hgrepo)
  927. text_scm_command: Ukaz
  928. text_scm_command_version: Verzija
  929. label_git_report_last_commit: Sporoči zadnje uveljavljanje datotek in map
  930. text_scm_config: Svoje SCM ukaze lahko nastavite v datoteki config/configuration.yml. Po urejanju prosimo ponovno zaženite aplikacijo.
  931. text_scm_command_not_available: SCM ukaz ni na voljo. Prosimo preverite nastavitve v upravljalskem podoknu.
  932. text_git_repository_note: Shramba je prazna in lokalna (npr. /gitrepo, c:\gitrepo)
  933. notice_issue_successful_create: Ustvarjen zahtevek %{id}.
  934. label_between: med
  935. setting_issue_group_assignment: Dovoli dodeljevanje zahtevka skupinam
  936. label_diff: diff
  937. description_query_sort_criteria_direction: Sort direction
  938. description_project_scope: Search scope
  939. description_filter: Filter
  940. description_user_mail_notification: Mail notification settings
  941. description_message_content: Message content
  942. description_available_columns: Available Columns
  943. description_issue_category_reassign: Choose issue category
  944. description_search: Searchfield
  945. description_notes: Notes
  946. description_choose_project: Projects
  947. description_query_sort_criteria_attribute: Sort attribute
  948. description_wiki_subpages_reassign: Choose new parent page
  949. description_selected_columns: Selected Columns
  950. label_parent_revision: Parent
  951. label_child_revision: Child
  952. error_scm_annotate_big_text_file: The entry cannot be annotated, as it exceeds the maximum text file size.
  953. setting_default_issue_start_date_to_creation_date: Use current date as start date for new issues
  954. button_edit_section: Edit this section
  955. setting_repositories_encodings: Attachments and repositories encodings
  956. description_all_columns: All Columns
  957. button_export: Export
  958. label_export_options: "%{export_format} export options"
  959. error_attachment_too_big: This file cannot be uploaded because it exceeds the maximum allowed file size (%{max_size})
  960. notice_failed_to_save_time_entries: "Failed to save %{count} time entrie(s) on %{total} selected: %{ids}."
  961. label_x_issues:
  962. zero: 0 zahtevek
  963. one: 1 zahtevek
  964. other: "%{count} zahtevki"
  965. label_repository_new: New repository
  966. field_repository_is_default: Main repository
  967. label_copy_attachments: Copy attachments
  968. label_item_position: "%{position}/%{count}"
  969. label_completed_versions: Completed versions
  970. text_project_identifier_info: Only lower case letters (a-z), numbers, dashes and underscores are allowed.<br />Once saved, the identifier cannot be changed.
  971. field_multiple: Multiple values
  972. setting_commit_cross_project_ref: Allow issues of all the other projects to be referenced and fixed
  973. text_issue_conflict_resolution_add_notes: Add my notes and discard my other changes
  974. text_issue_conflict_resolution_overwrite: Apply my changes anyway (previous notes will be kept but some changes may be overwritten)
  975. notice_issue_update_conflict: The issue has been updated by an other user while you were editing it.
  976. text_issue_conflict_resolution_cancel: Discard all my changes and redisplay %{link}
  977. permission_manage_related_issues: Manage related issues
  978. field_auth_source_ldap_filter: LDAP filter
  979. label_search_for_watchers: Search for watchers to add
  980. notice_account_deleted: Your account has been permanently deleted.
  981. setting_unsubscribe: Allow users to delete their own account
  982. button_delete_my_account: Delete my account
  983. text_account_destroy_confirmation: |-
  984. Are you sure you want to proceed?
  985. Your account will be permanently deleted, with no way to reactivate it.
  986. error_session_expired: Your session has expired. Please login again.
  987. text_session_expiration_settings: "Warning: changing these settings may expire the current sessions including yours."
  988. setting_session_lifetime: Session maximum lifetime
  989. setting_session_timeout: Session inactivity timeout
  990. label_session_expiration: Session expiration
  991. permission_close_project: Close / reopen the project
  992. label_show_closed_projects: View closed projects
  993. button_close: Close
  994. button_reopen: Reopen
  995. project_status_active: active
  996. project_status_closed: closed
  997. project_status_archived: archived
  998. text_project_closed: This project is closed and read-only.
  999. notice_user_successful_create: User %{id} created.
  1000. field_core_fields: Standard fields
  1001. field_timeout: Timeout (in seconds)
  1002. setting_thumbnails_enabled: Display attachment thumbnails
  1003. setting_thumbnails_size: Thumbnails size (in pixels)
  1004. label_status_transitions: Status transitions
  1005. label_fields_permissions: Fields permissions
  1006. label_readonly: Read-only
  1007. label_required: Required
  1008. text_repository_identifier_info: Only lower case letters (a-z), numbers, dashes and underscores are allowed.<br />Once saved, the identifier cannot be changed.
  1009. field_board_parent: Parent forum
  1010. label_attribute_of_project: Project's %{name}
  1011. label_attribute_of_author: Author's %{name}
  1012. label_attribute_of_assigned_to: Assignee's %{name}
  1013. label_attribute_of_fixed_version: Target version's %{name}
  1014. label_copy_subtasks: Copy subtasks
  1015. label_copied_to: copied to
  1016. label_copied_from: copied from
  1017. label_any_issues_in_project: any issues in project
  1018. label_any_issues_not_in_project: any issues not in project
  1019. field_private_notes: Private notes
  1020. permission_view_private_notes: View private notes
  1021. permission_set_notes_private: Set notes as private
  1022. label_no_issues_in_project: no issues in project
  1023. label_any: vsi
  1024. label_last_n_weeks: last %{count} weeks
  1025. setting_cross_project_subtasks: Allow cross-project subtasks
  1026. label_cross_project_descendants: S podprojekti
  1027. label_cross_project_tree: Z drevesom projekta
  1028. label_cross_project_hierarchy: S projektno hierarhijo
  1029. label_cross_project_system: Z vsemi projekti
  1030. button_hide: Hide
  1031. setting_non_working_week_days: Non-working days
  1032. label_in_the_next_days: in the next
  1033. label_in_the_past_days: in the past
  1034. label_attribute_of_user: User's %{name}
  1035. text_turning_multiple_off: If you disable multiple values, multiple values will be
  1036. removed in order to preserve only one value per item.
  1037. label_attribute_of_issue: Issue's %{name}
  1038. permission_add_documents: Add documents
  1039. permission_edit_documents: Edit documents
  1040. permission_delete_documents: Delete documents
  1041. label_gantt_progress_line: Progress line
  1042. setting_jsonp_enabled: Enable JSONP support
  1043. field_inherit_members: Inherit members
  1044. field_closed_on: Closed
  1045. field_generate_password: Generate password
  1046. setting_default_projects_tracker_ids: Default trackers for new projects
  1047. label_total_time: Skupaj
  1048. notice_account_not_activated_yet: You haven't activated your account yet. If you want
  1049. to receive a new activation email, please <a href="%{url}">click this link</a>.
  1050. notice_account_locked: Your account is locked.
  1051. label_hidden: Hidden
  1052. label_visibility_private: to me only
  1053. label_visibility_roles: to these roles only
  1054. label_visibility_public: to any users
  1055. field_must_change_passwd: Must change password at next logon
  1056. notice_new_password_must_be_different: The new password must be different from the
  1057. current password
  1058. setting_mail_handler_excluded_filenames: Exclude attachments by name
  1059. text_convert_available: ImageMagick convert available (optional)
  1060. label_link: Link
  1061. label_only: only
  1062. label_drop_down_list: drop-down list
  1063. label_checkboxes: checkboxes
  1064. label_link_values_to: Link values to URL
  1065. setting_force_default_language_for_anonymous: Force default language for anonymous
  1066. users
  1067. setting_force_default_language_for_loggedin: Force default language for logged-in
  1068. users
  1069. label_custom_field_select_type: Select the type of object to which the custom field
  1070. is to be attached
  1071. label_issue_assigned_to_updated: Assignee updated
  1072. label_check_for_updates: Check for updates
  1073. label_latest_compatible_version: Latest compatible version
  1074. label_unknown_plugin: Unknown plugin
  1075. label_radio_buttons: radio buttons
  1076. label_group_anonymous: Anonymous users
  1077. label_group_non_member: Non member users
  1078. label_add_projects: Add projects
  1079. field_default_status: Default status
  1080. text_subversion_repository_note: 'Examples: file:///, http://, https://, svn://, svn+[tunnelscheme]://'
  1081. field_users_visibility: Users visibility
  1082. label_users_visibility_all: All active users
  1083. label_users_visibility_members_of_visible_projects: Members of visible projects
  1084. label_edit_attachments: Edit attached files
  1085. setting_link_copied_issue: Link issues on copy
  1086. label_link_copied_issue: Link copied issue
  1087. label_ask: Ask
  1088. label_search_attachments_yes: Search attachment filenames and descriptions
  1089. label_search_attachments_no: Do not search attachments
  1090. label_search_attachments_only: Search attachments only
  1091. label_search_open_issues_only: Open issues only
  1092. field_address: E-naslov
  1093. setting_max_additional_emails: Maximum number of additional email addresses
  1094. label_email_address_plural: Emails
  1095. label_email_address_add: Add email address
  1096. label_enable_notifications: Enable notifications
  1097. label_disable_notifications: Disable notifications
  1098. setting_search_results_per_page: Search results per page
  1099. label_blank_value: blank
  1100. permission_copy_issues: Copy issues
  1101. error_password_expired: Your password has expired or the administrator requires you
  1102. to change it.
  1103. field_time_entries_visibility: Time logs visibility
  1104. setting_password_max_age: Require password change after
  1105. label_parent_task_attributes: Parent tasks attributes
  1106. label_parent_task_attributes_derived: Calculated from subtasks
  1107. label_parent_task_attributes_independent: Independent of subtasks
  1108. label_time_entries_visibility_all: All time entries
  1109. label_time_entries_visibility_own: Time entries created by the user
  1110. label_member_management: Member management
  1111. label_member_management_all_roles: All roles
  1112. label_member_management_selected_roles_only: Only these roles
  1113. label_password_required: Confirm your password to continue
  1114. label_total_spent_time: Skupni porabljeni čas
  1115. notice_import_finished: "%{count} items have been imported"
  1116. notice_import_finished_with_errors: "%{count} out of %{total} items could not be imported"
  1117. error_invalid_file_encoding: The file is not a valid %{encoding} encoded file
  1118. error_invalid_csv_file_or_settings: The file is not a CSV file or does not match the
  1119. settings below
  1120. error_can_not_read_import_file: An error occurred while reading the file to import
  1121. permission_import_issues: Import issues
  1122. label_import_issues: Import issues
  1123. label_select_file_to_import: Select the file to import
  1124. label_fields_separator: Field separator
  1125. label_fields_wrapper: Field wrapper
  1126. label_encoding: Encoding
  1127. label_comma_char: Comma
  1128. label_semi_colon_char: Semicolon
  1129. label_quote_char: Quote
  1130. label_double_quote_char: Double quote
  1131. label_fields_mapping: Fields mapping
  1132. label_file_content_preview: File content preview
  1133. label_create_missing_values: Create missing values
  1134. button_import: Import
  1135. field_total_estimated_hours: Total estimated time
  1136. label_api: API
  1137. label_total_plural: Totals
  1138. label_assigned_issues: Assigned issues
  1139. label_field_format_enumeration: Key/value list
  1140. label_f_hour_short: '%{value} h'
  1141. field_default_version: Default version
  1142. error_attachment_extension_not_allowed: Attachment extension %{extension} is not allowed
  1143. setting_attachment_extensions_allowed: Allowed extensions
  1144. setting_attachment_extensions_denied: Disallowed extensions
  1145. label_any_open_issues: any open issues
  1146. label_no_open_issues: no open issues
  1147. label_default_values_for_new_users: Default values for new users
  1148. error_ldap_bind_credentials: Invalid LDAP Account/Password
  1149. setting_sys_api_key: API ključ
  1150. setting_lost_password: Spremeni geslo
  1151. mail_subject_security_notification: Security notification
  1152. mail_body_security_notification_change: ! '%{field} was changed.'
  1153. mail_body_security_notification_change_to: ! '%{field} was changed to %{value}.'
  1154. mail_body_security_notification_add: ! '%{field} %{value} was added.'
  1155. mail_body_security_notification_remove: ! '%{field} %{value} was removed.'
  1156. mail_body_security_notification_notify_enabled: Email address %{value} now receives
  1157. notifications.
  1158. mail_body_security_notification_notify_disabled: Email address %{value} no longer
  1159. receives notifications.
  1160. mail_body_settings_updated: ! 'The following settings were changed:'
  1161. field_remote_ip: IP address
  1162. label_wiki_page_new: New wiki page
  1163. label_relations: Relations
  1164. button_filter: Filter
  1165. mail_body_password_updated: Your password has been changed.
  1166. label_no_preview: No preview available
  1167. error_no_tracker_allowed_for_new_issue_in_project: The project doesn't have any trackers
  1168. for which you can create an issue
  1169. label_tracker_all: All trackers
  1170. label_new_project_issue_tab_enabled: Display the "New issue" tab
  1171. setting_new_item_menu_tab: Project menu tab for creating new objects
  1172. label_new_object_tab_enabled: Display the "+" drop-down
  1173. error_no_projects_with_tracker_allowed_for_new_issue: There are no projects with trackers
  1174. for which you can create an issue
  1175. field_textarea_font: Font used for text areas
  1176. label_font_default: Default font
  1177. label_font_monospace: Monospaced font
  1178. label_font_proportional: Proportional font
  1179. setting_timespan_format: Time span format
  1180. label_table_of_contents: Table of contents
  1181. setting_commit_logs_formatting: Apply text formatting to commit messages
  1182. setting_mail_handler_enable_regex: Enable regular expressions
  1183. error_move_of_child_not_possible: 'Subtask %{child} could not be moved to the new
  1184. project: %{errors}'
  1185. error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted: Spent time cannot
  1186. be reassigned to an issue that is about to be deleted
  1187. setting_timelog_required_fields: Required fields for time logs
  1188. label_attribute_of_object: '%{object_name}''s %{name}'
  1189. label_user_mail_option_only_assigned: Only for things I watch or I am assigned to
  1190. label_user_mail_option_only_owner: Only for things I watch or I am the owner of
  1191. warning_fields_cleared_on_bulk_edit: Changes will result in the automatic deletion
  1192. of values from one or more fields on the selected objects
  1193. field_updated_by: Updated by
  1194. field_last_updated_by: Last updated by
  1195. field_full_width_layout: Full width layout
  1196. label_last_notes: Last notes
  1197. field_digest: Checksum
  1198. field_default_assigned_to: Default assignee
  1199. setting_show_custom_fields_on_registration: Show custom fields on registration
  1200. permission_view_news: View news
  1201. label_no_preview_alternative_html: No preview available. %{link} the file instead.
  1202. label_no_preview_download: Download
  1203. setting_close_duplicate_issues: Close duplicate issues automatically
  1204. error_exceeds_maximum_hours_per_day: Cannot log more than %{max_hours} hours on the
  1205. same day (%{logged_hours} hours have already been logged)
  1206. setting_time_entry_list_defaults: Timelog list defaults
  1207. setting_timelog_accept_0_hours: Accept time logs with 0 hours
  1208. setting_timelog_max_hours_per_day: Maximum hours that can be logged per day and user
  1209. label_x_revisions: "%{count} revisions"
  1210. error_can_not_delete_auth_source: This authentication mode is in use and cannot be
  1211. deleted.
  1212. button_actions: Actions
  1213. mail_body_lost_password_validity: Please be aware that you may change the password
  1214. only once using this link.
  1215. text_login_required_html: When not requiring authentication, public projects and their
  1216. contents are openly available on the network. You can <a href="%{anonymous_role_path}">edit
  1217. the applicable permissions</a>.
  1218. label_login_required_yes: 'Yes'
  1219. label_login_required_no: No, allow anonymous access to public projects
  1220. text_project_is_public_non_member: Public projects and their contents are available
  1221. to all logged-in users.
  1222. text_project_is_public_anonymous: Public projects and their contents are openly available
  1223. on the network.
  1224. label_version_and_files: Versions (%{count}) and Files
  1225. label_ldap: LDAP
  1226. label_ldaps_verify_none: LDAPS (without certificate check)
  1227. label_ldaps_verify_peer: LDAPS
  1228. label_ldaps_warning: It is recommended to use an encrypted LDAPS connection with certificate
  1229. check to prevent any manipulation during the authentication process.
  1230. label_nothing_to_preview: Nothing to preview
  1231. error_token_expired: This password recovery link has expired, please try again.
  1232. error_spent_on_future_date: Cannot log time on a future date
  1233. setting_timelog_accept_future_dates: Accept time logs on future dates
  1234. label_delete_link_to_subtask: Izbriši povezavo