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 67KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442
  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. must_contain_uppercase: "must contain uppercase letters (A-Z)"
  128. must_contain_lowercase: "must contain lowercase letters (a-z)"
  129. must_contain_digits: "must contain digits (0-9)"
  130. must_contain_special_chars: "must contain special characters (!, $, %, ...)"
  131. actionview_instancetag_blank_option: Prosimo izberite
  132. general_text_No: 'Ne'
  133. general_text_Yes: 'Da'
  134. general_text_no: 'ne'
  135. general_text_yes: 'da'
  136. general_lang_name: 'Slovene (Slovenščina)'
  137. general_csv_separator: ','
  138. general_csv_decimal_separator: '.'
  139. general_csv_encoding: UTF-8
  140. general_pdf_fontname: freesans
  141. general_pdf_monospaced_fontname: freemono
  142. general_first_day_of_week: '1'
  143. notice_account_updated: Račun je bil uspešno posodobljen.
  144. notice_account_invalid_credentials: Napačno uporabniško ime ali geslo
  145. notice_account_password_updated: Geslo je bilo uspešno posodobljeno.
  146. notice_account_wrong_password: Napačno geslo
  147. notice_account_register_done: Račun je bil uspešno ustvarjen. Za aktivacijo potrdite povezavo, ki vam je bila poslana v e-nabiralnik.
  148. notice_account_unknown_email: Neznan uporabnik.
  149. notice_can_t_change_password: Ta račun za overovljanje uporablja zunanji. Gesla ni mogoče spremeniti.
  150. notice_account_lost_email_sent: Poslano vam je bilo e-pismo z navodili za izbiro novega gesla.
  151. notice_account_activated: Vaš račun je bil aktiviran. Sedaj se lahko prijavite.
  152. notice_successful_create: Ustvarjanje uspelo.
  153. notice_successful_update: Posodobitev uspela.
  154. notice_successful_delete: Izbris uspel.
  155. notice_successful_connection: Povezava uspela.
  156. notice_file_not_found: Stran na katero se želite povezati ne obstaja ali pa je bila umaknjena.
  157. notice_locking_conflict: Drug uporabnik je posodobil podatke.
  158. notice_not_authorized: Nimate privilegijev za dostop do te strani.
  159. notice_email_sent: "E-poštno sporočilo je bilo poslano %{value}"
  160. notice_email_error: "Ob pošiljanju e-sporočila je prišlo do napake (%{value})"
  161. notice_feeds_access_key_reseted: Vaš Atom dostopni ključ je bil ponastavljen.
  162. notice_failed_to_save_issues: "Neuspelo shranjevanje %{count} zahtevka na %{total} izbranem: %{ids}."
  163. notice_account_pending: "Vaš račun je bil ustvarjen in čaka na potrditev s strani administratorja."
  164. notice_default_data_loaded: Privzete nastavitve so bile uspešno naložene.
  165. notice_unable_delete_version: Verzije ni bilo mogoče izbrisati.
  166. error_can_t_load_default_data: "Privzetih nastavitev ni bilo mogoče naložiti: %{value}"
  167. error_scm_not_found: "Vnos ali revizija v shrambi ni bila najdena ."
  168. error_scm_command_failed: "Med vzpostavljem povezave s shrambo je prišlo do napake: %{value}"
  169. error_scm_annotate: "Vnos ne obstaja ali pa ga ni mogoče komentirati."
  170. error_issue_not_found_in_project: 'Zahtevek ni bil najden ali pa ne pripada temu projektu'
  171. mail_subject_lost_password: "Vaše %{value} geslo"
  172. mail_body_lost_password: 'Za spremembo glesla kliknite na naslednjo povezavo:'
  173. mail_subject_register: "Aktivacija %{value} vašega računa"
  174. mail_body_register: 'Za aktivacijo vašega računa kliknite na naslednjo povezavo:'
  175. mail_body_account_information_external: "Za prijavo lahko uporabite vaš %{value} račun."
  176. mail_body_account_information: "Informacije o vašem računu. Za spremembo gesla sledite linku 'Spremeni geslo' na naslovu za prijavo, spodaj."
  177. mail_subject_account_activation_request: "%{value} zahtevek za aktivacijo računa"
  178. mail_body_account_activation_request: "Registriral se je nov uporabnik (%{value}). Račun čaka na vašo odobritev:"
  179. mail_subject_reminder: "%{count} zahtevek(zahtevki) zapadejo v naslednjih %{days} dneh"
  180. mail_body_reminder: "%{count} zahtevek(zahtevki), ki so vam dodeljeni bodo zapadli v naslednjih %{days} dneh:"
  181. field_name: Ime
  182. field_description: Opis
  183. field_summary: Povzetek
  184. field_is_required: Zahtevano
  185. field_firstname: Ime
  186. field_lastname: Priimek
  187. field_mail: E-naslov
  188. field_filename: Datoteka
  189. field_filesize: Velikost
  190. field_downloads: Prenosi
  191. field_author: Avtor
  192. field_created_on: Ustvarjen
  193. field_updated_on: Posodobljeno
  194. field_field_format: Format
  195. field_is_for_all: Za vse projekte
  196. field_possible_values: Možne vrednosti
  197. field_regexp: Regularni izraz
  198. field_min_length: Minimalna dolžina
  199. field_max_length: Maksimalna dolžina
  200. field_value: Vrednost
  201. field_category: Kategorija
  202. field_title: Naslov
  203. field_project: Projekt
  204. field_issue: Zahtevek
  205. field_status: Status
  206. field_notes: Zabeležka
  207. field_is_closed: Zahtevek zaprt
  208. field_is_default: Privzeta vrednost
  209. field_tracker: Vrsta zahtevka
  210. field_subject: Tema
  211. field_due_date: Do datuma
  212. field_assigned_to: Dodeljen
  213. field_priority: Prioriteta
  214. field_fixed_version: Ciljna verzija
  215. field_user: Uporabnik
  216. field_role: Vloga
  217. field_homepage: Domača stran
  218. field_is_public: Javno
  219. field_parent: Podprojekt projekta
  220. field_is_in_roadmap: Zahtevki prikazani na zemljevidu
  221. field_login: Prijava
  222. field_mail_notification: E-poštna oznanila
  223. field_admin: Administrator
  224. field_last_login_on: Zadnjič povezan(a)
  225. field_language: Jezik
  226. field_effective_date: Datum
  227. field_password: Geslo
  228. field_new_password: Novo geslo
  229. field_password_confirmation: Potrditev
  230. field_version: Verzija
  231. field_type: Tip
  232. field_host: Gostitelj
  233. field_port: Vrata
  234. field_account: Račun
  235. field_base_dn: Bazni DN
  236. field_attr_login: Oznaka za prijavo
  237. field_attr_firstname: Oznaka za ime
  238. field_attr_lastname: Oznaka za priimek
  239. field_attr_mail: Oznaka za e-naslov
  240. field_onthefly: Sprotna izdelava uporabnikov
  241. field_start_date: Začetek
  242. field_done_ratio: "% Narejeno"
  243. field_auth_source: Način overovljanja
  244. field_hide_mail: Skrij moj e-naslov
  245. field_comments: Komentar
  246. field_url: URL
  247. field_start_page: Začetna stran
  248. field_subproject: Podprojekt
  249. field_hours: Ur
  250. field_activity: Aktivnost
  251. field_spent_on: Datum
  252. field_identifier: Identifikator
  253. field_is_filter: Uporabljen kot filter
  254. field_issue_to: Povezan zahtevek
  255. field_delay: Zamik
  256. field_assignable: Zahtevki so lahko dodeljeni tej vlogi
  257. field_redirect_existing_links: Preusmeri obstoječe povezave
  258. field_estimated_hours: Ocenjen čas
  259. field_column_names: Stolpci
  260. field_time_zone: Časovni pas
  261. field_searchable: Zmožen iskanja
  262. field_default_value: Privzeta vrednost
  263. field_comments_sorting: Prikaži komentarje
  264. field_parent_title: Matična stran
  265. setting_app_title: Naslov aplikacije
  266. setting_welcome_text: Pozdravno besedilo
  267. setting_default_language: Privzeti jezik
  268. setting_login_required: Zahtevano overovljanje
  269. setting_self_registration: Samostojna registracija
  270. setting_attachment_max_size: Maksimalna velikost priponk
  271. setting_issues_export_limit: Skrajna meja za izvoz zahtevkov
  272. setting_mail_from: E-naslov za emisijo
  273. setting_plain_text_mail: navadno e-sporočilo (ne HTML)
  274. setting_host_name: Ime gostitelja in pot
  275. setting_text_formatting: Oblikovanje besedila
  276. setting_wiki_compression: Stiskanje Wiki zgodovine
  277. setting_feeds_limit: Meja obsega Atom virov
  278. setting_default_projects_public: Novi projekti so privzeto javni
  279. setting_autofetch_changesets: Samodejni izvleček zapisa sprememb
  280. setting_sys_api_enabled: Omogoči WS za upravljanje shrambe
  281. setting_commit_ref_keywords: Sklicne ključne besede
  282. setting_commit_fix_keywords: Urejanje ključne besede
  283. setting_autologin: Avtomatska prijava
  284. setting_date_format: Oblika datuma
  285. setting_time_format: Oblika časa
  286. setting_cross_project_issue_relations: Dovoli povezave zahtevkov med različnimi projekti
  287. setting_issue_list_default_columns: Privzeti stolpci prikazani na seznamu zahtevkov
  288. setting_emails_footer: Noga e-sporočil
  289. setting_protocol: Protokol
  290. setting_per_page_options: Število elementov na stran
  291. setting_user_format: Oblika prikaza uporabnikov
  292. setting_activity_days_default: Prikaz dni na aktivnost projekta
  293. setting_display_subprojects_issues: Privzeti prikaz zahtevkov podprojektov v glavnem projektu
  294. setting_enabled_scm: Omogočen SCM
  295. setting_mail_handler_api_enabled: Omogoči WS za prihajajočo e-pošto
  296. setting_mail_handler_api_key: API ključ
  297. setting_sequential_project_identifiers: Generiraj projektne identifikatorje sekvenčno
  298. setting_gravatar_enabled: Uporabljaj Gravatar ikone
  299. setting_diff_max_lines_displayed: Maksimalno število prikazanih vrstic različnosti
  300. permission_edit_project: Uredi projekt
  301. permission_select_project_modules: Izberi module projekta
  302. permission_manage_members: Uredi člane
  303. permission_manage_versions: Uredi verzije
  304. permission_manage_categories: Urejanje kategorij zahtevkov
  305. permission_add_issues: Dodaj zahtevke
  306. permission_edit_issues: Uredi zahtevke
  307. permission_manage_issue_relations: Uredi odnose med zahtevki
  308. permission_add_issue_notes: Dodaj zabeležke
  309. permission_edit_issue_notes: Uredi zabeležke
  310. permission_edit_own_issue_notes: Uredi lastne zabeležke
  311. permission_delete_issues: Izbriši zahtevke
  312. permission_manage_public_queries: Uredi javna povpraševanja
  313. permission_save_queries: Shrani povpraševanje
  314. permission_view_gantt: Poglej gantogram
  315. permission_view_calendar: Poglej koledar
  316. permission_view_issue_watchers: Oglej si listo spremeljevalcev
  317. permission_add_issue_watchers: Dodaj spremljevalce
  318. permission_log_time: Beleži porabljen čas
  319. permission_view_time_entries: Poglej porabljen čas
  320. permission_edit_time_entries: Uredi beležko časa
  321. permission_edit_own_time_entries: Uredi beležko lastnega časa
  322. permission_manage_news: Uredi novice
  323. permission_comment_news: Komentiraj novice
  324. permission_view_documents: Poglej dokumente
  325. permission_manage_files: Uredi datoteke
  326. permission_view_files: Poglej datoteke
  327. permission_manage_wiki: Uredi wiki
  328. permission_rename_wiki_pages: Preimenuj wiki strani
  329. permission_delete_wiki_pages: Izbriši wiki strani
  330. permission_view_wiki_pages: Poglej wiki
  331. permission_view_wiki_edits: Poglej wiki zgodovino
  332. permission_edit_wiki_pages: Uredi wiki strani
  333. permission_delete_wiki_pages_attachments: Izbriši priponke
  334. permission_protect_wiki_pages: Zaščiti wiki strani
  335. permission_manage_repository: Uredi shrambo
  336. permission_browse_repository: Prebrskaj shrambo
  337. permission_view_changesets: Poglej zapis sprememb
  338. permission_commit_access: Dostop za predajo
  339. permission_manage_boards: Uredi table
  340. permission_view_messages: Poglej sporočila
  341. permission_add_messages: Objavi sporočila
  342. permission_edit_messages: Uredi sporočila
  343. permission_edit_own_messages: Uredi lastna sporočila
  344. permission_delete_messages: Izbriši sporočila
  345. permission_delete_own_messages: Izbriši lastna sporočila
  346. project_module_issue_tracking: Sledenje zahtevkom
  347. project_module_time_tracking: Sledenje časa
  348. project_module_news: Novice
  349. project_module_documents: Dokumenti
  350. project_module_files: Datoteke
  351. project_module_wiki: Wiki
  352. project_module_repository: Shramba
  353. project_module_boards: Table
  354. label_user: Uporabnik
  355. label_user_plural: Uporabniki
  356. label_user_new: Nov uporabnik
  357. label_project: Projekt
  358. label_project_new: Nov projekt
  359. label_project_plural: Projekti
  360. label_x_projects:
  361. zero: ni projektov
  362. one: 1 projekt
  363. other: "%{count} projektov"
  364. label_project_all: Vsi projekti
  365. label_project_latest: Zadnji projekti
  366. label_issue: Zahtevek
  367. label_issue_new: Nov zahtevek
  368. label_issue_plural: Zahtevki
  369. label_issue_view_all: Poglej vse zahtevke
  370. label_issues_by: "Zahtevki od %{value}"
  371. label_issue_added: Zahtevek dodan
  372. label_issue_updated: Zahtevek posodobljen
  373. label_document: Dokument
  374. label_document_new: Nov dokument
  375. label_document_plural: Dokumenti
  376. label_document_added: Dokument dodan
  377. label_role: Vloga
  378. label_role_plural: Vloge
  379. label_role_new: Nova vloga
  380. label_role_and_permissions: Vloge in dovoljenja
  381. label_member: Član
  382. label_member_new: Nov član
  383. label_member_plural: Člani
  384. label_tracker: Vrsta zahtevka
  385. label_tracker_plural: Vrste zahtevkov
  386. label_tracker_new: Nova vrsta zahtevka
  387. label_workflow: Potek dela
  388. label_issue_status: Stanje zahtevka
  389. label_issue_status_plural: Stanje zahtevkov
  390. label_issue_status_new: Novo stanje
  391. label_issue_category: Kategorija zahtevka
  392. label_issue_category_plural: Kategorije zahtevkov
  393. label_issue_category_new: Nova kategorija
  394. label_custom_field: Polje po meri
  395. label_custom_field_plural: Polja po meri
  396. label_custom_field_new: Novo polje po meri
  397. label_enumerations: Seznami
  398. label_enumeration_new: Nova vrednost
  399. label_information: Informacija
  400. label_information_plural: Informacije
  401. label_register: Registracija
  402. label_password_lost: Spremeni geslo
  403. label_home: Domov
  404. label_my_page: Moja stran
  405. label_my_account: Moj račun
  406. label_my_projects: Moji projekti
  407. label_administration: Upravljanje
  408. label_login: Prijava
  409. label_logout: Odjava
  410. label_help: Pomoč
  411. label_reported_issues: Prijavljeni zahtevki
  412. label_assigned_to_me_issues: Zahtevki dodeljeni meni
  413. label_last_login: Zadnja povezava
  414. label_registered_on: Registriran
  415. label_activity: Aktivnosti
  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_yesterday: včeraj
  512. label_this_week: ta teden
  513. label_last_week: pretekli teden
  514. label_last_n_days: "zadnjih %{count} dni"
  515. label_this_month: ta mesec
  516. label_last_month: zadnji mesec
  517. label_this_year: to leto
  518. label_date_range: Razpon datumov
  519. label_less_than_ago: manj kot dni nazaj
  520. label_more_than_ago: več kot dni nazaj
  521. label_ago: dni nazaj
  522. label_contains: vsebuje
  523. label_not_contains: ne vsebuje
  524. label_day_plural: dni
  525. label_repository: Shramba
  526. label_repository_plural: Shrambe
  527. label_browse: Prebrskaj
  528. label_revision: Revizija
  529. label_revision_plural: Revizije
  530. label_associated_revisions: Povezane revizije
  531. label_added: dodano
  532. label_modified: spremenjeno
  533. label_copied: kopirano
  534. label_renamed: preimenovano
  535. label_deleted: izbrisano
  536. label_latest_revision: Zadnja revizija
  537. label_latest_revision_plural: Zadnje revizije
  538. label_view_revisions: Poglej revizije
  539. label_max_size: Največja velikost
  540. label_sort_highest: Premakni na vrh
  541. label_sort_higher: Premakni gor
  542. label_sort_lower: Premakni dol
  543. label_sort_lowest: Premakni na dno
  544. label_roadmap: Načrt
  545. label_roadmap_due_in: "Do %{value}"
  546. label_roadmap_overdue: "%{value} zakasnel"
  547. label_roadmap_no_issues: Ni zahtevkov za to verzijo
  548. label_search: Išči
  549. label_result_plural: Rezultati
  550. label_all_words: Vse besede
  551. label_wiki: Predstavitev
  552. label_wiki_edit: Uredi stran
  553. label_wiki_edit_plural: Uredi strani
  554. label_wiki_page: Predstavitvena stran
  555. label_wiki_page_plural: Predstavitvene strani
  556. label_index_by_title: Razvrsti po naslovu
  557. label_index_by_date: Razvrsti po datumu
  558. label_current_version: Trenutna verzija
  559. label_preview: Predogled
  560. label_feed_plural: Atom viri
  561. label_changes_details: Podrobnosti o vseh spremembah
  562. label_issue_tracking: Sledenje zahtevkom
  563. label_spent_time: Porabljen čas
  564. label_f_hour: "%{value} ura"
  565. label_f_hour_plural: "%{value} ur"
  566. label_time_tracking: Sledenje času
  567. label_change_plural: Spremembe
  568. label_statistics: Statistika
  569. label_commits_per_month: Predaj na mesec
  570. label_commits_per_author: Predaj na avtorja
  571. label_view_diff: Preglej razlike
  572. label_diff_inline: znotraj
  573. label_diff_side_by_side: vzporedno
  574. label_options: Možnosti
  575. label_copy_workflow_from: Kopiraj potek dela od
  576. label_permissions_report: Poročilo o dovoljenjih
  577. label_watched_issues: Spremljani zahtevki
  578. label_related_issues: Povezani zahtevki
  579. label_applied_status: Uveljavljeno stanje
  580. label_loading: Nalaganje...
  581. label_relation_new: Nova povezava
  582. label_relation_delete: Izbriši povezavo
  583. label_relates_to: povezan z
  584. label_duplicates: duplikati
  585. label_duplicated_by: dupliciral
  586. label_blocks: blok
  587. label_blocked_by: blokiral
  588. label_precedes: ima prednost pred
  589. label_follows: sledi
  590. label_stay_logged_in: Ostani prijavljen(a)
  591. label_disabled: onemogoči
  592. label_show_completed_versions: Prikaži zaključene verzije
  593. label_me: jaz
  594. label_board: Forum
  595. label_board_new: Nov forum
  596. label_board_plural: Forumi
  597. label_topic_plural: Teme
  598. label_message_plural: Sporočila
  599. label_message_last: Zadnje sporočilo
  600. label_message_new: Novo sporočilo
  601. label_message_posted: Sporočilo dodano
  602. label_reply_plural: Odgovori
  603. label_send_information: Pošlji informacijo o računu uporabniku
  604. label_year: Leto
  605. label_month: Mesec
  606. label_week: Teden
  607. label_date_from: Do
  608. label_date_to: Do
  609. label_language_based: Glede na uporabnikov jezik
  610. label_sort_by: "Razporedi po %{value}"
  611. label_send_test_email: Pošlji testno e-pismo
  612. label_feeds_access_key_created_on: "Atom dostopni ključ narejen %{value} nazaj"
  613. label_module_plural: Moduli
  614. label_added_time_by: "Dodal %{author} %{age} nazaj"
  615. label_updated_time_by: "Posodobil %{author} %{age} nazaj"
  616. label_updated_time: "Posodobljeno %{value} nazaj"
  617. label_jump_to_a_project: Skoči na projekt...
  618. label_file_plural: Datoteke
  619. label_changeset_plural: Zapisi sprememb
  620. label_default_columns: Privzeti stolpci
  621. label_no_change_option: (Ni spremembe)
  622. label_bulk_edit_selected_issues: Uredi izbrane zahtevke skupaj
  623. label_theme: Tema
  624. label_default: Privzeto
  625. label_search_titles_only: Preišči samo naslove
  626. label_user_mail_option_all: "Za vsak dogodek v vseh mojih projektih"
  627. label_user_mail_option_selected: "Za vsak dogodek samo na izbranih projektih..."
  628. label_user_mail_no_self_notified: "Ne želim biti opozorjen(a) na spremembe, ki jih naredim sam(a)"
  629. label_registration_activation_by_email: aktivacija računa po e-pošti
  630. label_registration_manual_activation: ročna aktivacija računa
  631. label_registration_automatic_activation: samodejna aktivacija računa
  632. label_display_per_page: "Na stran: %{value}"
  633. label_age: Starost
  634. label_change_properties: Sprememba lastnosti
  635. label_general: Splošno
  636. label_scm: SCM
  637. label_plugins: Vtičniki
  638. label_ldap_authentication: LDAP overovljanje
  639. label_downloads_abbr: D/L
  640. label_optional_description: Neobvezen opis
  641. label_add_another_file: Dodaj še eno datoteko
  642. label_preferences: Preference
  643. label_chronological_order: Kronološko
  644. label_reverse_chronological_order: Obrnjeno kronološko
  645. label_incoming_emails: Prihajajoča e-pošta
  646. label_generate_key: Ustvari ključ
  647. label_issue_watchers: Spremljevalci
  648. label_example: Vzorec
  649. button_login: Prijavi se
  650. button_submit: Pošlji
  651. button_save: Shrani
  652. button_check_all: Označi vse
  653. button_uncheck_all: Odznači vse
  654. button_delete: Izbriši
  655. button_create: Ustvari
  656. button_test: Testiraj
  657. button_edit: Uredi
  658. button_add: Dodaj
  659. button_change: Spremeni
  660. button_apply: Uporabi
  661. button_clear: Počisti
  662. button_lock: Zakleni
  663. button_unlock: Odkleni
  664. button_download: Prenesi
  665. button_list: Seznam
  666. button_view: Pogled
  667. button_move: Premakni
  668. button_back: Nazaj
  669. button_cancel: Prekliči
  670. button_activate: Aktiviraj
  671. button_sort: Razvrsti
  672. button_log_time: Beleži čas
  673. button_rollback: Povrni na to verzijo
  674. button_watch: Spremljaj
  675. button_unwatch: Ne spremljaj
  676. button_reply: Odgovori
  677. button_archive: Arhiviraj
  678. button_unarchive: Odarhiviraj
  679. button_reset: Ponastavi
  680. button_rename: Preimenuj
  681. button_change_password: Spremeni geslo
  682. button_copy: Kopiraj
  683. button_annotate: Zapiši pripombo
  684. button_update: Posodobi
  685. button_configure: Konfiguriraj
  686. button_quote: Citiraj
  687. status_active: aktivni
  688. status_registered: registriran
  689. status_locked: zaklenjen
  690. text_select_mail_notifications: Izberi dejanja za katera naj bodo poslana oznanila preko e-pošto.
  691. text_regexp_info: npr. ^[A-Z0-9]+$
  692. text_project_destroy_confirmation: Ali ste prepričani da želite izbrisati izbrani projekt in vse z njim povezane podatke?
  693. text_subprojects_destroy_warning: "Njegov(i) podprojekt(i): %{value} bodo prav tako izbrisani."
  694. text_workflow_edit: Izberite vlogo in zahtevek za urejanje poteka dela
  695. text_are_you_sure: Ali ste prepričani?
  696. text_tip_issue_begin_day: naloga z začetkom na ta dan
  697. text_tip_issue_end_day: naloga z zaključkom na ta dan
  698. text_tip_issue_begin_end_day: naloga ki se začne in konča ta dan
  699. text_caracters_maximum: "največ %{count} znakov."
  700. text_caracters_minimum: "Mora biti vsaj dolg vsaj %{count} znakov."
  701. text_length_between: "Dolžina med %{min} in %{max} znakov."
  702. text_tracker_no_workflow: Potek dela za to vrsto zahtevka ni določen
  703. text_unallowed_characters: Nedovoljeni znaki
  704. text_comma_separated: Dovoljenih je več vrednosti (ločenih z vejico).
  705. text_issues_ref_in_commit_messages: Zahtevki sklicev in popravkov v sporočilu predaje
  706. text_issue_added: "Zahtevek %{id} je sporočil(a) %{author}."
  707. text_issue_updated: "Zahtevek %{id} je posodobil(a) %{author}."
  708. text_wiki_destroy_confirmation: Ali ste prepričani da želite izbrisati to wiki stran in vso njeno vsebino?
  709. text_issue_category_destroy_question: "Nekateri zahtevki (%{count}) so dodeljeni tej kategoriji. Kaj želite storiti?"
  710. text_issue_category_destroy_assignments: Odstrani naloge v kategoriji
  711. text_issue_category_reassign_to: Ponovno dodeli zahtevke tej kategoriji
  712. 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)"
  713. 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."
  714. text_load_default_configuration: Naloži privzeto konfiguracijo
  715. text_status_changed_by_changeset: "Dodano v zapis sprememb %{value}."
  716. text_issues_destroy_confirmation: 'Ali ste prepričani, da želite izbrisati izbrani(e) zahtevek(ke)?'
  717. text_select_project_modules: 'Izberite module, ki jih želite omogočiti za ta projekt:'
  718. text_default_administrator_account_changed: Spremenjen privzeti administratorski račun
  719. text_file_repository_writable: Omogočeno pisanje v shrambo datotek
  720. text_minimagick_available: MiniMagick je na voljo(neobvezno)
  721. text_destroy_time_entries_question: "%{hours} ur je bilo opravljenih na zahtevku, ki ga želite izbrisati. Kaj želite storiti?"
  722. text_destroy_time_entries: Izbriši opravljene ure
  723. text_assign_time_entries_to_project: Predaj opravljene ure projektu
  724. text_reassign_time_entries: 'Prenesi opravljene ure na ta zahtevek:'
  725. text_user_wrote: "%{value} je napisal(a):"
  726. text_user_wrote_in: "%{value} je napisal(a) (%{link}):"
  727. text_enumeration_destroy_question: "%{count} objektov je določenih tej vrednosti."
  728. text_enumeration_category_reassign_to: 'Ponastavi jih na to vrednost:'
  729. 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"
  730. 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."
  731. text_diff_truncated: '... Ta sprememba je bila odsekana ker presega največjo velikost ki je lahko prikazana.'
  732. default_role_manager: Upravnik
  733. default_role_developer: Razvijalec
  734. default_role_reporter: Poročevalec
  735. default_tracker_bug: Hrošč
  736. default_tracker_feature: Funkcija
  737. default_tracker_support: Podpora
  738. default_issue_status_new: Nov
  739. default_issue_status_in_progress: V teku
  740. default_issue_status_resolved: Rešen
  741. default_issue_status_feedback: Povratna informacija
  742. default_issue_status_closed: Zaključen
  743. default_issue_status_rejected: Zavrnjen
  744. default_doc_category_user: Uporabniška dokumentacija
  745. default_doc_category_tech: Tehnična dokumentacija
  746. default_priority_low: Nizka
  747. default_priority_normal: Običajna
  748. default_priority_high: Visoka
  749. default_priority_urgent: Urgentna
  750. default_priority_immediate: Takojšnje ukrepanje
  751. default_activity_design: Oblikovanje
  752. default_activity_development: Razvoj
  753. enumeration_issue_priorities: Prioritete zahtevkov
  754. enumeration_doc_categories: Kategorije dokumentov
  755. enumeration_activities: Aktivnosti (sledenje časa)
  756. warning_attachments_not_saved: "%{count} datotek(e) ni bilo mogoče shraniti."
  757. field_editable: Uredljivo
  758. text_plugin_assets_writable: Zapisljiva mapa za vtičnike
  759. label_display: Prikaz
  760. button_create_and_continue: Ustvari in nadaljuj
  761. text_custom_field_possible_values_info: 'Ena vrstica za vsako vrednost'
  762. setting_repository_log_display_limit: Največje število prikazanih revizij v log datoteki
  763. setting_file_max_size_displayed: Največja velikost besedilnih datotek v vključenem prikazu
  764. field_watcher: Opazovalec
  765. field_content: Vsebina
  766. label_descending: Padajoče
  767. label_sort: Razvrsti
  768. label_ascending: Naraščajoče
  769. label_date_from_to: Od %{start} do %{end}
  770. label_greater_or_equal: ">="
  771. label_less_or_equal: <=
  772. text_wiki_page_destroy_question: Ta stran ima %{descendants} podstran(i) in naslednik(ov). Kaj želite storiti?
  773. text_wiki_page_reassign_children: Znova dodeli podstrani tej glavni strani
  774. text_wiki_page_nullify_children: Obdrži podstrani kot glavne strani
  775. text_wiki_page_destroy_children: Izbriši podstrani in vse njihove naslednike
  776. setting_password_min_length: Minimalna dolžina gesla
  777. field_group_by: Združi rezultate po
  778. mail_subject_wiki_content_updated: "'%{id}' wiki stran je bila posodobljena"
  779. label_wiki_content_added: Wiki stran dodana
  780. mail_subject_wiki_content_added: "'%{id}' wiki stran je bila dodana"
  781. mail_body_wiki_content_added: "%{author} je dodal '%{id}' wiki stran"
  782. label_wiki_content_updated: Wiki stran posodobljena
  783. mail_body_wiki_content_updated: "%{author} je posodobil '%{id}' wiki stran."
  784. permission_add_project: Ustvari projekt
  785. setting_new_project_user_role_id: Vloga, dodeljena neadministratorskemu uporabniku, ki je ustvaril projekt
  786. label_view_all_revisions: Poglej vse revizije
  787. label_tag: Oznaka
  788. label_branch: Veja
  789. error_no_tracker_in_project: Noben sledilnik ni povezan s tem projektom. Prosimo preverite nastavitve projekta.
  790. error_no_default_issue_status: Privzeti zahtevek ni definiran. Prosimo preverite svoje nastavitve (Pojdite na "Administracija -> Stanje zahtevkov").
  791. text_journal_changed: "%{label} se je spremenilo iz %{old} v %{new}"
  792. text_journal_set_to: "%{label} nastavljeno na %{value}"
  793. text_journal_deleted: "%{label} izbrisan (%{old})"
  794. label_group_plural: Skupine
  795. label_group: Skupina
  796. label_group_new: Nova skupina
  797. label_time_entry_plural: Porabljen čas
  798. text_journal_added: "%{label} %{value} dodan"
  799. field_active: Aktiven
  800. enumeration_system_activity: Sistemska aktivnost
  801. permission_delete_issue_watchers: Izbriši opazovalce
  802. version_status_closed: zaprt
  803. version_status_locked: zaklenjen
  804. version_status_open: odprt
  805. error_can_not_reopen_issue_on_closed_version: Zahtevek dodeljen zaprti verziji ne more biti ponovno odprt
  806. label_user_anonymous: Anonimni
  807. button_move_and_follow: Premakni in sledi
  808. setting_default_projects_modules: Privzeti moduli za nove projekte
  809. setting_gravatar_default: Privzeta Gravatar slika
  810. field_sharing: Deljenje
  811. label_version_sharing_hierarchy: S projektno hierarhijo
  812. label_version_sharing_system: Z vsemi projekti
  813. label_version_sharing_descendants: S podprojekti
  814. label_version_sharing_tree: Z drevesom projekta
  815. label_version_sharing_none: Ni deljeno
  816. error_can_not_archive_project: Ta projekt ne more biti arhiviran
  817. button_copy_and_follow: Kopiraj in sledi
  818. label_copy_source: Vir
  819. setting_issue_done_ratio: Izračunaj razmerje opravljenega zahtevka z
  820. setting_issue_done_ratio_issue_status: Uporabi stanje zahtevka
  821. error_issue_done_ratios_not_updated: Razmerje opravljenega zahtevka ni bilo posodobljeno.
  822. error_workflow_copy_target: Prosimo izberite ciljni(e) sledilnik(e) in vlogo(e)
  823. setting_issue_done_ratio_issue_field: Uporabi polje zahtevka
  824. label_copy_same_as_target: Enako kot cilj
  825. label_copy_target: Cilj
  826. notice_issue_done_ratios_updated: Razmerje opravljenega zahtevka posodobljeno.
  827. error_workflow_copy_source: Prosimo izberite vir zahtevka ali vlogo
  828. label_update_issue_done_ratios: Posodobi razmerje opravljenega zahtevka
  829. setting_start_of_week: Začni koledarje z
  830. permission_view_issues: Poglej zahtevke
  831. label_display_used_statuses_only: Prikaži samo stanja ki uporabljajo ta sledilnik
  832. label_revision_id: Revizija %{value}
  833. label_api_access_key: API dostopni ključ
  834. label_api_access_key_created_on: API dostopni ključ ustvarjen pred %{value}
  835. label_feeds_access_key: Atom dostopni ključ
  836. notice_api_access_key_reseted: Vaš API dostopni ključ je bil ponastavljen.
  837. setting_rest_api_enabled: Omogoči REST spletni servis
  838. label_missing_api_access_key: Manjkajoč API dostopni ključ
  839. label_missing_feeds_access_key: Manjkajoč Atom dostopni ključ
  840. button_show: Prikaži
  841. text_line_separated: Dovoljenih več vrednosti (ena vrstica za vsako vrednost).
  842. setting_mail_handler_body_delimiters: Odreži e-pošto po eni od teh vrstic
  843. permission_add_subprojects: Ustvari podprojekte
  844. label_subproject_new: Nov podprojekt
  845. text_own_membership_delete_confirmation: |-
  846. Odstranili boste nekatere ali vse od dovoljenj zaradi česar morda ne boste mogli več urejati tega projekta.
  847. Ali ste prepričani, da želite nadaljevati?
  848. label_close_versions: Zapri dokončane verzije
  849. label_board_sticky: Lepljivo
  850. label_board_locked: Zaklenjeno
  851. permission_export_wiki_pages: Izvozi wiki strani
  852. setting_cache_formatted_text: Predpomni oblikovano besedilo
  853. permission_manage_project_activities: Uredi aktivnosti projekta
  854. error_unable_delete_issue_status: Stanja zahtevka ni bilo možno spremeniti (%{value})
  855. label_profile: Profil
  856. permission_manage_subtasks: Uredi podnaloge
  857. field_parent_issue: Nadrejena naloga
  858. label_subtask_plural: Podnaloge
  859. label_project_copy_notifications: Med kopiranjem projekta pošlji e-poštno sporočilo
  860. error_can_not_delete_custom_field: Polja po meri ni mogoče izbrisati
  861. error_unable_to_connect: Povezava ni mogoča (%{value})
  862. error_can_not_remove_role: Ta vloga je v uporabi in je ni mogoče izbrisati.
  863. error_can_not_delete_tracker: Ta sledilnik vsebuje zahtevke in se ga ne more izbrisati.
  864. field_principal: Upravnik varnosti
  865. notice_failed_to_save_members: "Shranjevanje uporabnika(ov) ni uspelo: %{errors}."
  866. text_zoom_out: Približaj
  867. text_zoom_in: Oddalji
  868. notice_unable_delete_time_entry: Brisanje dnevnika porabljenaga časa ni mogoče.
  869. field_time_entries: Beleži porabljeni čas
  870. project_module_gantt: Gantogram
  871. project_module_calendar: Koledear
  872. button_edit_associated_wikipage: "Uredi povezano Wiki stran: %{page_title}"
  873. field_text: Besedilno polje
  874. setting_default_notification_option: Privzeta možnost obveščanja
  875. label_user_mail_option_only_my_events: Samo za stvari, ki jih opazujem ali sem v njih vpleten
  876. label_user_mail_option_none: Noben dogodek
  877. field_member_of_group: Pooblaščenčeva skupina
  878. field_assigned_to_role: Pooblaščenčeva vloga
  879. notice_not_authorized_archived_project: Projekt, do katerega poskušate dostopati, je bil arhiviran.
  880. label_principal_search: "Poišči uporabnika ali skupino:"
  881. label_user_search: "Poišči uporabnikia:"
  882. field_visible: Viden
  883. setting_emails_header: Glava e-pošte
  884. setting_commit_logtime_activity_id: Aktivnost zabeleženega časa
  885. text_time_logged_by_changeset: Uporabljeno v spremembi %{value}.
  886. setting_commit_logtime_enabled: Omogoči beleženje časa
  887. notice_gantt_chart_truncated: Graf je bil odrezan, ker je prekoračil največje dovoljeno število elementov, ki se jih lahko prikaže (%{max})
  888. setting_gantt_items_limit: Največje število elementov prikazano na gantogramu
  889. field_warn_on_leaving_unsaved: Opozori me, kadar zapuščam stran z neshranjenim besedilom
  890. text_warn_on_leaving_unsaved: Trenutna stran vsebuje neshranjeno besedilo ki bo izgubljeno, če zapustite to stran.
  891. label_my_queries: Moje poizvedbe po meri
  892. text_journal_changed_no_detail: "%{label} posodobljen"
  893. label_news_comment_added: Komentar dodan novici
  894. button_expand_all: Razširi vse
  895. button_collapse_all: Skrči vse
  896. label_additional_workflow_transitions_for_assignee: Dovoljeni dodatni prehodi kadar je uporabnik pooblaščenec
  897. label_additional_workflow_transitions_for_author: Dovoljeni dodatni prehodi kadar je uporabnik avtor
  898. label_bulk_edit_selected_time_entries: Skupinsko urejanje izbranih časovnih zapisov
  899. text_time_entries_destroy_confirmation: Ali ste prepričani, da želite izbristai izbran(e) časovn(i/e) zapis(e)?
  900. label_role_anonymous: Anonimni
  901. label_role_non_member: Nečlan
  902. label_issue_note_added: Dodan zaznamek
  903. label_issue_status_updated: Status posodobljen
  904. label_issue_priority_updated: Prioriteta posodobljena
  905. label_issues_visibility_own: Zahtevek ustvarjen s strani uporabnika ali dodeljen uporabniku
  906. field_issues_visibility: Vidljivost zahtevkov
  907. label_issues_visibility_all: Vsi zahtevki
  908. permission_set_own_issues_private: Nastavi lastne zahtevke kot javne ali zasebne
  909. field_is_private: Zaseben
  910. permission_set_issues_private: Nastavi zahtevke kot javne ali zasebne
  911. label_issues_visibility_public: Vsi nezasebni zahtevki
  912. text_issues_destroy_descendants_confirmation: To bo izbrisalo tudi %{count} podnalog(o).
  913. field_commit_logs_encoding: Kodiranje sporočil ob predaji
  914. field_scm_path_encoding: Pot do kodiranja
  915. text_scm_path_encoding_note: "Privzeto: UTF-8"
  916. field_path_to_repository: Pot do shrambe
  917. field_root_directory: Korenska mapa
  918. field_cvs_module: Modul
  919. field_cvsroot: CVSROOT
  920. text_mercurial_repository_note: Lokalna shramba (npr. /hgrepo, c:\hgrepo)
  921. text_scm_command: Ukaz
  922. text_scm_command_version: Verzija
  923. label_git_report_last_commit: Sporoči zadnje uveljavljanje datotek in map
  924. text_scm_config: Svoje SCM ukaze lahko nastavite v datoteki config/configuration.yml. Po urejanju prosimo ponovno zaženite aplikacijo.
  925. text_scm_command_not_available: SCM ukaz ni na voljo. Prosimo preverite nastavitve v upravljalskem podoknu.
  926. text_git_repository_note: Shramba je prazna in lokalna (npr. /gitrepo, c:\gitrepo)
  927. notice_issue_successful_create: Ustvarjen zahtevek %{id}.
  928. label_between: med
  929. setting_issue_group_assignment: Dovoli dodeljevanje zahtevka skupinam
  930. label_diff: diff
  931. description_query_sort_criteria_direction: Sort direction
  932. description_project_scope: Search scope
  933. description_filter: Filter
  934. description_user_mail_notification: Mail notification settings
  935. description_message_content: Message content
  936. description_available_columns: Available Columns
  937. description_issue_category_reassign: Choose issue category
  938. description_search: Searchfield
  939. description_notes: Notes
  940. description_choose_project: Projects
  941. description_query_sort_criteria_attribute: Sort attribute
  942. description_wiki_subpages_reassign: Choose new parent page
  943. description_selected_columns: Selected Columns
  944. label_parent_revision: Parent
  945. label_child_revision: Child
  946. error_scm_annotate_big_text_file: The entry cannot be annotated, as it exceeds the maximum text file size.
  947. setting_default_issue_start_date_to_creation_date: Use current date as start date for new issues
  948. button_edit_section: Edit this section
  949. setting_repositories_encodings: Attachments and repositories encodings
  950. description_all_columns: All Columns
  951. button_export: Export
  952. label_export_options: "%{export_format} export options"
  953. error_attachment_too_big: This file cannot be uploaded because it exceeds the maximum allowed file size (%{max_size})
  954. notice_failed_to_save_time_entries: "Failed to save %{count} time entrie(s) on %{total} selected: %{ids}."
  955. label_x_issues:
  956. zero: 0 zahtevek
  957. one: 1 zahtevek
  958. other: "%{count} zahtevki"
  959. label_repository_new: New repository
  960. field_repository_is_default: Main repository
  961. label_copy_attachments: Copy attachments
  962. label_item_position: "%{position}/%{count}"
  963. label_completed_versions: Completed versions
  964. text_project_identifier_info: Only lower case letters (a-z), numbers, dashes and underscores are allowed.<br />Once saved, the identifier cannot be changed.
  965. field_multiple: Multiple values
  966. setting_commit_cross_project_ref: Allow issues of all the other projects to be referenced and fixed
  967. text_issue_conflict_resolution_add_notes: Add my notes and discard my other changes
  968. text_issue_conflict_resolution_overwrite: Apply my changes anyway (previous notes will be kept but some changes may be overwritten)
  969. notice_issue_update_conflict: The issue has been updated by an other user while you were editing it.
  970. text_issue_conflict_resolution_cancel: Discard all my changes and redisplay %{link}
  971. permission_manage_related_issues: Manage related issues
  972. field_auth_source_ldap_filter: LDAP filter
  973. label_search_for_watchers: Search for watchers to add
  974. notice_account_deleted: Your account has been permanently deleted.
  975. setting_unsubscribe: Allow users to delete their own account
  976. button_delete_my_account: Delete my account
  977. text_account_destroy_confirmation: |-
  978. Are you sure you want to proceed?
  979. Your account will be permanently deleted, with no way to reactivate it.
  980. error_session_expired: Your session has expired. Please login again.
  981. text_session_expiration_settings: "Warning: changing these settings may expire the current sessions including yours."
  982. setting_session_lifetime: Session maximum lifetime
  983. setting_session_timeout: Session inactivity timeout
  984. label_session_expiration: Session expiration
  985. permission_close_project: Close / reopen the project
  986. button_close: Close
  987. button_reopen: Reopen
  988. project_status_active: active
  989. project_status_closed: closed
  990. project_status_archived: archived
  991. text_project_closed: This project is closed and read-only.
  992. notice_user_successful_create: User %{id} created.
  993. field_core_fields: Standard fields
  994. field_timeout: Timeout (in seconds)
  995. setting_thumbnails_enabled: Display attachment thumbnails
  996. setting_thumbnails_size: Thumbnails size (in pixels)
  997. label_status_transitions: Status transitions
  998. label_fields_permissions: Fields permissions
  999. label_readonly: Read-only
  1000. label_required: Required
  1001. text_repository_identifier_info: Only lower case letters (a-z), numbers, dashes and underscores are allowed.<br />Once saved, the identifier cannot be changed.
  1002. field_board_parent: Parent forum
  1003. label_attribute_of_project: Project's %{name}
  1004. label_attribute_of_author: Author's %{name}
  1005. label_attribute_of_assigned_to: Assignee's %{name}
  1006. label_attribute_of_fixed_version: Target version's %{name}
  1007. label_copy_subtasks: Copy subtasks
  1008. label_copied_to: copied to
  1009. label_copied_from: copied from
  1010. label_any_issues_in_project: any issues in project
  1011. label_any_issues_not_in_project: any issues not in project
  1012. field_private_notes: Private notes
  1013. permission_view_private_notes: View private notes
  1014. permission_set_notes_private: Set notes as private
  1015. label_no_issues_in_project: no issues in project
  1016. label_any: vsi
  1017. label_last_n_weeks: last %{count} weeks
  1018. setting_cross_project_subtasks: Allow cross-project subtasks
  1019. label_cross_project_descendants: S podprojekti
  1020. label_cross_project_tree: Z drevesom projekta
  1021. label_cross_project_hierarchy: S projektno hierarhijo
  1022. label_cross_project_system: Z vsemi projekti
  1023. button_hide: Hide
  1024. setting_non_working_week_days: Non-working days
  1025. label_in_the_next_days: in the next
  1026. label_in_the_past_days: in the past
  1027. label_attribute_of_user: User's %{name}
  1028. text_turning_multiple_off: If you disable multiple values, multiple values will be
  1029. removed in order to preserve only one value per item.
  1030. label_attribute_of_issue: Issue's %{name}
  1031. permission_add_documents: Add documents
  1032. permission_edit_documents: Edit documents
  1033. permission_delete_documents: Delete documents
  1034. label_gantt_progress_line: Progress line
  1035. setting_jsonp_enabled: Enable JSONP support
  1036. field_inherit_members: Inherit members
  1037. field_closed_on: Closed
  1038. field_generate_password: Generate password
  1039. setting_default_projects_tracker_ids: Default trackers for new projects
  1040. label_total_time: Skupaj
  1041. notice_account_not_activated_yet: You haven't activated your account yet. If you want
  1042. to receive a new activation email, please <a href="%{url}">click this link</a>.
  1043. notice_account_locked: Your account is locked.
  1044. label_hidden: Hidden
  1045. label_visibility_private: to me only
  1046. label_visibility_roles: to these roles only
  1047. label_visibility_public: to any users
  1048. field_must_change_passwd: Must change password at next logon
  1049. notice_new_password_must_be_different: The new password must be different from the
  1050. current password
  1051. setting_mail_handler_excluded_filenames: Exclude attachments by name
  1052. text_convert_available: ImageMagick convert available (optional)
  1053. label_link: Link
  1054. label_only: only
  1055. label_drop_down_list: drop-down list
  1056. label_checkboxes: checkboxes
  1057. label_link_values_to: Link values to URL
  1058. setting_force_default_language_for_anonymous: Force default language for anonymous
  1059. users
  1060. setting_force_default_language_for_loggedin: Force default language for logged-in
  1061. users
  1062. label_custom_field_select_type: Select the type of object to which the custom field
  1063. is to be attached
  1064. label_issue_assigned_to_updated: Assignee updated
  1065. label_check_for_updates: Check for updates
  1066. label_latest_compatible_version: Latest compatible version
  1067. label_unknown_plugin: Unknown plugin
  1068. label_radio_buttons: radio buttons
  1069. label_group_anonymous: Anonymous users
  1070. label_group_non_member: Non member users
  1071. label_add_projects: Add projects
  1072. field_default_status: Default status
  1073. text_subversion_repository_note: 'Examples: file:///, http://, https://, svn://, svn+[tunnelscheme]://'
  1074. field_users_visibility: Users visibility
  1075. label_users_visibility_all: All active users
  1076. label_users_visibility_members_of_visible_projects: Members of visible projects
  1077. label_edit_attachments: Edit attached files
  1078. setting_link_copied_issue: Link issues on copy
  1079. label_link_copied_issue: Link copied issue
  1080. label_ask: Ask
  1081. label_search_attachments_yes: Search attachment filenames and descriptions
  1082. label_search_attachments_no: Do not search attachments
  1083. label_search_attachments_only: Search attachments only
  1084. label_search_open_issues_only: Open issues only
  1085. field_address: E-naslov
  1086. setting_max_additional_emails: Maximum number of additional email addresses
  1087. label_email_address_plural: Emails
  1088. label_email_address_add: Add email address
  1089. label_enable_notifications: Enable notifications
  1090. label_disable_notifications: Disable notifications
  1091. setting_search_results_per_page: Search results per page
  1092. label_blank_value: blank
  1093. permission_copy_issues: Copy issues
  1094. error_password_expired: Your password has expired or the administrator requires you
  1095. to change it.
  1096. field_time_entries_visibility: Time logs visibility
  1097. setting_password_max_age: Require password change after
  1098. label_parent_task_attributes: Parent tasks attributes
  1099. label_parent_task_attributes_derived: Calculated from subtasks
  1100. label_parent_task_attributes_independent: Independent of subtasks
  1101. label_time_entries_visibility_all: All time entries
  1102. label_time_entries_visibility_own: Time entries created by the user
  1103. label_member_management: Member management
  1104. label_member_management_all_roles: All roles
  1105. label_member_management_selected_roles_only: Only these roles
  1106. label_password_required: Confirm your password to continue
  1107. label_total_spent_time: Skupni porabljeni čas
  1108. notice_import_finished: "%{count} items have been imported"
  1109. notice_import_finished_with_errors: "%{count} out of %{total} items could not be imported"
  1110. error_invalid_file_encoding: The file is not a valid %{encoding} encoded file
  1111. error_invalid_csv_file_or_settings: The file is not a CSV file or does not match the
  1112. settings below (%{value})
  1113. error_can_not_read_import_file: An error occurred while reading the file to import
  1114. permission_import_issues: Import issues
  1115. label_import_issues: Import issues
  1116. label_select_file_to_import: Select the file to import
  1117. label_fields_separator: Field separator
  1118. label_fields_wrapper: Field wrapper
  1119. label_encoding: Encoding
  1120. label_comma_char: Comma
  1121. label_semi_colon_char: Semicolon
  1122. label_quote_char: Quote
  1123. label_double_quote_char: Double quote
  1124. label_fields_mapping: Fields mapping
  1125. label_file_content_preview: File content preview
  1126. label_create_missing_values: Create missing values
  1127. button_import: Import
  1128. field_total_estimated_hours: Total estimated time
  1129. label_api: API
  1130. label_total_plural: Totals
  1131. label_assigned_issues: Assigned issues
  1132. label_field_format_enumeration: Key/value list
  1133. label_f_hour_short: '%{value} h'
  1134. field_default_version: Default version
  1135. error_attachment_extension_not_allowed: Attachment extension %{extension} is not allowed
  1136. setting_attachment_extensions_allowed: Allowed extensions
  1137. setting_attachment_extensions_denied: Disallowed extensions
  1138. label_any_open_issues: any open issues
  1139. label_no_open_issues: no open issues
  1140. label_default_values_for_new_users: Default values for new users
  1141. error_ldap_bind_credentials: Invalid LDAP Account/Password
  1142. setting_sys_api_key: API ključ
  1143. setting_lost_password: Spremeni geslo
  1144. mail_subject_security_notification: Security notification
  1145. mail_body_security_notification_change: ! '%{field} was changed.'
  1146. mail_body_security_notification_change_to: ! '%{field} was changed to %{value}.'
  1147. mail_body_security_notification_add: ! '%{field} %{value} was added.'
  1148. mail_body_security_notification_remove: ! '%{field} %{value} was removed.'
  1149. mail_body_security_notification_notify_enabled: Email address %{value} now receives
  1150. notifications.
  1151. mail_body_security_notification_notify_disabled: Email address %{value} no longer
  1152. receives notifications.
  1153. mail_body_settings_updated: ! 'The following settings were changed:'
  1154. field_remote_ip: IP address
  1155. label_wiki_page_new: New wiki page
  1156. label_relations: Relations
  1157. button_filter: Filter
  1158. mail_body_password_updated: Your password has been changed.
  1159. label_no_preview: No preview available
  1160. error_no_tracker_allowed_for_new_issue_in_project: The project doesn't have any trackers
  1161. for which you can create an issue
  1162. label_tracker_all: All trackers
  1163. label_new_project_issue_tab_enabled: Display the "New issue" tab
  1164. setting_new_item_menu_tab: Project menu tab for creating new objects
  1165. label_new_object_tab_enabled: Display the "+" drop-down
  1166. error_no_projects_with_tracker_allowed_for_new_issue: There are no projects with trackers
  1167. for which you can create an issue
  1168. field_textarea_font: Font used for text areas
  1169. label_font_default: Default font
  1170. label_font_monospace: Monospaced font
  1171. label_font_proportional: Proportional font
  1172. setting_timespan_format: Time span format
  1173. label_table_of_contents: Table of contents
  1174. setting_commit_logs_formatting: Apply text formatting to commit messages
  1175. setting_mail_handler_enable_regex: Enable regular expressions
  1176. error_move_of_child_not_possible: 'Subtask %{child} could not be moved to the new
  1177. project: %{errors}'
  1178. error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted: Spent time cannot
  1179. be reassigned to an issue that is about to be deleted
  1180. setting_timelog_required_fields: Required fields for time logs
  1181. label_attribute_of_object: '%{object_name}''s %{name}'
  1182. label_user_mail_option_only_assigned: Only for things I watch or I am assigned to
  1183. label_user_mail_option_only_owner: Only for things I watch or I am the owner of
  1184. warning_fields_cleared_on_bulk_edit: Changes will result in the automatic deletion
  1185. of values from one or more fields on the selected objects
  1186. field_updated_by: Updated by
  1187. field_last_updated_by: Last updated by
  1188. field_full_width_layout: Full width layout
  1189. label_last_notes: Last notes
  1190. field_digest: Checksum
  1191. field_default_assigned_to: Default assignee
  1192. setting_show_custom_fields_on_registration: Show custom fields on registration
  1193. permission_view_news: View news
  1194. label_no_preview_alternative_html: No preview available. %{link} the file instead.
  1195. label_no_preview_download: Download
  1196. setting_close_duplicate_issues: Close duplicate issues automatically
  1197. error_exceeds_maximum_hours_per_day: Cannot log more than %{max_hours} hours on the
  1198. same day (%{logged_hours} hours have already been logged)
  1199. setting_time_entry_list_defaults: Timelog list defaults
  1200. setting_timelog_accept_0_hours: Accept time logs with 0 hours
  1201. setting_timelog_max_hours_per_day: Maximum hours that can be logged per day and user
  1202. label_x_revisions: "%{count} revisions"
  1203. error_can_not_delete_auth_source: This authentication mode is in use and cannot be
  1204. deleted.
  1205. button_actions: Actions
  1206. mail_body_lost_password_validity: Please be aware that you may change the password
  1207. only once using this link.
  1208. text_login_required_html: When not requiring authentication, public projects and their
  1209. contents are openly available on the network. You can <a href="%{anonymous_role_path}">edit
  1210. the applicable permissions</a>.
  1211. label_login_required_yes: 'Yes'
  1212. label_login_required_no: No, allow anonymous access to public projects
  1213. text_project_is_public_non_member: Public projects and their contents are available
  1214. to all logged-in users.
  1215. text_project_is_public_anonymous: Public projects and their contents are openly available
  1216. on the network.
  1217. label_version_and_files: Versions (%{count}) and Files
  1218. label_ldap: LDAP
  1219. label_ldaps_verify_none: LDAPS (without certificate check)
  1220. label_ldaps_verify_peer: LDAPS
  1221. label_ldaps_warning: It is recommended to use an encrypted LDAPS connection with certificate
  1222. check to prevent any manipulation during the authentication process.
  1223. label_nothing_to_preview: Nothing to preview
  1224. error_token_expired: This password recovery link has expired, please try again.
  1225. error_spent_on_future_date: Cannot log time on a future date
  1226. setting_timelog_accept_future_dates: Accept time logs on future dates
  1227. label_delete_link_to_subtask: Izbriši povezavo
  1228. error_not_allowed_to_log_time_for_other_users: You are not allowed to log time
  1229. for other users
  1230. permission_log_time_for_other_users: Log spent time for other users
  1231. label_tomorrow: tomorrow
  1232. label_next_week: next week
  1233. label_next_month: next month
  1234. text_role_no_workflow: No workflow defined for this role
  1235. text_status_no_workflow: No tracker uses this status in the workflows
  1236. setting_mail_handler_preferred_body_part: Preferred part of multipart (HTML) emails
  1237. setting_show_status_changes_in_mail_subject: Show status changes in issue mail notifications
  1238. subject
  1239. label_inherited_from_parent_project: Inherited from parent project
  1240. label_inherited_from_group: Inherited from group %{name}
  1241. label_trackers_description: Trackers description
  1242. label_open_trackers_description: View all trackers description
  1243. label_preferred_body_part_text: Text
  1244. label_preferred_body_part_html: HTML (experimental)
  1245. field_parent_issue_subject: Parent task subject
  1246. permission_edit_own_issues: Edit own issues
  1247. text_select_apply_tracker: Select tracker
  1248. label_updated_issues: Updated issues
  1249. text_avatar_server_config_html: The current avatar server is <a href="%{url}">%{url}</a>.
  1250. You can configure it in config/configuration.yml.
  1251. setting_gantt_months_limit: Maximum number of months displayed on the gantt chart
  1252. permission_import_time_entries: Import time entries
  1253. label_import_notifications: Send email notifications during the import
  1254. text_gs_available: ImageMagick PDF support available (optional)
  1255. field_recently_used_projects: Number of recently used projects in jump box
  1256. label_optgroup_bookmarks: Bookmarks
  1257. label_optgroup_others: Other projects
  1258. label_optgroup_recents: Recently used
  1259. button_project_bookmark: Add bookmark
  1260. button_project_bookmark_delete: Remove bookmark
  1261. field_history_default_tab: Issue's history default tab
  1262. label_issue_history_properties: Property changes
  1263. label_issue_history_notes: Notes
  1264. label_last_tab_visited: Last visited tab
  1265. field_unique_id: Unique ID
  1266. text_no_subject: no subject
  1267. setting_password_required_char_classes: Required character classes for passwords
  1268. label_password_char_class_uppercase: uppercase letters
  1269. label_password_char_class_lowercase: lowercase letters
  1270. label_password_char_class_digits: digits
  1271. label_password_char_class_special_chars: special characters
  1272. text_characters_must_contain: Must contain %{character_classes}.
  1273. label_starts_with: starts with
  1274. label_ends_with: ends with
  1275. label_issue_fixed_version_updated: Target version updated
  1276. setting_project_list_defaults: Projects list defaults
  1277. label_display_type: Display results as
  1278. label_display_type_list: List
  1279. label_display_type_board: Board
  1280. label_my_bookmarks: My bookmarks
  1281. label_import_time_entries: Import time entries
  1282. field_toolbar_language_options: Code highlighting toolbar languages
  1283. label_user_mail_notify_about_high_priority_issues_html: Also notify me about issues
  1284. with a priority of <em>%{prio}</em> or higher
  1285. label_assign_to_me: Assign to me
  1286. notice_issue_not_closable_by_open_tasks: This issue cannot be closed because it has
  1287. at least one open subtask.
  1288. notice_issue_not_closable_by_blocking_issue: This issue cannot be closed because it
  1289. is blocked by at least one open issue.
  1290. notice_issue_not_reopenable_by_closed_parent_issue: This issue cannot be reopened
  1291. because its parent issue is closed.
  1292. error_bulk_download_size_too_big: These attachments cannot be bulk downloaded because
  1293. the total file size exceeds the maximum allowed size (%{max_size})
  1294. setting_bulk_download_max_size: Maximum total size for bulk download
  1295. label_download_all_attachments: Download all files
  1296. error_attachments_too_many: This file cannot be uploaded because it exceeds the maximum
  1297. number of files that can be attached simultaneously (%{max_number_of_files})
  1298. setting_email_domains_allowed: Allowed email domains
  1299. setting_email_domains_denied: Disallowed email domains
  1300. field_passwd_changed_on: Password last changed
  1301. label_relations_mapping: Relations mapping
  1302. label_import_users: Import users
  1303. label_days_to_html: "%{days} days up to %{date}"
  1304. setting_twofa: Two-factor authentication
  1305. label_optional: optional
  1306. label_required_lower: required
  1307. button_disable: Disable
  1308. twofa__totp__name: Authenticator app
  1309. twofa__totp__text_pairing_info_html: Scan this QR code or enter the plain text key
  1310. into a TOTP app (e.g. <a href="https://support.google.com/accounts/answer/1066447">Google
  1311. Authenticator</a>, <a href="https://authy.com/download/">Authy</a>, <a href="https://guide.duo.com/third-party-accounts">Duo
  1312. Mobile</a>) and enter the code in the field below to activate two-factor authentication.
  1313. twofa__totp__label_plain_text_key: Plain text key
  1314. twofa__totp__label_activate: Enable authenticator app
  1315. twofa_currently_active: 'Currently active: %{twofa_scheme_name}'
  1316. twofa_not_active: Not activated
  1317. twofa_label_code: Code
  1318. twofa_hint_disabled_html: Setting <strong>%{label}</strong> will deactivate and unpair
  1319. two-factor authentication devices for all users.
  1320. twofa_hint_required_html: Setting <strong>%{label}</strong> will require all users
  1321. to set up two-factor authentication at their next login.
  1322. twofa_label_setup: Enable two-factor authentication
  1323. twofa_label_deactivation_confirmation: Disable two-factor authentication
  1324. twofa_notice_select: 'Please select the two-factor scheme you would like to use:'
  1325. twofa_warning_require: The administrator requires you to enable two-factor authentication.
  1326. twofa_activated: Two-factor authentication successfully enabled. It is recommended
  1327. to <a data-method="post" href="%{bc_path}">generate backup codes</a> for your account.
  1328. twofa_deactivated: Two-factor authentication disabled.
  1329. twofa_mail_body_security_notification_paired: Two-factor authentication successfully
  1330. enabled using %{field}.
  1331. twofa_mail_body_security_notification_unpaired: Two-factor authentication disabled
  1332. for your account.
  1333. twofa_mail_body_backup_codes_generated: New two-factor authentication backup codes
  1334. generated.
  1335. twofa_mail_body_backup_code_used: A two-factor authentication backup code has been
  1336. used.
  1337. twofa_invalid_code: Code is invalid or outdated.
  1338. twofa_label_enter_otp: Please enter your two-factor authentication code.
  1339. twofa_too_many_tries: Too many tries.
  1340. twofa_resend_code: Resend code
  1341. twofa_code_sent: An authentication code has been sent to you.
  1342. twofa_generate_backup_codes: Generate backup codes
  1343. twofa_text_generate_backup_codes_confirmation: This will invalidate all existing backup
  1344. codes and generate new ones. Would you like to continue?
  1345. twofa_notice_backup_codes_generated: Your backup codes have been generated.
  1346. twofa_warning_backup_codes_generated_invalidated: New backup codes have been generated.
  1347. Your existing codes from %{time} are now invalid.
  1348. twofa_label_backup_codes: Two-factor authentication backup codes
  1349. twofa_text_backup_codes_hint: Use these codes instead of a one-time password should
  1350. you not have access to your second factor. Each code can only be used once. It is
  1351. recommended to print and store them in a safe place.
  1352. twofa_text_backup_codes_created_at: Backup codes generated %{datetime}.
  1353. twofa_backup_codes_already_shown: Backup codes cannot be shown again, please <a data-method="post"
  1354. href="%{bc_path}">generate new backup codes</a> if required.
  1355. error_can_not_execute_macro_html: Error executing the <strong>%{name}</strong> macro
  1356. (%{error})
  1357. error_macro_does_not_accept_block: This macro does not accept a block of text
  1358. error_childpages_macro_no_argument: With no argument, this macro can be called from
  1359. wiki pages only
  1360. error_circular_inclusion: Circular inclusion detected
  1361. error_page_not_found: Page not found
  1362. error_filename_required: Filename required
  1363. error_invalid_size_parameter: Invalid size parameter
  1364. error_attachment_not_found: Attachment %{name} not found
  1365. permission_delete_project: Delete the project
  1366. field_twofa_scheme: Two-factor authentication scheme
  1367. text_user_destroy_confirmation: Are you sure you want to delete this user and remove
  1368. all references to them? This cannot be undone. Often, locking a user instead of
  1369. deleting them is the better solution. To confirm, please enter their login (%{login})
  1370. below.
  1371. text_project_destroy_enter_identifier: To confirm, please enter the project's identifier
  1372. (%{identifier}) below.
  1373. button_add_subtask: Add subtask
  1374. notice_invalid_watcher: 'Invalid watcher: User will not receive any notifications
  1375. because it does not have access to view this object.'
  1376. button_fetch_changesets: Fetch commits
  1377. permission_view_message_watchers: View message watchers list
  1378. permission_add_message_watchers: Add message watchers
  1379. permission_delete_message_watchers: Delete message watchers
  1380. label_message_watchers: Watchers
  1381. button_copy_link: Copy link
  1382. error_invalid_authenticity_token: Invalid form authenticity token.
  1383. error_query_statement_invalid: An error occurred while executing the query and has
  1384. been logged. Please report this error to your Redmine administrator.
  1385. permission_view_wiki_page_watchers: View wiki page watchers list
  1386. permission_add_wiki_page_watchers: Add wiki page watchers
  1387. permission_delete_wiki_page_watchers: Delete wiki page watchers
  1388. label_wiki_page_watchers: Watchers
  1389. label_attachment_description: File description
  1390. error_no_data_in_file: The file does not contain any data
  1391. field_twofa_required: Require two factor authentication
  1392. twofa_hint_optional_html: Setting <strong>%{label}</strong> will let users set up
  1393. two-factor authentication at will, unless it is required by one of their groups.
  1394. twofa_text_group_required: This setting is only effective when the global two factor
  1395. authentication setting is set to 'optional'. Currently, two factor authentication
  1396. is required for all users.
  1397. twofa_text_group_disabled: This setting is only effective when the global two factor
  1398. authentication setting is set to 'optional'. Currently, two factor authentication
  1399. is disabled.
  1400. field_default_issue_query: Default issue query
  1401. label_default_queries:
  1402. for_all_projects: For all projects
  1403. for_current_project: For current project
  1404. for_all_users: For all users
  1405. text_allowed_queries_to_select: Public (to any users) queries only selectable
  1406. text_all_migrations_have_been_run: All database migrations have been run
  1407. button_save_object: Save %{object_name}
  1408. button_edit_object: Edit %{object_name}
  1409. button_delete_object: Delete %{object_name}
  1410. text_setting_config_change: You can configure the behaviour in config/configuration.yml.
  1411. Please restart the application after editing it.
  1412. label_bulk_edit: Bulk edit
  1413. button_create_and_follow: Create and follow
  1414. label_subtask: Subtask
  1415. label_default_query: Default query
  1416. field_default_project_query: Default project query