tribe-common-sl_SI.po 60 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331
  1. # Translation of Tribe Common in Slovenian
  2. # This file is distributed under the same license as the Tribe Common package.
  3. msgid ""
  4. msgstr ""
  5. "PO-Revision-Date: 2015-12-02 19:08:14+0000\n"
  6. "MIME-Version: 1.0\n"
  7. "Content-Type: text/plain; charset=UTF-8\n"
  8. "Content-Transfer-Encoding: 8bit\n"
  9. "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
  10. "X-Generator: GlotPress/2.3.1\n"
  11. "Language: sl_SI\n"
  12. "Project-Id-Version: Tribe Common\n"
  13. #: vendor/a5hleyrich/wp-background-processing/classes/wp-background-process.php:425
  14. msgid "Every %d Minutes"
  15. msgstr ""
  16. #: src/admin-views/tribe-options-help.php:33
  17. msgid "Search our support help desk"
  18. msgstr ""
  19. #: src/Tribe/Plugins_API.php:71
  20. msgid "Event Tickets Plus allows you to sell tickets to your events using WooCommerce, Easy Digital Downloads, or our built in Tribe Commerce tool. Add tickets to your posts and pages, or add %1$sThe Events Calendar%2$s and sell tickets from your event listings. Create custom registration forms, manage attendees, use custom capacity options, and more. Tickets have QR codes for easy check in at the door."
  21. msgstr ""
  22. #: src/Tribe/Validate.php:184
  23. msgid "%s must not be empty"
  24. msgstr ""
  25. #: src/Tribe/Validate.php:545
  26. msgid "%s must be an email address."
  27. msgstr ""
  28. #: src/Tribe/Languages/Locations.php:252
  29. msgid "Sint Maarten"
  30. msgstr ""
  31. #: src/Tribe/Languages/Locations.php:245
  32. msgid "São Tomé and Príncipe"
  33. msgstr ""
  34. #: src/Tribe/Languages/Locations.php:238
  35. msgid "Saint Helena"
  36. msgstr ""
  37. #: src/Tribe/Languages/Locations.php:237
  38. msgid "Saint Barthélemy"
  39. msgstr ""
  40. #: src/Tribe/Languages/Locations.php:113
  41. msgid "Curaçao"
  42. msgstr ""
  43. #: src/Tribe/Languages/Locations.php:103
  44. msgid "Collectivity of Saint Martin"
  45. msgstr ""
  46. #: src/Tribe/Languages/Locations.php:57
  47. msgid "Åland Islands"
  48. msgstr ""
  49. #: src/admin-views/tribe-options-help.php:20
  50. msgid "Check out our %s for developers."
  51. msgstr ""
  52. #: src/admin-views/tribe-options-help.php:18
  53. msgid "Want to dive deeper?"
  54. msgstr ""
  55. #: src/admin-views/tribe-options-display.php:28
  56. msgid "The following three fields accept the date format options available to the PHP %1$s function. <a href=\"%2$s\" target=\"_blank\">Learn how to make your own date format here</a>."
  57. msgstr ""
  58. #: src/Tribe/Documentation/Swagger/Term_Definition_Provider.php:57
  59. msgid "A list of links to the term own, archive and parent REST URL"
  60. msgstr ""
  61. #: src/Tribe/Main.php:250
  62. msgid "Clear Selection."
  63. msgstr ""
  64. #: src/Tribe/Main.php:249
  65. msgid "Select all pages"
  66. msgstr ""
  67. #: src/Tribe/Main.php:248
  68. msgid "All items on this page were selected. "
  69. msgstr ""
  70. #: src/Tribe/Plugins_API.php:94
  71. msgid "Accept user-submitted events on your site! With Community Events, you can accept public submissions or require account sign-on. Settings give you the options to save as a draft or publish automatically, enable categories and tags, and choose whether users can edit/manage their own events or simply submit. Best of all - setup is easy! Just activate, configure the options, and off you go."
  72. msgstr ""
  73. #: src/Tribe/Plugins_API.php:37
  74. msgid "Import events from across the web! Event Aggregator makes it easy to run scheduled or manual imports from Facebook, Meetup, Google Calendar, and iCalendar, along with uploads from CSV and ICS files. You can also import directly from other sites running The Events Calendar thanks to our built-in REST API support."
  75. msgstr ""
  76. #: src/Tribe/Ajax/Dropdown.php:243
  77. msgid "The \"%s\" source is invalid and cannot be reached on \"%s\" instance."
  78. msgstr ""
  79. #: src/Tribe/Ajax/Dropdown.php:193
  80. msgid "Empty data set for this dropdown"
  81. msgstr ""
  82. #: src/Tribe/Ajax/Dropdown.php:180
  83. msgid "Missing data source for this dropdown"
  84. msgstr ""
  85. #: src/Tribe/Ajax/Dropdown.php:38
  86. msgid "Cannot look for Terms without a taxonomy"
  87. msgstr ""
  88. #: src/Tribe/Plugins_API.php:60
  89. msgid "Event Tickets provides a simple way for visitors to RSVP to your events. As a standalone plugin, it enables you to add RSVP functionality to posts or pages. When paired with The Events Calendar, you can add that same RSVP functionality directly to your event listings."
  90. msgstr ""
  91. #: src/Tribe/Plugins_API.php:28
  92. msgid "Create an events calendar and manage it with ease. The Events Calendar plugin provides professional-level quality and features backed by a team you can trust."
  93. msgstr ""
  94. #: src/Tribe/PUE/Checker.php:1095
  95. msgid "There is a new version of %1$s available. %2$s"
  96. msgstr ""
  97. #: src/Tribe/PUE/Checker.php:1084
  98. msgid "Update now to version %s."
  99. msgstr ""
  100. #: src/Tribe/PUE/Notices.php:340
  101. msgid "You can always check the status of your licenses by logging in to %1$syour account on theeventscalendar.com%2$s."
  102. msgstr ""
  103. #: src/Tribe/PUE/Notices.php:225
  104. msgid "It looks like you're using %1$s, but the license key is invalid. Please download the latest version %2$sfrom your account%3$s."
  105. msgid_plural "It looks like you're using %1$s, but the license keys are invalid. Please download the latest versions %2$sfrom your account%3$s."
  106. msgstr[0] ""
  107. msgstr[1] ""
  108. msgstr[2] ""
  109. msgstr[3] ""
  110. #: src/Tribe/PUE/Checker.php:976
  111. msgid "Please refresh the page and try your request again."
  112. msgstr ""
  113. #: src/Tribe/Plugins_API.php:129
  114. msgid "Take your image widgets to the next level with Image Widget Plus! We've taken the simple functionality of our basic Image Widget and amped it up with several popular feature requests - multiple image support, slideshow, lightbox, and random image - all backed by a full year of premium support."
  115. msgstr ""
  116. #: src/Tribe/Plugins_API.php:125
  117. msgid "Image Widget Plus"
  118. msgstr ""
  119. #: src/Tribe/Documentation/Swagger/Term_Definition_Provider.php:52
  120. msgid "The URL to the term archive page"
  121. msgstr ""
  122. #: src/Tribe/Documentation/Swagger/Term_Definition_Provider.php:48
  123. msgid "The number of posts associated with the term"
  124. msgstr ""
  125. #: src/Tribe/Documentation/Swagger/Term_Definition_Provider.php:44
  126. msgid "The term parent term if any"
  127. msgstr ""
  128. #: src/Tribe/Documentation/Swagger/Term_Definition_Provider.php:40
  129. msgid "The term description"
  130. msgstr ""
  131. #: src/Tribe/Documentation/Swagger/Term_Definition_Provider.php:36
  132. msgid "The taxonomy the term belongs to"
  133. msgstr ""
  134. #: src/Tribe/Documentation/Swagger/Term_Definition_Provider.php:32
  135. msgid "The term slug"
  136. msgstr ""
  137. #: src/Tribe/Documentation/Swagger/Term_Definition_Provider.php:28
  138. msgid "The term name"
  139. msgstr ""
  140. #: src/Tribe/Documentation/Swagger/Term_Definition_Provider.php:24
  141. msgid "The WordPress term ID"
  142. msgstr ""
  143. #: src/Tribe/Documentation/Swagger/Image_Size_Definition_Provider.php:36
  144. msgid "The link to the image in the specified size on the site"
  145. msgstr ""
  146. #: src/Tribe/Documentation/Swagger/Image_Size_Definition_Provider.php:32
  147. msgid "The image mime-type"
  148. msgstr ""
  149. #: src/Tribe/Documentation/Swagger/Image_Size_Definition_Provider.php:28
  150. msgid "The image height in pixels in the specified size"
  151. msgstr ""
  152. #: src/Tribe/Documentation/Swagger/Image_Size_Definition_Provider.php:24
  153. msgid "The image width in pixels in the specified size"
  154. msgstr ""
  155. #: src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:44
  156. msgid "The details about each size available for the image"
  157. msgstr ""
  158. #: src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:40
  159. msgid "The image natural height in pixels"
  160. msgstr ""
  161. #: src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:36
  162. msgid "The image natural width in pixels"
  163. msgstr ""
  164. #: src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:32
  165. msgid "The image file extension"
  166. msgstr ""
  167. #: src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:28
  168. msgid "The image WordPress post ID"
  169. msgstr ""
  170. #: src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:24
  171. msgid "The URL to the full size version of the image"
  172. msgstr ""
  173. #: src/Tribe/Documentation/Swagger/Date_Details_Definition_Provider.php:44
  174. msgid "The date seconds"
  175. msgstr ""
  176. #: src/Tribe/Documentation/Swagger/Date_Details_Definition_Provider.php:40
  177. msgid "The date minutes"
  178. msgstr ""
  179. #: src/Tribe/Documentation/Swagger/Date_Details_Definition_Provider.php:36
  180. msgid "The date hour"
  181. msgstr ""
  182. #: src/Tribe/Documentation/Swagger/Date_Details_Definition_Provider.php:32
  183. msgid "The date day"
  184. msgstr ""
  185. #: src/Tribe/Documentation/Swagger/Date_Details_Definition_Provider.php:28
  186. msgid "The date month"
  187. msgstr ""
  188. #: src/Tribe/Documentation/Swagger/Date_Details_Definition_Provider.php:24
  189. msgid "The date year"
  190. msgstr ""
  191. #: src/Tribe/Documentation/Swagger/Cost_Details_Definition_Provider.php:34
  192. msgid "A sorted array of all the numeric values for the cost"
  193. msgstr ""
  194. #: src/Tribe/Documentation/Swagger/Cost_Details_Definition_Provider.php:28
  195. msgid "The position of the currency symbol in the cost string"
  196. msgstr ""
  197. #: src/Tribe/Documentation/Swagger/Cost_Details_Definition_Provider.php:24
  198. msgid "The cost currency symbol"
  199. msgstr ""
  200. #: src/Tribe/PUE/Checker.php:497
  201. msgid "%1$sBuy a license%2$s for the Event Aggregator service to access additional import features."
  202. msgstr ""
  203. #: src/Tribe/Validate.php:248
  204. msgid "%s must be a whole number."
  205. msgstr ""
  206. #: src/Tribe/Settings.php:281 src/Tribe/Settings.php:282
  207. msgid "Events Help"
  208. msgstr ""
  209. #: src/Tribe/PUE/Checker.php:1670
  210. msgid "Expired license. Consult your network administrator."
  211. msgstr ""
  212. #: src/Tribe/PUE/Checker.php:1669
  213. msgid "No license entered. Consult your network administrator."
  214. msgstr ""
  215. #: src/Tribe/PUE/Checker.php:1668
  216. msgid "A valid license has been entered by your network administrator."
  217. msgstr ""
  218. #: src/Tribe/PUE/Checker.php:550
  219. msgid "Site License Key"
  220. msgstr ""
  221. #: src/Tribe/PUE/Checker.php:539
  222. msgid "Check this box if you wish to override the network license key with your own"
  223. msgstr ""
  224. #: src/Tribe/PUE/Checker.php:538
  225. msgid "Override network license key"
  226. msgstr ""
  227. #: src/Tribe/PUE/Checker.php:529 src/Tribe/PUE/Checker.php:563
  228. msgid "License Key Status:"
  229. msgstr ""
  230. #: src/Tribe/Customizer.php:570
  231. msgid "Use the following panel of your customizer to change the styling of your Calendar and Event pages."
  232. msgstr ""
  233. #: src/Tribe/Extension.php:368
  234. msgid "Unable to run Tribe Extensions. Your website host is running PHP 5.2 or older, and has likely disabled or misconfigured debug_backtrace(). You, or your website host, will need to upgrade PHP or properly configure debug_backtrace() for Tribe Extensions to work."
  235. msgstr ""
  236. #: src/Tribe/Extension.php:144
  237. msgid "Tutorial"
  238. msgstr ""
  239. #: src/admin-views/app-shop.php:31
  240. msgid "Installed"
  241. msgstr ""
  242. #: src/admin-views/app-shop.php:29
  243. msgid "Installed Add-Ons"
  244. msgstr ""
  245. #: src/Tribe/Admin/Notice/Plugin_Download.php:92
  246. msgctxt "the final separator in a list of two or more items"
  247. msgid " and "
  248. msgstr ""
  249. #: src/Tribe/Admin/Notice/Plugin_Download.php:91
  250. msgctxt "separator used in a list of items"
  251. msgid ", "
  252. msgstr ""
  253. #: src/admin-views/tribe-options-help.php:55
  254. msgid "Event Log"
  255. msgstr ""
  256. #: src/admin-views/tribe-options-help.php:42
  257. msgid "The details of your calendar plugin and settings is often needed for you or our staff to help troubleshoot an issue. Please opt-in below to automatically share your system information with our support team. This will allow us to assist you faster if you post in our help desk."
  258. msgstr ""
  259. #: src/admin-views/app-shop.php:26
  260. msgid "Buy This Add-On"
  261. msgstr ""
  262. #: src/admin-views/app-shop.php:5
  263. msgid "Browse All Add-Ons"
  264. msgstr ""
  265. #: src/admin-views/app-shop.php:4
  266. msgid "Events Add-Ons"
  267. msgstr ""
  268. #: src/Tribe/PUE/Notices.php:383
  269. msgctxt "formatted plugin list"
  270. msgid "%1$s and %2$s"
  271. msgstr ""
  272. #: src/Tribe/PUE/Notices.php:302
  273. msgid "You have a license key for %1$s but the key is out of installs. %2$sVisit the Events Calendar website%3$s to manage your installs, upgrade your license, or purchase a new one."
  274. msgid_plural "You have license keys for %1$s but your keys are out of installs. %2$sVisit the Events Calendar website%3$s to manage your installs, upgrade your licenses, or purchase new ones."
  275. msgstr[0] ""
  276. msgstr[1] ""
  277. msgstr[2] ""
  278. msgstr[3] ""
  279. #: src/Tribe/PUE/Notices.php:270
  280. msgid "There is an update available for %1$s but your license has expired. %2$sVisit the Events Calendar website to renew your license.%3$s"
  281. msgid_plural "Updates are available for %1$s but your license keys have expired. %2$sVisit the Events Calendar website to renew your licenses.%3$s"
  282. msgstr[0] ""
  283. msgstr[1] ""
  284. msgstr[2] ""
  285. msgstr[3] ""
  286. #: src/Tribe/PUE/Checker.php:1054
  287. msgid "There is an update for %s. %sRenew your license%s to get access to bug fixes, security updates, and new features."
  288. msgstr ""
  289. #: src/Tribe/PUE/Checker.php:997
  290. msgid "There is an update for %s. You'll need to %scheck your license%s to have access to updates, downloads, and support."
  291. msgstr ""
  292. #: src/Tribe/Admin/Help_Page.php:219 src/Tribe/Plugins_API.php:34
  293. msgid "Event Aggregator"
  294. msgstr ""
  295. #: src/Tribe/Admin/Notice/Plugin_Download.php:75
  296. msgid "To begin using %1$s, please install and activate the latest version of %2$s."
  297. msgstr ""
  298. #: src/admin-views/tribe-options-licenses.php:30
  299. msgid "Not seeing an update but expecting one? In WordPress, go to %1$sDashboard > Updates%2$s and click \"Check Again\"."
  300. msgstr ""
  301. #: src/admin-views/tribe-options-licenses.php:25
  302. msgid "If you're seeing a red message telling you that your key isn't valid or is out of installs, visit %1$s to manage your installs or renew / upgrade your license."
  303. msgstr ""
  304. #: src/admin-views/tribe-options-licenses.php:22
  305. msgid "Each paid add-on has its own unique license key. Simply paste the key into its appropriate field below, and give it a moment to validate. You know you're set when a green expiration date appears alongside a \"valid\" message."
  306. msgstr ""
  307. #: src/admin-views/tribe-options-licenses.php:15
  308. msgid "The license key you received when completing your purchase from %1$s will grant you access to support and updates until it expires. You do not need to enter the key below for the plugins to work, but you will need to enter it to get automatic updates. %3$sFind your license keys at %2$s%4$s."
  309. msgstr ""
  310. #: src/admin-views/tribe-options-licenses.php:11
  311. #: src/admin-views/tribe-options-licenses.php:16
  312. msgid " (opens in new window)"
  313. msgstr ""
  314. #: src/Tribe/Languages/Locations.php:110
  315. msgid "C&ocirc;te d'Ivoire"
  316. msgstr ""
  317. #: src/Tribe/Support.php:372
  318. msgid "Unique System Info Key Generated"
  319. msgstr ""
  320. #: src/Tribe/Support.php:358 src/Tribe/Support.php:384
  321. msgid "Permission Error"
  322. msgstr ""
  323. #: src/Tribe/Support.php:325 src/Tribe/Support.php:330
  324. msgid "Invalid Key"
  325. msgstr ""
  326. #: src/Tribe/Support.php:306
  327. msgid "Your system information will only be used by the Modern Tribe support team. All information is stored securely. We do not share this information with any third parties."
  328. msgstr ""
  329. #: src/Tribe/Support.php:305
  330. msgid "Yes, automatically share my system information with the Modern Tribe support team"
  331. msgstr ""
  332. #: src/Tribe/Support.php:171
  333. msgid "English"
  334. msgstr ""
  335. #: src/Tribe/PUE/Checker.php:961 src/Tribe/PUE/Notices.php:285
  336. msgid " (opens in a new window)"
  337. msgstr ""
  338. #: src/Tribe/PUE/Checker.php:959 src/Tribe/PUE/Notices.php:283
  339. msgid "Renew Your License Now"
  340. msgstr ""
  341. #: src/Tribe/Main.php:260
  342. msgid ": Selected 1 row"
  343. msgstr ""
  344. #: src/Tribe/Main.php:259
  345. msgid ": Selected %d rows"
  346. msgstr ""
  347. #: src/Tribe/Main.php:254
  348. msgid "Previous"
  349. msgstr ""
  350. #: src/Tribe/Main.php:252
  351. msgid "All"
  352. msgstr ""
  353. #: src/Tribe/Main.php:246
  354. msgid "No matching records found"
  355. msgstr ""
  356. #: src/Tribe/Main.php:245
  357. msgid "(filtered from _MAX_ total entries)"
  358. msgstr ""
  359. #: src/Tribe/Main.php:244
  360. msgid "Showing 0 to 0 of 0 entries"
  361. msgstr ""
  362. #: src/Tribe/Main.php:243
  363. msgid "Showing _START_ to _END_ of _TOTAL_ entries"
  364. msgstr ""
  365. #: src/Tribe/Main.php:242
  366. msgid "No data available in table"
  367. msgstr ""
  368. #: src/Tribe/Main.php:241
  369. msgid "Show _MENU_ entries"
  370. msgstr ""
  371. #: src/Tribe/Main.php:239
  372. msgid ": activate to sort column descending"
  373. msgstr ""
  374. #: src/Tribe/Main.php:238
  375. msgid ": activate to sort column ascending"
  376. msgstr ""
  377. #: src/Tribe/Main.php:280
  378. msgid "Press \"Cmd + C\" to copy"
  379. msgstr ""
  380. #: src/Tribe/Main.php:279
  381. msgid "System info copied"
  382. msgstr ""
  383. #: src/Tribe/Main.php:278 src/admin-views/tribe-options-help.php:50
  384. msgid "Copy to clipboard"
  385. msgstr ""
  386. #: src/Tribe/Error.php:38
  387. msgid "An Unknown error occurred"
  388. msgstr ""
  389. #: src/Tribe/Plugins_API.php:116
  390. msgid "The Eventbrite Tickets add-on allows you to create & sell tickets through The Events Calendar using the power of %1$sEventbrite%2$s. Whether you’re creating your ticket on the WordPress dashboard or importing the details of an already-existing event from %1$sEventbrite.com%2$s, this add-on brings the power of the Eventbrite API to your calendar."
  391. msgstr ""
  392. #: src/Tribe/Plugins_API.php:105
  393. msgctxt "Names of required plugins for Community Tickets"
  394. msgid "Event Tickets Plus and Community Events"
  395. msgstr ""
  396. #: src/Tribe/Plugins_API.php:104
  397. msgid "Enable Community Events organizers to offer tickets to their events. You can set flexible payment and fee options. They can even check-in attendees to their events! All of this managed from the front-end of your site without ever needing to grant access to your admin"
  398. msgstr ""
  399. #: src/Tribe/Plugins_API.php:48
  400. msgid "The Events Calendar PRO is a paid Add-On to our open source WordPress plugin %1$sThe Events Calendar%2$s. PRO offers a whole host of calendar features including recurring events, custom event attributes, saved venues and organizers, venue pages, advanced event admin and lots more."
  401. msgstr ""
  402. #: src/Tribe/Plugins_API.php:84
  403. msgid "It is awesome that your calendar is <em>THE PLACE</em> to get hooked up with prime choice ways to spend time. You have more events than Jabba the Hutt has rolls. Too bad visitors are hiring a personal assistant to go through all the choices. Ever wish you could just filter the calendar to only show events in walking distance, on a weekend, that are free? BOOM. Now you can. Introducing… the Filter Bar."
  404. msgstr ""
  405. #: src/Tribe/Admin/Help_Page.php:227 src/Tribe/Plugins_API.php:80
  406. msgid "Filter Bar"
  407. msgstr ""
  408. #: src/Tribe/Credits.php:64
  409. msgid "Rate %1$sEvent Tickets%2$s %3$s"
  410. msgstr ""
  411. #: src/Tribe/Credits.php:55
  412. msgid "Rate %1$sThe Events Calendar%2$s %3$s"
  413. msgstr ""
  414. #: src/Tribe/Log/Null_Logger.php:26
  415. msgid "Null logger (will log nothing)"
  416. msgstr ""
  417. #: src/admin-views/event-log.php:117
  418. msgid "Download log"
  419. msgstr ""
  420. #: src/admin-views/event-log.php:100
  421. msgid "The selected log file is empty or has not been generated yet."
  422. msgstr ""
  423. #: src/admin-views/event-log.php:43
  424. msgid "Method"
  425. msgstr ""
  426. #: src/admin-views/event-log.php:21
  427. msgid "Logging level"
  428. msgstr ""
  429. #: src/Tribe/Validate.php:168
  430. msgid "%s must contain numbers, letters, dashes and undescores only"
  431. msgstr ""
  432. #: src/Tribe/Log.php:376
  433. msgid "Full debug (all events)"
  434. msgstr ""
  435. #: src/Tribe/Log.php:375
  436. msgid "Warnings and errors"
  437. msgstr ""
  438. #: src/Tribe/Log.php:374
  439. msgid "Only errors"
  440. msgstr ""
  441. #: src/Tribe/Log.php:373
  442. msgid "Disabled"
  443. msgstr ""
  444. #: src/Tribe/Log.php:274
  445. msgid "Cannot set %s as the current logging engine"
  446. msgstr ""
  447. #: src/Tribe/Log/File_Logger.php:128
  448. msgid "Default (uses temporary files)"
  449. msgstr ""
  450. #: src/Tribe/Log/Admin.php:148
  451. msgctxt "log engines"
  452. msgid "None currently available"
  453. msgstr ""
  454. #: src/Tribe/Log/Admin.php:133
  455. msgctxt "log selector"
  456. msgid "None currently available"
  457. msgstr ""
  458. #: src/admin-views/tribe-options-help.php:52
  459. msgid "Recent Template Changes"
  460. msgstr ""
  461. #: src/Tribe/Support/Template_Checker_Report.php:115
  462. msgid "Information about recent template changes and potentially impacted template overrides is provided below."
  463. msgstr ""
  464. #: src/Tribe/Support/Template_Checker_Report.php:113
  465. msgid "No notable template changes detected."
  466. msgstr ""
  467. #: src/Tribe/Support/Template_Checker_Report.php:97
  468. msgid "based on %s version"
  469. msgstr ""
  470. #: src/Tribe/Support/Template_Checker_Report.php:96
  471. msgid "version data missing from override"
  472. msgstr ""
  473. #: src/Tribe/Support/Template_Checker_Report.php:92
  474. msgid "Existing theme overrides that may need revision:"
  475. msgstr ""
  476. #: src/Tribe/Support/Template_Checker_Report.php:82
  477. msgid "Templates introduced or updated with this release (%s):"
  478. msgstr ""
  479. #: src/Tribe/Support/Template_Checker_Report.php:78
  480. msgid "No notable changes detected"
  481. msgstr ""
  482. #. Description of the plugin/theme
  483. msgid "An event settings framework for managing shared options"
  484. msgstr ""
  485. #. Plugin Name of the plugin/theme
  486. msgid "Tribe Common"
  487. msgstr ""
  488. #: src/admin-views/tribe-options-licenses.php:47
  489. msgid "Only license fields for %1$snetwork activated%2$s plugins will be listed on this screen. "
  490. msgstr ""
  491. #: src/admin-views/tribe-options-help.php:38
  492. msgid "Read more about our support policy"
  493. msgstr ""
  494. #: src/admin-views/tribe-options-help.php:30
  495. msgid "Please note that all hands-on support is provided via the forums. You can email or tweet at us… ​but we will probably point you back to the forums "
  496. msgstr ""
  497. #: src/admin-views/tribe-options-help.php:33
  498. msgid "%s. There are very few issues we haven’t seen and it’s likely another user has already asked your question and gotten an answer from our support staff. While posting to the help desk is open only to paid customers, they are open for anyone to search and review."
  499. msgstr ""
  500. #: src/admin-views/tribe-options-help.php:32
  501. msgid "Test for a theme or plugin conflict"
  502. msgstr ""
  503. #: src/admin-views/tribe-options-help.php:32
  504. msgid "%s. Testing for an existing conflict is the best start for in-depth troubleshooting. We will often ask you to follow these steps when opening a new thread, so doing this ahead of time will be super helpful."
  505. msgstr ""
  506. #: src/admin-views/tribe-options-help.php:31
  507. msgid "Check our Knowledgebase"
  508. msgstr ""
  509. #: src/admin-views/tribe-options-help.php:31
  510. msgid "%s. All of the common (and not-so-common) answers to questions we see are here. It’s often the fastest path to finding an answer!"
  511. msgstr ""
  512. #: src/admin-views/tribe-options-help.php:27
  513. msgid "While the resources above help solve a majority of the issues we see, there are times you might be looking for extra support. If you need assistance using our plugins and would like us to take a look, please follow these steps:"
  514. msgstr ""
  515. #: src/admin-views/tribe-options-help.php:26
  516. msgid "Getting More Help"
  517. msgstr ""
  518. #: src/admin-views/tribe-options-help.php:21
  519. msgid "list of available functions"
  520. msgstr ""
  521. #: src/admin-views/tribe-options-help.php:15
  522. msgid "Knowledgebase"
  523. msgstr ""
  524. #: src/admin-views/tribe-options-help.php:15
  525. msgid "Our website’s %s is a great place to find tips and tricks for using and customizing our plugins."
  526. msgstr ""
  527. #: src/admin-views/tribe-options-help.php:14
  528. msgid "Getting Support"
  529. msgstr ""
  530. #: src/admin-views/tribe-options-help.php:11
  531. msgid "Thank you for using %s! All of us at Modern Tribe sincerely appreciate your support and we’re excited to see you using our plugins."
  532. msgstr ""
  533. #: src/admin-views/tribe-options-general.php:15
  534. msgid "Optimize your site's event listings with %1$sThe Events Calendar%2$s, our free calendar plugin. Looking for additional functionality including recurring events, user-submission, advanced ticket sales and more? Check out our %3$spremium add-ons%4$s."
  535. msgstr ""
  536. #: src/admin-views/tribe-options-general.php:10
  537. msgid "Thank you for using Event Tickets! All of us at Modern Tribe sincerely appreciate your support and we're excited to see you using our plugins. Check out our handy %1$sNew User Primer%2$s to get started."
  538. msgstr ""
  539. #: src/Tribe/Validate.php:214
  540. msgid "%s must be a positive number or percent."
  541. msgstr ""
  542. #: src/Tribe/PUE/Checker.php:932
  543. msgid "Thanks for setting up a valid key. It will expire on %s"
  544. msgstr ""
  545. #: src/Tribe/Admin/Help_Page.php:860
  546. msgid "Visit the Add-on Page"
  547. msgstr ""
  548. #: src/Tribe/Admin/Help_Page.php:855
  549. msgid "Plugin Inactive"
  550. msgstr ""
  551. #: src/Tribe/Admin/Help_Page.php:853
  552. msgid "Plugin Active"
  553. msgstr ""
  554. #: src/Tribe/Admin/Help_Page.php:828
  555. msgid "Rating:"
  556. msgstr ""
  557. #: src/Tribe/Admin/Help_Page.php:825
  558. msgid "Active Users:"
  559. msgstr ""
  560. #: src/Tribe/Admin/Help_Page.php:802
  561. msgid "Install Plugin"
  562. msgstr ""
  563. #: src/Tribe/Admin/Help_Page.php:802
  564. msgid "Install %s"
  565. msgstr ""
  566. #: src/Tribe/Admin/Help_Page.php:786
  567. msgid "Upgrade Plugin"
  568. msgstr ""
  569. #: src/Tribe/Admin/Help_Page.php:778
  570. msgid "Activate Plugin"
  571. msgstr ""
  572. #: src/Tribe/Admin/Help_Page.php:778
  573. msgid "Activate %s"
  574. msgstr ""
  575. #: src/Tribe/Admin/Help_Page.php:244 src/Tribe/Plugins_API.php:100
  576. msgid "Community Tickets"
  577. msgstr ""
  578. #: src/Tribe/Admin/Help_Page.php:235 src/Tribe/Plugins_API.php:66
  579. msgid "Event Tickets Plus"
  580. msgstr ""
  581. #: src/Tribe/Admin/Help_Page.php:203 src/Tribe/Plugins_API.php:111
  582. msgid "Eventbrite Tickets"
  583. msgstr ""
  584. #: src/Tribe/Admin/Help_Page.php:170
  585. msgid " and "
  586. msgstr "in"
  587. #: src/Tribe/Admin/Help_Page.php:95
  588. msgid "Turbo charge your posts admin for any custom post type with sortable filters and columns, and auto-registration of metaboxes."
  589. msgstr ""
  590. #: src/Tribe/Admin/Help_Page.php:91
  591. msgid "Advanced Post Manager"
  592. msgstr ""
  593. #: src/Tribe/Admin/Help_Page.php:79
  594. msgid "Events Tickets is a carefully crafted, extensible plugin that lets you easily sell tickets for your events."
  595. msgstr ""
  596. #: src/Tribe/Admin/Help_Page.php:75 src/Tribe/Plugins_API.php:57
  597. msgid "Event Tickets"
  598. msgstr ""
  599. #: src/Tribe/Admin/Help_Page.php:63
  600. msgid "The Events Calendar is a carefully crafted, extensible plugin that lets you easily share your events."
  601. msgstr ""
  602. #. Author URI of the plugin/theme
  603. msgid "http://m.tri.be/1x"
  604. msgstr ""
  605. #. Author of the plugin/theme
  606. msgid "Modern Tribe, Inc."
  607. msgstr "Modern Tribe, Inc."
  608. #: src/Tribe/Settings.php:371
  609. msgid "Save Changes"
  610. msgstr ""
  611. #: src/admin-views/tribe-options-licenses.php:38
  612. msgid "%1$s Using our plugins in a multisite network? %2$s Please note that your license key will be applied to the entire network, not just this site."
  613. msgstr ""
  614. #: src/Tribe/Support.php:199
  615. msgid "Rewrite rules were purged on load of this help page. Chances are there is a rewrite rule flush occurring in a plugin or theme!"
  616. msgstr ""
  617. #: src/Tribe/PUE/Checker.php:901
  618. msgid "unknown date"
  619. msgstr "Neznani datum"
  620. #: src/Tribe/Admin/Activation_Page.php:92
  621. msgid "Return to WordPress Updates"
  622. msgstr "Vrni se na stran za nadgradnjo Wordpressa"
  623. #: src/Tribe/Admin/Activation_Page.php:92
  624. msgid "Go to WordPress Updates page"
  625. msgstr "Pojdi na stran za nadgradnjo WordPressa"
  626. #: src/Tribe/Admin/Activation_Page.php:84
  627. msgid "Return to Plugins page"
  628. msgstr "Vrni se na stran z vtičniki"
  629. #: src/Tribe/Admin/Activation_Page.php:84
  630. msgid "Go to plugins page"
  631. msgstr "Pojdi na stran z vtičniki"
  632. #: src/Tribe/Cost_Utils.php:114
  633. msgid "Free"
  634. msgstr "Zastonj"
  635. #: src/admin-views/tribe-options-network.php:27
  636. msgid "Hide the following settings tabs on every site:"
  637. msgstr "Skrijte naslednje zavihke nastavitev na vsaki strani "
  638. #: src/admin-views/tribe-options-network.php:19
  639. msgid "This is where all of the global network settings for Modern Tribe's The Events Calendar can be modified."
  640. msgstr "Tukaj lahko spreminjate vse globalne nastavitve za Modern Tribe's The Events Calendar. "
  641. #: src/admin-views/tribe-options-network.php:15
  642. msgid "Network Settings"
  643. msgstr "Nastavitve omrežja"
  644. #: src/admin-views/tribe-options-help.php:74
  645. msgid "News and Tutorials"
  646. msgstr "Novice in vodiči"
  647. #: src/Tribe/Admin/Help_Page.php:847
  648. msgid "Premium Add-Ons"
  649. msgstr "Premium dodatki"
  650. #: src/Tribe/Admin/Help_Page.php:823
  651. msgid "WordPress "
  652. msgstr "WordPress"
  653. #: src/Tribe/Admin/Help_Page.php:822 src/admin-views/app-shop.php:77
  654. msgid "Requires:"
  655. msgstr "Zahteva:"
  656. #: src/Tribe/Admin/Help_Page.php:819
  657. msgid "Latest Version:"
  658. msgstr "Zadnja različica:"
  659. #: src/admin-views/tribe-options-help.php:80
  660. msgid "More..."
  661. msgstr "Več ..."
  662. #: src/Tribe/Admin/Help_Page.php:194 src/Tribe/Plugins_API.php:43
  663. msgid "Events Calendar PRO"
  664. msgstr ""
  665. #: src/Tribe/Admin/Help_Page.php:413 src/Tribe/Admin/Help_Page.php:788
  666. msgid "You are up to date!"
  667. msgstr "Imate trenutno različico!"
  668. #: src/Tribe/Admin/Help_Page.php:413
  669. msgid "You need to upgrade!"
  670. msgstr "Čaka vas posodobitev!"
  671. #: src/Tribe/Admin/Help_Page.php:405
  672. msgctxt "not available"
  673. msgid "n/a"
  674. msgstr "n/a"
  675. #: src/admin-views/tribe-options-general.php:59
  676. msgid "Debug Bar Plugin"
  677. msgstr "Debug Bar vtičnik "
  678. #: src/admin-views/tribe-options-general.php:59
  679. msgid "Enable this option to log debug information. By default this will log to your server PHP error log. If you'd like to see the log messages in your browser, then we recommend that you install the %s and look for the \"Tribe\" tab in the debug output."
  680. msgstr "Omogočite to možnost za spremljanje debug informacij. Privzeto se bo to zapisalo v PHP error log vašega strežnika. Če želite pogledati te informacije v vašem brskalniku, vam priporočamo da namestite %s in poiščete \"Tribe\" zavihek v debug izpisu. "
  681. #: src/admin-views/tribe-options-general.php:53
  682. msgid "Debug mode"
  683. msgstr "Debug način"
  684. #: src/admin-views/tribe-options-general.php:35
  685. msgid "Show The Events Calendar link"
  686. msgstr "Prikaži The Events Calendar povezavo"
  687. #: src/admin-views/tribe-options-general.php:30
  688. msgid "See an example of the link"
  689. msgstr "Poglejte si primer povezave"
  690. #: src/admin-views/tribe-options-general.php:30
  691. msgid "Are you thinking \"Wow, this plugin is amazing! I should say thanks to Modern Tribe for all their hard work.\" The greatest thanks we could ask for is recognition. Add a small text-only link at the bottom of your calendar pointing to The Events Calendar project."
  692. msgstr "Ali si mislite \"Wau, ta vtičnik je res super, moral bi se zahvaliti Modern Tribe za njihovo trdo delo.\" Največja zahvala za katero lahko zaprosimo je prepoznavnost. Dodajte majhno tekstovno povezavo na dno vašega koledarja, ki kaže na stran projekta The Events Calendar. "
  693. #: src/admin-views/tribe-options-general.php:25
  694. msgid "We hope our plugin is helping you out."
  695. msgstr "Upamo, da vam je naš vtičnik v pomoč."
  696. #: src/admin-views/tribe-options-general.php:20
  697. msgid "Check out the available add-ons"
  698. msgstr "Poglejte si razpoložljive dodatke"
  699. #: src/admin-views/tribe-options-general.php:20
  700. msgid "Looking for additional functionality including recurring events, custom meta, community events, ticket sales and more?"
  701. msgstr "Iščete dodatno funkcionalnost kot so ponavljajoči se dogodki, meta podatki po meri, community events, prodaja vstopnic ali več? "
  702. #: src/admin-views/tribe-options-display.php:37
  703. msgid "Select the date format to use in datepickers"
  704. msgstr "Izberite format datumov za uporabo v izbiralniku datumov"
  705. #: src/admin-views/tribe-options-display.php:36
  706. msgid "Datepicker Date Format"
  707. msgstr "Format izbiralnika datumov"
  708. #: src/admin-views/tribe-options-display.php:22
  709. msgid "Date Format Settings"
  710. msgstr "Nastavitve formata datuma"
  711. #: src/admin-views/event-log.php:65
  712. msgid "View"
  713. msgstr "Ogled"
  714. #: src/Tribe/Admin/Help_Page.php:211 src/Tribe/Plugins_API.php:90
  715. msgid "Community Events"
  716. msgstr ""
  717. #: src/Tribe/Languages/Locations.php:374
  718. msgid "Wyoming"
  719. msgstr "Wyoming"
  720. #: src/Tribe/Languages/Locations.php:373
  721. msgid "Wisconsin"
  722. msgstr "Wisconsin"
  723. #: src/Tribe/Languages/Locations.php:372
  724. msgid "West Virginia"
  725. msgstr "West Virginia"
  726. #: src/Tribe/Languages/Locations.php:371
  727. msgid "Washington"
  728. msgstr "Washington"
  729. #: src/Tribe/Languages/Locations.php:370
  730. msgid "Virginia"
  731. msgstr "Virginia"
  732. #: src/Tribe/Languages/Locations.php:369
  733. msgid "Vermont"
  734. msgstr "Vermont"
  735. #: src/Tribe/Languages/Locations.php:368
  736. msgid "Utah"
  737. msgstr "Utah"
  738. #: src/Tribe/Languages/Locations.php:367
  739. msgid "Texas"
  740. msgstr "Texas"
  741. #: src/Tribe/Languages/Locations.php:366
  742. msgid "Tennessee"
  743. msgstr "Tennessee"
  744. #: src/Tribe/Languages/Locations.php:365
  745. msgid "South Dakota"
  746. msgstr "South Dakota"
  747. #: src/Tribe/Languages/Locations.php:364
  748. msgid "South Carolina"
  749. msgstr "South Carolina"
  750. #: src/Tribe/Languages/Locations.php:363
  751. msgid "Rhode Island"
  752. msgstr "Rhode Island"
  753. #: src/Tribe/Languages/Locations.php:362
  754. msgid "Pennsylvania"
  755. msgstr "Pennsylvania"
  756. #: src/Tribe/Languages/Locations.php:361
  757. msgid "Oregon"
  758. msgstr "Oregon"
  759. #: src/Tribe/Languages/Locations.php:360
  760. msgid "Oklahoma"
  761. msgstr "Oklahoma"
  762. #: src/Tribe/Languages/Locations.php:359
  763. msgid "Ohio"
  764. msgstr "Ohio"
  765. #: src/Tribe/Languages/Locations.php:358
  766. msgid "North Dakota"
  767. msgstr "North Dakota"
  768. #: src/Tribe/Languages/Locations.php:357
  769. msgid "North Carolina"
  770. msgstr "North Carolina"
  771. #: src/Tribe/Languages/Locations.php:356
  772. msgid "New York"
  773. msgstr "New York"
  774. #: src/Tribe/Languages/Locations.php:355
  775. msgid "New Mexico"
  776. msgstr "New Mexico"
  777. #: src/Tribe/Languages/Locations.php:354
  778. msgid "New Jersey"
  779. msgstr "New Jersey"
  780. #: src/Tribe/Languages/Locations.php:353
  781. msgid "New Hampshire"
  782. msgstr "New Hampshire"
  783. #: src/Tribe/Languages/Locations.php:352
  784. msgid "Nevada"
  785. msgstr "Nevada"
  786. #: src/Tribe/Languages/Locations.php:351
  787. msgid "Nebraska"
  788. msgstr "Nebraska"
  789. #: src/Tribe/Languages/Locations.php:350
  790. msgid "Montana"
  791. msgstr "Montana"
  792. #: src/Tribe/Languages/Locations.php:349
  793. msgid "Missouri"
  794. msgstr "Missouri"
  795. #: src/Tribe/Languages/Locations.php:348
  796. msgid "Mississippi"
  797. msgstr "Mississippi"
  798. #: src/Tribe/Languages/Locations.php:347
  799. msgid "Minnesota"
  800. msgstr "Minnesota"
  801. #: src/Tribe/Languages/Locations.php:346
  802. msgid "Michigan"
  803. msgstr "Michigan"
  804. #: src/Tribe/Languages/Locations.php:345
  805. msgid "Massachusetts"
  806. msgstr "Massachusetts"
  807. #: src/Tribe/Languages/Locations.php:344
  808. msgid "Maryland"
  809. msgstr "Maryland"
  810. #: src/Tribe/Languages/Locations.php:343
  811. msgid "Maine"
  812. msgstr "Maine"
  813. #: src/Tribe/Languages/Locations.php:342
  814. msgid "Louisiana"
  815. msgstr "Louisiana"
  816. #: src/Tribe/Languages/Locations.php:341
  817. msgid "Kentucky"
  818. msgstr "Kentucky"
  819. #: src/Tribe/Languages/Locations.php:340
  820. msgid "Kansas"
  821. msgstr "Kansas"
  822. #: src/Tribe/Languages/Locations.php:339
  823. msgid "Iowa"
  824. msgstr "Iowa"
  825. #: src/Tribe/Languages/Locations.php:338
  826. msgid "Indiana"
  827. msgstr "Indiana"
  828. #: src/Tribe/Languages/Locations.php:337
  829. msgid "Illinois"
  830. msgstr "Illinois"
  831. #: src/Tribe/Languages/Locations.php:336
  832. msgid "Idaho"
  833. msgstr "Idaho"
  834. #: src/Tribe/Languages/Locations.php:335
  835. msgid "Hawaii"
  836. msgstr "Hawaii"
  837. #: src/Tribe/Languages/Locations.php:333
  838. msgid "Florida"
  839. msgstr "Florida"
  840. #: src/Tribe/Languages/Locations.php:332
  841. msgid "District of Columbia"
  842. msgstr "District of Columbia"
  843. #: src/Tribe/Languages/Locations.php:331
  844. msgid "Delaware"
  845. msgstr "Delaware"
  846. #: src/Tribe/Languages/Locations.php:330
  847. msgid "Connecticut"
  848. msgstr "Connecticut"
  849. #: src/Tribe/Languages/Locations.php:329
  850. msgid "Colorado"
  851. msgstr "Colorado"
  852. #: src/Tribe/Languages/Locations.php:328
  853. msgid "California"
  854. msgstr "California"
  855. #: src/Tribe/Languages/Locations.php:327
  856. msgid "Arkansas"
  857. msgstr "Arkansas"
  858. #: src/Tribe/Languages/Locations.php:326
  859. msgid "Arizona"
  860. msgstr "Arizona"
  861. #: src/Tribe/Languages/Locations.php:325
  862. msgid "Alaska"
  863. msgstr "Alaska"
  864. #: src/Tribe/Languages/Locations.php:324
  865. msgid "Alabama"
  866. msgstr "Alabama"
  867. #: src/Tribe/Languages/Locations.php:297
  868. msgid "Zimbabwe"
  869. msgstr "Zimbabve"
  870. #: src/Tribe/Languages/Locations.php:296
  871. msgid "Zambia"
  872. msgstr "Zambija"
  873. #: src/Tribe/Languages/Locations.php:295
  874. msgid "Yemen"
  875. msgstr "Jemen"
  876. #: src/Tribe/Languages/Locations.php:294
  877. msgid "Western Sahara"
  878. msgstr "Western Sahara"
  879. #: src/Tribe/Languages/Locations.php:293
  880. msgid "Wallis and Futuna Islands"
  881. msgstr ""
  882. #: src/Tribe/Languages/Locations.php:292
  883. msgid "Virgin Islands (U.S.)"
  884. msgstr "Deviški otoki (ameriški)"
  885. #: src/Tribe/Languages/Locations.php:291
  886. msgid "Virgin Islands (British)"
  887. msgstr "Deviški otoki (britanski)"
  888. #: src/Tribe/Languages/Locations.php:290
  889. msgid "Viet Nam"
  890. msgstr "Viet Nam"
  891. #: src/Tribe/Languages/Locations.php:289
  892. msgid "Venezuela"
  893. msgstr "Venezuela"
  894. #: src/Tribe/Languages/Locations.php:288
  895. msgid "Vanuatu"
  896. msgstr "Vanuatu"
  897. #: src/Tribe/Languages/Locations.php:287
  898. msgid "Uzbekistan"
  899. msgstr "Uzbekistan"
  900. #: src/Tribe/Languages/Locations.php:286
  901. msgid "Uruguay"
  902. msgstr "Urugvaj"
  903. #: src/Tribe/Languages/Locations.php:285
  904. msgid "United States Minor Outlying Islands"
  905. msgstr "United States Minor Outlying Islands"
  906. #: src/Tribe/Languages/Locations.php:284
  907. msgid "United Kingdom"
  908. msgstr "Združeno kraljestvo"
  909. #: src/Tribe/Languages/Locations.php:283
  910. msgid "United Arab Emirates"
  911. msgstr "Združeni Arabski Emirati"
  912. #: src/Tribe/Languages/Locations.php:282
  913. msgid "Ukraine"
  914. msgstr "Ukrajina"
  915. #: src/Tribe/Languages/Locations.php:281
  916. msgid "Uganda"
  917. msgstr "Uganda"
  918. #: src/Tribe/Languages/Locations.php:280
  919. msgid "Tuvalu"
  920. msgstr "Tuvalu"
  921. #: src/Tribe/Languages/Locations.php:279
  922. msgid "Turks and Caicos Islands"
  923. msgstr ""
  924. #: src/Tribe/Languages/Locations.php:278
  925. msgid "Turkmenistan"
  926. msgstr "Turkmenistan"
  927. #: src/Tribe/Languages/Locations.php:277
  928. msgid "Turkey"
  929. msgstr "Turčija"
  930. #: src/Tribe/Languages/Locations.php:276
  931. msgid "Tunisia"
  932. msgstr "Tunizija"
  933. #: src/Tribe/Languages/Locations.php:275
  934. msgid "Trinidad and Tobago"
  935. msgstr ""
  936. #: src/Tribe/Languages/Locations.php:274
  937. msgid "Tonga"
  938. msgstr "Tonga"
  939. #: src/Tribe/Languages/Locations.php:273
  940. msgid "Tokelau"
  941. msgstr "Tokelau"
  942. #: src/Tribe/Languages/Locations.php:272
  943. msgid "Togo"
  944. msgstr "Togo"
  945. #: src/Tribe/Languages/Locations.php:271
  946. msgid "Thailand"
  947. msgstr "Tajska"
  948. #: src/Tribe/Languages/Locations.php:270
  949. msgid "Tanzania, United Republic of"
  950. msgstr ""
  951. #: src/Tribe/Languages/Locations.php:269
  952. msgid "Tajikistan"
  953. msgstr "Tadžikistan"
  954. #: src/Tribe/Languages/Locations.php:268
  955. msgid "Taiwan"
  956. msgstr "Tajvan"
  957. #: src/Tribe/Languages/Locations.php:267
  958. msgid "Syrian Arab Republic"
  959. msgstr "Sirska Arabska Republika"
  960. #: src/Tribe/Languages/Locations.php:266
  961. msgid "Switzerland"
  962. msgstr "Švica"
  963. #: src/Tribe/Languages/Locations.php:265
  964. msgid "Sweden"
  965. msgstr "Švedska"
  966. #: src/Tribe/Languages/Locations.php:264
  967. msgid "Swaziland"
  968. msgstr "Swaziland"
  969. #: src/Tribe/Languages/Locations.php:263
  970. msgid "Svalbard and Jan Mayen Islands"
  971. msgstr ""
  972. #: src/Tribe/Languages/Locations.php:262
  973. msgid "Suriname"
  974. msgstr "Suriname"
  975. #: src/Tribe/Languages/Locations.php:261
  976. msgid "Sudan"
  977. msgstr "Sudan"
  978. #: src/Tribe/Languages/Locations.php:241
  979. msgid "Saint Pierre and Miquelon"
  980. msgstr ""
  981. #: src/Tribe/Languages/Locations.php:260
  982. msgid "Sri Lanka"
  983. msgstr "Šri Lanka"
  984. #: src/Tribe/Languages/Locations.php:259
  985. msgid "Spain"
  986. msgstr "Španija"
  987. #: src/Tribe/Languages/Locations.php:258
  988. msgid "South Georgia, South Sandwich Islands"
  989. msgstr "South Georgia, South Sandwich Islands"
  990. #: src/Tribe/Languages/Locations.php:257
  991. msgid "South Africa"
  992. msgstr "Južna Afrika"
  993. #: src/Tribe/Languages/Locations.php:256
  994. msgid "Somalia"
  995. msgstr "Somalija"
  996. #: src/Tribe/Languages/Locations.php:255
  997. msgid "Solomon Islands"
  998. msgstr "Solomonovi otoki"
  999. #: src/Tribe/Languages/Locations.php:254
  1000. msgid "Slovenia"
  1001. msgstr "Slovenija"
  1002. #: src/Tribe/Languages/Locations.php:253
  1003. msgid "Slovakia (Slovak Republic)"
  1004. msgstr "Slovaška (Slovaška Republika)"
  1005. #: src/Tribe/Languages/Locations.php:251
  1006. msgid "Singapore"
  1007. msgstr "Singapur"
  1008. #: src/Tribe/Languages/Locations.php:250
  1009. msgid "Sierra Leone"
  1010. msgstr "Sierra Leone"
  1011. #: src/Tribe/Languages/Locations.php:249
  1012. msgid "Seychelles"
  1013. msgstr "Sejšeli"
  1014. #: src/Tribe/Languages/Locations.php:248
  1015. msgid "Serbia"
  1016. msgstr "Srbija"
  1017. #: src/Tribe/Languages/Locations.php:247
  1018. msgid "Senegal"
  1019. msgstr "Senegal"
  1020. #: src/Tribe/Languages/Locations.php:246
  1021. msgid "Saudi Arabia"
  1022. msgstr "Savdska Arabija"
  1023. #: src/Tribe/Languages/Locations.php:244
  1024. msgid "San Marino"
  1025. msgstr "San Marino"
  1026. #: src/Tribe/Languages/Locations.php:243
  1027. msgid "Samoa"
  1028. msgstr "Samo"
  1029. #: src/Tribe/Languages/Locations.php:242
  1030. msgid "Saint Vincent and The Grenadines"
  1031. msgstr ""
  1032. #: src/Tribe/Languages/Locations.php:240
  1033. msgid "Saint Lucia"
  1034. msgstr "Saint Lucia"
  1035. #: src/Tribe/Languages/Locations.php:239
  1036. msgid "Saint Kitts and Nevis"
  1037. msgstr ""
  1038. #: src/Tribe/Languages/Locations.php:236
  1039. msgid "Rwanda"
  1040. msgstr "Ruanda"
  1041. #: src/Tribe/Languages/Locations.php:235
  1042. msgid "Russian Federation"
  1043. msgstr "Ruska federacija"
  1044. #: src/Tribe/Languages/Locations.php:234
  1045. msgid "Romania"
  1046. msgstr "Romunija"
  1047. #: src/Tribe/Languages/Locations.php:233
  1048. msgid "Reunion"
  1049. msgstr "Reunion"
  1050. #: src/Tribe/Languages/Locations.php:232
  1051. msgid "Qatar"
  1052. msgstr "Katar"
  1053. #: src/Tribe/Languages/Locations.php:231
  1054. msgid "Puerto Rico"
  1055. msgstr "Portoriko"
  1056. #: src/Tribe/Languages/Locations.php:230
  1057. msgid "Portugal"
  1058. msgstr "Portugalska"
  1059. #: src/Tribe/Languages/Locations.php:229
  1060. msgid "Poland"
  1061. msgstr "Poljska"
  1062. #: src/Tribe/Languages/Locations.php:228
  1063. msgid "Pitcairn"
  1064. msgstr "Pitcairn"
  1065. #: src/Tribe/Languages/Locations.php:227
  1066. msgid "Philippines"
  1067. msgstr "Filipini"
  1068. #: src/Tribe/Languages/Locations.php:226
  1069. msgid "Peru"
  1070. msgstr "Peru"
  1071. #: src/Tribe/Languages/Locations.php:225
  1072. msgid "Paraguay"
  1073. msgstr "Paragvaj"
  1074. #: src/Tribe/Languages/Locations.php:224
  1075. msgid "Papua New Guinea"
  1076. msgstr "Papua Nova Gvineja"
  1077. #: src/Tribe/Languages/Locations.php:223
  1078. msgid "Panama"
  1079. msgstr "Panama"
  1080. #: src/Tribe/Languages/Locations.php:222
  1081. msgid "Palau"
  1082. msgstr "Palau"
  1083. #: src/Tribe/Languages/Locations.php:221
  1084. msgid "Pakistan"
  1085. msgstr "Pakistan"
  1086. #: src/Tribe/Languages/Locations.php:220
  1087. msgid "Oman"
  1088. msgstr "Oman"
  1089. #: src/Tribe/Languages/Locations.php:219
  1090. msgid "Norway"
  1091. msgstr "Norveška"
  1092. #: src/Tribe/Languages/Locations.php:218
  1093. msgid "Northern Mariana Islands"
  1094. msgstr "Northern Mariana Islands"
  1095. #: src/Tribe/Languages/Locations.php:217
  1096. msgid "Norfolk Island"
  1097. msgstr "Norfolk Island"
  1098. #: src/Tribe/Languages/Locations.php:216
  1099. msgid "Niue"
  1100. msgstr "Niue"
  1101. #: src/Tribe/Languages/Locations.php:215
  1102. msgid "Nigeria"
  1103. msgstr "Nigerija"
  1104. #: src/Tribe/Languages/Locations.php:214
  1105. msgid "Niger"
  1106. msgstr "Niger"
  1107. #: src/Tribe/Languages/Locations.php:213
  1108. msgid "Nicaragua"
  1109. msgstr "Nikaragva"
  1110. #: src/Tribe/Languages/Locations.php:212
  1111. msgid "New Zealand"
  1112. msgstr "Nova Zelandija"
  1113. #: src/Tribe/Languages/Locations.php:211
  1114. msgid "New Caledonia"
  1115. msgstr "Nova Kalzedonija"
  1116. #: src/Tribe/Languages/Locations.php:210
  1117. msgid "Netherlands"
  1118. msgstr "Nizozemska"
  1119. #: src/Tribe/Languages/Locations.php:209
  1120. msgid "Nepal"
  1121. msgstr "Nepal"
  1122. #: src/Tribe/Languages/Locations.php:208
  1123. msgid "Nauru"
  1124. msgstr "Nauru"
  1125. #: src/Tribe/Languages/Locations.php:207
  1126. msgid "Namibia"
  1127. msgstr "Namibija"
  1128. #: src/Tribe/Languages/Locations.php:206
  1129. msgid "Myanmar"
  1130. msgstr "Mjanmar"
  1131. #: src/Tribe/Languages/Locations.php:205
  1132. msgid "Mozambique"
  1133. msgstr "Mozambik"
  1134. #: src/Tribe/Languages/Locations.php:204
  1135. msgid "Morocco"
  1136. msgstr "Maroko"
  1137. #: src/Tribe/Languages/Locations.php:203
  1138. msgid "Montserrat"
  1139. msgstr "Montserrat"
  1140. #: src/Tribe/Languages/Locations.php:202
  1141. msgid "Montenegro"
  1142. msgstr "Črna Gora"
  1143. #: src/Tribe/Languages/Locations.php:201
  1144. msgid "Mongolia"
  1145. msgstr "Mongolija"
  1146. #: src/Tribe/Languages/Locations.php:200
  1147. msgid "Monaco"
  1148. msgstr "Monako"
  1149. #: src/Tribe/Languages/Locations.php:199
  1150. msgid "Moldova, Republic of"
  1151. msgstr ""
  1152. #: src/Tribe/Languages/Locations.php:198
  1153. msgid "Micronesia, Federated States of"
  1154. msgstr ""
  1155. #: src/Tribe/Languages/Locations.php:197
  1156. msgid "Mexico"
  1157. msgstr "Mehika"
  1158. #: src/Tribe/Languages/Locations.php:196
  1159. msgid "Mayotte"
  1160. msgstr "Mayotte"
  1161. #: src/Tribe/Languages/Locations.php:195
  1162. msgid "Mauritius"
  1163. msgstr "Mavricius"
  1164. #: src/Tribe/Languages/Locations.php:194
  1165. msgid "Mauritania"
  1166. msgstr "Mavretanija"
  1167. #: src/Tribe/Languages/Locations.php:193
  1168. msgid "Martinique"
  1169. msgstr "Martinique"
  1170. #: src/Tribe/Languages/Locations.php:192
  1171. msgid "Marshall Islands"
  1172. msgstr "Marshallovi otoki"
  1173. #: src/Tribe/Languages/Locations.php:191
  1174. msgid "Malta"
  1175. msgstr "Malta"
  1176. #: src/Tribe/Languages/Locations.php:190
  1177. msgid "Mali"
  1178. msgstr "Mali"
  1179. #: src/Tribe/Languages/Locations.php:189
  1180. msgid "Maldives"
  1181. msgstr "Maldivi"
  1182. #: src/Tribe/Languages/Locations.php:188
  1183. msgid "Malaysia"
  1184. msgstr "Malezija"
  1185. #: src/Tribe/Languages/Locations.php:187
  1186. msgid "Malawi"
  1187. msgstr "Malavi"
  1188. #: src/Tribe/Languages/Locations.php:186
  1189. msgid "Madagascar"
  1190. msgstr "Madagaskar"
  1191. #: src/Tribe/Languages/Locations.php:185
  1192. msgid "Macedonia"
  1193. msgstr "Makedonija"
  1194. #: src/Tribe/Languages/Locations.php:184
  1195. msgid "Macau"
  1196. msgstr "Macau"
  1197. #: src/Tribe/Languages/Locations.php:183
  1198. msgid "Luxembourg"
  1199. msgstr "Luksemburg"
  1200. #: src/Tribe/Languages/Locations.php:182
  1201. msgid "Lithuania"
  1202. msgstr "Litva"
  1203. #: src/Tribe/Languages/Locations.php:181
  1204. msgid "Liechtenstein"
  1205. msgstr "Lihtenštajn"
  1206. #: src/Tribe/Languages/Locations.php:180
  1207. msgid "Libya"
  1208. msgstr "Libija"
  1209. #: src/Tribe/Languages/Locations.php:179
  1210. msgid "Liberia"
  1211. msgstr "Liberija"
  1212. #: src/Tribe/Languages/Locations.php:178
  1213. msgid "Lesotho"
  1214. msgstr "Lesoto"
  1215. #: src/Tribe/Languages/Locations.php:177
  1216. msgid "Lebanon"
  1217. msgstr "Libanon"
  1218. #: src/Tribe/Languages/Locations.php:176
  1219. msgid "Latvia"
  1220. msgstr "Latvija"
  1221. #: src/Tribe/Languages/Locations.php:175
  1222. msgid "Lao People's Democratic Republic"
  1223. msgstr "Laoška ljudska demokratična republika"
  1224. #: src/Tribe/Languages/Locations.php:174
  1225. msgid "Kyrgyzstan"
  1226. msgstr "Kirgizistan"
  1227. #: src/Tribe/Languages/Locations.php:173
  1228. msgid "Kuwait"
  1229. msgstr "Kuvajt"
  1230. #: src/Tribe/Languages/Locations.php:172
  1231. msgid "Korea, Republic of"
  1232. msgstr ""
  1233. #: src/Tribe/Languages/Locations.php:171
  1234. msgid "Korea, Democratic People's Republic of"
  1235. msgstr ""
  1236. #: src/Tribe/Languages/Locations.php:170
  1237. msgid "Kiribati"
  1238. msgstr "Kiribati"
  1239. #: src/Tribe/Languages/Locations.php:169
  1240. msgid "Kenya"
  1241. msgstr "Kenija"
  1242. #: src/Tribe/Languages/Locations.php:168
  1243. msgid "Kazakhstan"
  1244. msgstr "Kazakhstan"
  1245. #: src/Tribe/Languages/Locations.php:167
  1246. msgid "Jordan"
  1247. msgstr "Jordanija"
  1248. #: src/Tribe/Languages/Locations.php:166
  1249. msgid "Japan"
  1250. msgstr "Japonska"
  1251. #: src/Tribe/Languages/Locations.php:165
  1252. msgid "Jamaica"
  1253. msgstr "Jamajka"
  1254. #: src/Tribe/Languages/Locations.php:164
  1255. msgid "Italy"
  1256. msgstr "Italija"
  1257. #: src/Tribe/Languages/Locations.php:163
  1258. msgid "Israel"
  1259. msgstr "Izrael"
  1260. #: src/Tribe/Languages/Locations.php:162
  1261. msgid "Ireland"
  1262. msgstr "Irska"
  1263. #: src/Tribe/Languages/Locations.php:161
  1264. msgid "Iraq"
  1265. msgstr "Irak"
  1266. #: src/Tribe/Languages/Locations.php:160
  1267. msgid "Iran, Islamic Republic of"
  1268. msgstr ""
  1269. #: src/Tribe/Languages/Locations.php:159
  1270. msgid "Indonesia"
  1271. msgstr "Indonezija"
  1272. #: src/Tribe/Languages/Locations.php:158
  1273. msgid "India"
  1274. msgstr "Indija"
  1275. #: src/Tribe/Languages/Locations.php:157
  1276. msgid "Iceland"
  1277. msgstr "Islandija"
  1278. #: src/Tribe/Languages/Locations.php:156
  1279. msgid "Hungary"
  1280. msgstr "Madžarska"
  1281. #: src/Tribe/Languages/Locations.php:155
  1282. msgid "Hong Kong"
  1283. msgstr "Hong Kong"
  1284. #: src/Tribe/Languages/Locations.php:154
  1285. msgid "Honduras"
  1286. msgstr "Honduras"
  1287. #: src/Tribe/Languages/Locations.php:153
  1288. msgid "Holy See (Vatican City State)"
  1289. msgstr "Sveti sedež (Vatikanska mestna država)"
  1290. #: src/Tribe/Languages/Locations.php:152
  1291. msgid "Heard and McDonald Islands"
  1292. msgstr ""
  1293. #: src/Tribe/Languages/Locations.php:151
  1294. msgid "Haiti"
  1295. msgstr "Haiti"
  1296. #: src/Tribe/Languages/Locations.php:150
  1297. msgid "Guyana"
  1298. msgstr "Gvajana"
  1299. #: src/Tribe/Languages/Locations.php:149
  1300. msgid "Guinea-Bissau"
  1301. msgstr "Gvineja Bissau"
  1302. #: src/Tribe/Languages/Locations.php:148
  1303. msgid "Guinea"
  1304. msgstr "Gvineja"
  1305. #: src/Tribe/Languages/Locations.php:147
  1306. msgid "Guatemala"
  1307. msgstr "Gvatemala"
  1308. #: src/Tribe/Languages/Locations.php:146
  1309. msgid "Guam"
  1310. msgstr "Guam"
  1311. #: src/Tribe/Languages/Locations.php:145
  1312. msgid "Guadeloupe"
  1313. msgstr "Guadeloupe"
  1314. #: src/Tribe/Languages/Locations.php:144
  1315. msgid "Grenada"
  1316. msgstr "Grenada"
  1317. #: src/Tribe/Languages/Locations.php:143
  1318. msgid "Greenland"
  1319. msgstr "Grenlandija"
  1320. #: src/Tribe/Languages/Locations.php:142
  1321. msgid "Greece"
  1322. msgstr "Grčija"
  1323. #: src/Tribe/Languages/Locations.php:141
  1324. msgid "Gibraltar"
  1325. msgstr "Gibraltar"
  1326. #: src/Tribe/Languages/Locations.php:140
  1327. msgid "Ghana"
  1328. msgstr "Gana"
  1329. #: src/Tribe/Languages/Locations.php:139
  1330. msgid "Germany"
  1331. msgstr "Nemčija"
  1332. #: src/Tribe/Languages/Locations.php:138 src/Tribe/Languages/Locations.php:334
  1333. msgid "Georgia"
  1334. msgstr "Gruzija"
  1335. #: src/Tribe/Languages/Locations.php:137
  1336. msgid "Gambia"
  1337. msgstr "Gambija"
  1338. #: src/Tribe/Languages/Locations.php:136
  1339. msgid "Gabon"
  1340. msgstr "Gambon"
  1341. #: src/Tribe/Languages/Locations.php:135
  1342. msgid "French Southern Territories"
  1343. msgstr "Francoski južni teritoriji"
  1344. #: src/Tribe/Languages/Locations.php:134
  1345. msgid "French Polynesia"
  1346. msgstr "Francoska Polinezija"
  1347. #: src/Tribe/Languages/Locations.php:133
  1348. msgid "French Guiana"
  1349. msgstr "Francoska Guiana"
  1350. #: src/Tribe/Languages/Locations.php:132
  1351. msgid "France"
  1352. msgstr "Francija"
  1353. #: src/Tribe/Languages/Locations.php:131
  1354. msgid "Finland"
  1355. msgstr "Finska"
  1356. #: src/Tribe/Languages/Locations.php:130
  1357. msgid "Fiji"
  1358. msgstr "Fiji"
  1359. #: src/Tribe/Languages/Locations.php:129
  1360. msgid "Faroe Islands"
  1361. msgstr "Faroški otoki"
  1362. #: src/Tribe/Languages/Locations.php:128
  1363. msgid "Falkland Islands (Malvinas)"
  1364. msgstr "Falklandski otoki (Malvinas)"
  1365. #: src/Tribe/Languages/Locations.php:127
  1366. msgid "Ethiopia"
  1367. msgstr "Etipoija"
  1368. #: src/Tribe/Languages/Locations.php:126
  1369. msgid "Estonia"
  1370. msgstr "Estonija"
  1371. #: src/Tribe/Languages/Locations.php:125
  1372. msgid "Eritrea"
  1373. msgstr "Eritreja"
  1374. #: src/Tribe/Languages/Locations.php:124
  1375. msgid "Equatorial Guinea"
  1376. msgstr "Ekvatorialna Gvineja"
  1377. #: src/Tribe/Languages/Locations.php:123
  1378. msgid "El Salvador"
  1379. msgstr "El Salvador"
  1380. #: src/Tribe/Languages/Locations.php:122
  1381. msgid "Egypt"
  1382. msgstr "Egipt"
  1383. #: src/Tribe/Languages/Locations.php:121
  1384. msgid "Ecuador"
  1385. msgstr "Ekvador"
  1386. #: src/Tribe/Languages/Locations.php:120
  1387. msgid "East Timor"
  1388. msgstr "Zahodni Timor"
  1389. #: src/Tribe/Languages/Locations.php:119
  1390. msgid "Dominican Republic"
  1391. msgstr "Dominikanska republika"
  1392. #: src/Tribe/Languages/Locations.php:118
  1393. msgid "Dominica"
  1394. msgstr "Dominika"
  1395. #: src/Tribe/Languages/Locations.php:117
  1396. msgid "Djibouti"
  1397. msgstr "Djibouti"
  1398. #: src/Tribe/Languages/Locations.php:116
  1399. msgid "Denmark"
  1400. msgstr "Danska"
  1401. #: src/Tribe/Languages/Locations.php:115
  1402. msgid "Czech Republic"
  1403. msgstr "Republika Češka"
  1404. #: src/Tribe/Languages/Locations.php:114
  1405. msgid "Cyprus"
  1406. msgstr "Ciper"
  1407. #: src/Tribe/Languages/Locations.php:112
  1408. msgid "Cuba"
  1409. msgstr "Kuba"
  1410. #: src/Tribe/Languages/Locations.php:111
  1411. msgid "Croatia (Local Name: Hrvatska)"
  1412. msgstr "Hrvaška"
  1413. #: src/Tribe/Languages/Locations.php:109
  1414. msgid "Costa Rica"
  1415. msgstr "Kosta Rika"
  1416. #: src/Tribe/Languages/Locations.php:108
  1417. msgid "Cook Islands"
  1418. msgstr "Cookovi otoki"
  1419. #: src/Tribe/Languages/Locations.php:107
  1420. msgid "Congo, Democratic Republic of the"
  1421. msgstr ""
  1422. #: src/Tribe/Languages/Locations.php:106
  1423. msgid "Congo"
  1424. msgstr "Kongo"
  1425. #: src/Tribe/Languages/Locations.php:105
  1426. msgid "Comoros"
  1427. msgstr "Comoros"
  1428. #: src/Tribe/Languages/Locations.php:104
  1429. msgid "Colombia"
  1430. msgstr "Kolumbija"
  1431. #: src/Tribe/Languages/Locations.php:102
  1432. msgid "Cocos (Keeling) Islands"
  1433. msgstr "Cocos (Keeling) Islands"
  1434. #: src/Tribe/Languages/Locations.php:101
  1435. msgid "Christmas Island"
  1436. msgstr "Božični otoki"
  1437. #: src/Tribe/Languages/Locations.php:100
  1438. msgid "China"
  1439. msgstr "Kitajska"
  1440. #: src/Tribe/Languages/Locations.php:99
  1441. msgid "Chile"
  1442. msgstr "Čile"
  1443. #: src/Tribe/Languages/Locations.php:98
  1444. msgid "Chad"
  1445. msgstr "Čad"
  1446. #: src/Tribe/Languages/Locations.php:97
  1447. msgid "Central African Republic"
  1448. msgstr "Srednjeafriška republika"
  1449. #: src/Tribe/Languages/Locations.php:96
  1450. msgid "Cayman Islands"
  1451. msgstr "Kajmanski otoki"
  1452. #: src/Tribe/Languages/Locations.php:95
  1453. msgid "Cape Verde"
  1454. msgstr "Cape Verde"
  1455. #: src/Tribe/Languages/Locations.php:94
  1456. msgid "Canada"
  1457. msgstr "Kanada"
  1458. #: src/Tribe/Languages/Locations.php:93
  1459. msgid "Cameroon"
  1460. msgstr "Kamerun"
  1461. #: src/Tribe/Languages/Locations.php:92
  1462. msgid "Cambodia"
  1463. msgstr "Kambodža"
  1464. #: src/Tribe/Languages/Locations.php:91
  1465. msgid "Burundi"
  1466. msgstr "Burundi"
  1467. #: src/Tribe/Languages/Locations.php:90
  1468. msgid "Burkina Faso"
  1469. msgstr "Burkina Faso"
  1470. #: src/Tribe/Languages/Locations.php:89
  1471. msgid "Bulgaria"
  1472. msgstr "Bulgarija"
  1473. #: src/Tribe/Languages/Locations.php:88
  1474. msgid "Brunei Darussalam"
  1475. msgstr "Brunei Darussalam"
  1476. #: src/Tribe/Languages/Locations.php:87
  1477. msgid "British Indian Ocean Territory"
  1478. msgstr "Britansko-Indijski oceanski teritorij"
  1479. #: src/Tribe/Languages/Locations.php:86
  1480. msgid "Brazil"
  1481. msgstr "Brazilija"
  1482. #: src/Tribe/Languages/Locations.php:85
  1483. msgid "Bouvet Island"
  1484. msgstr "Bouveški otok"
  1485. #: src/Tribe/Languages/Locations.php:84
  1486. msgid "Botswana"
  1487. msgstr "Bocvana"
  1488. #: src/Tribe/Languages/Locations.php:83
  1489. msgid "Bosnia and Herzegowina"
  1490. msgstr ""
  1491. #: src/Tribe/Languages/Locations.php:82
  1492. msgid "Bolivia"
  1493. msgstr "Bolivija"
  1494. #: src/Tribe/Languages/Locations.php:81
  1495. msgid "Bhutan"
  1496. msgstr "Butan"
  1497. #: src/Tribe/Languages/Locations.php:80
  1498. msgid "Bermuda"
  1499. msgstr "Bermuda"
  1500. #: src/Tribe/Languages/Locations.php:79
  1501. msgid "Benin"
  1502. msgstr "Benin"
  1503. #: src/Tribe/Languages/Locations.php:78
  1504. msgid "Belize"
  1505. msgstr "Belize"
  1506. #: src/Tribe/Languages/Locations.php:77
  1507. msgid "Belgium"
  1508. msgstr "Belgija"
  1509. #: src/Tribe/Languages/Locations.php:76
  1510. msgid "Belarus"
  1511. msgstr "Belorusija"
  1512. #: src/Tribe/Languages/Locations.php:75
  1513. msgid "Barbados"
  1514. msgstr "Barbados"
  1515. #: src/Tribe/Languages/Locations.php:74
  1516. msgid "Bangladesh"
  1517. msgstr "Bangladeš"
  1518. #: src/Tribe/Languages/Locations.php:73
  1519. msgid "Bahrain"
  1520. msgstr "Bahrajn"
  1521. #: src/Tribe/Languages/Locations.php:72
  1522. msgid "Bahamas"
  1523. msgstr "Bahami"
  1524. #: src/Tribe/Languages/Locations.php:71
  1525. msgid "Azerbaijan"
  1526. msgstr "Azerbajdžan"
  1527. #: src/Tribe/Languages/Locations.php:70
  1528. msgid "Austria"
  1529. msgstr "Avstrija"
  1530. #: src/Tribe/Languages/Locations.php:69
  1531. msgid "Australia"
  1532. msgstr "Avstralija"
  1533. #: src/Tribe/Languages/Locations.php:68
  1534. msgid "Aruba"
  1535. msgstr "Aruba"
  1536. #: src/Tribe/Languages/Locations.php:67
  1537. msgid "Armenia"
  1538. msgstr "Armenija"
  1539. #: src/Tribe/Languages/Locations.php:66
  1540. msgid "Argentina"
  1541. msgstr "Argentina"
  1542. #: src/Tribe/Languages/Locations.php:65
  1543. msgid "Antigua and Barbuda"
  1544. msgstr ""
  1545. #: src/Tribe/Languages/Locations.php:64
  1546. msgid "Antarctica"
  1547. msgstr "Antarktika"
  1548. #: src/Tribe/Languages/Locations.php:63
  1549. msgid "Anguilla"
  1550. msgstr "Anguila"
  1551. #: src/Tribe/Languages/Locations.php:62
  1552. msgid "Angola"
  1553. msgstr "Anogla"
  1554. #: src/Tribe/Languages/Locations.php:61
  1555. msgid "Andorra"
  1556. msgstr "Andora"
  1557. #: src/Tribe/Languages/Locations.php:60
  1558. msgid "American Samoa"
  1559. msgstr "Ameriška Samoa"
  1560. #: src/Tribe/Languages/Locations.php:59
  1561. msgid "Algeria"
  1562. msgstr "Alžirija"
  1563. #: src/Tribe/Languages/Locations.php:58
  1564. msgid "Albania"
  1565. msgstr "Albanija"
  1566. #: src/Tribe/Languages/Locations.php:56
  1567. msgid "Afghanistan"
  1568. msgstr "Afganistan"
  1569. #: src/Tribe/View_Helpers.php:50
  1570. msgid "Select a Country:"
  1571. msgstr "Izberite državo:"
  1572. #: src/Tribe/Validate.php:514
  1573. msgid "Country List must be formatted as one country per line in the following format: <br>US, United States <br> UK, United Kingdom."
  1574. msgstr "Country List must be formatted as one country per line in the following format: <br>US, United States <br> UK, United Kingdom."
  1575. #: src/Tribe/Validate.php:498
  1576. msgid "%s must be a phone number."
  1577. msgstr "%s mora biti telefonska številka."
  1578. #: src/Tribe/Validate.php:484
  1579. msgid "%s must consist of 5 numbers."
  1580. msgstr "%s mora biti sestavljeno iz 5 številk."
  1581. #: src/Tribe/Validate.php:470
  1582. msgid "%s must consist of letters, spaces, apostrophes, and dashes."
  1583. msgstr "%s mora biti sestavljeno iz črk, presledkov, apostrofov in vezajev. "
  1584. #: src/Tribe/Validate.php:454
  1585. msgid "%s must consist of letters, numbers, dashes, apostrophes, and spaces only."
  1586. msgstr "%s lahko vseguje zgolj črke, številke, vezaje, apostrofe in presledke. "
  1587. #: src/Tribe/Validate.php:438
  1588. msgid "%s must be a number between 0 and 21."
  1589. msgstr "%s mora biti število med 0 in 21."
  1590. #: src/Tribe/Validate.php:384
  1591. msgid "%s must be a number or percentage."
  1592. msgstr "%s mora biti število ali procent."
  1593. #: src/Tribe/Validate.php:368
  1594. msgid "%s cannot be a duplicate"
  1595. msgstr "%s ne more biti duplikat"
  1596. #: src/Tribe/Validate.php:366
  1597. msgid "%s cannot be the same as %s."
  1598. msgstr "%s ne more biti enak kot %s. "
  1599. #: src/Tribe/Validate.php:359
  1600. msgid "Comparison validation failed because no comparison value was provided, for field %s"
  1601. msgstr "Primerjalno preverjanje ni uspelo, ker ni bilo podanih vrednosti za primerjavo, za polje %s"
  1602. #: src/Tribe/Validate.php:298 src/Tribe/Validate.php:310
  1603. #: src/Tribe/Validate.php:323 src/Tribe/Validate.php:345
  1604. msgid "%s must have a value that's part of its options."
  1605. msgstr "%s mora imeti vrednost, ki je del možnosti."
  1606. #: src/Tribe/Validate.php:282
  1607. msgid "%s must be a valid absolute URL."
  1608. msgstr "%s mora biti veljaven absolutni URL"
  1609. #: src/Tribe/Validate.php:267
  1610. msgid "%s must be a valid slug (numbers, letters, dashes, and underscores)."
  1611. msgstr "%s mora biti veljavni ključ (številke, črke, vezaji in podčrtaji)."
  1612. #: src/Tribe/Validate.php:200 src/Tribe/Validate.php:228
  1613. msgid "%s must be a positive number."
  1614. msgstr "%s mora biti pozitivno število."
  1615. #: src/Tribe/Validate.php:152
  1616. msgid "%s must contain numbers, letters and dots only"
  1617. msgstr "%s mora vsebovati številke, črke in pike"
  1618. #: src/Tribe/Validate.php:120 src/Tribe/Validate.php:136
  1619. msgid "%s must contain numbers and letters only"
  1620. msgstr "%s mora vsebovati zgolj številke in črke"
  1621. #: src/Tribe/Validate.php:105
  1622. msgctxt "non-existant function name passed for field validation"
  1623. msgid "with function name:"
  1624. msgstr "z funkcijskim imenom:"
  1625. #: src/Tribe/Validate.php:104
  1626. msgid "Non-existant field validation function passed"
  1627. msgstr "Neobstoječa validacijska funkcija podana"
  1628. #: src/Tribe/Validate.php:73 src/Tribe/Validate.php:85
  1629. #: src/Tribe/Validate.php:105
  1630. msgid "Field ID:"
  1631. msgstr "ID polja:"
  1632. #: src/Tribe/Validate.php:72 src/Tribe/Validate.php:84
  1633. msgid "Invalid or incomplete field passed"
  1634. msgstr "Neveljavno ali nedokončano polje podano"
  1635. #: src/Tribe/Support.php:188 src/Tribe/Support.php:189
  1636. msgid "Unknown or not set"
  1637. msgstr "Neznano ali nedoločeno"
  1638. #: src/admin-views/tribe-options-help.php:41
  1639. msgid "System Information"
  1640. msgstr "Sistemske informacije"
  1641. #: src/Tribe/Settings_Tab.php:222
  1642. msgid "There are no fields setup for this tab yet."
  1643. msgstr "Nobenih polj ni nastavljenih za ta zavihek."
  1644. #: src/Tribe/Settings.php:621
  1645. msgid "The above setting was not saved. Other settings were successfully saved."
  1646. msgid_plural "The above settings were not saved. Other settings were successfully saved."
  1647. msgstr[0] "Zgornja nastavitev ni bila shranjena. Ostale nastavitve so bile shranjene uspešno."
  1648. msgstr[1] "Zgornje nastavitve niso bile shranjene. Ostale nastavitve so bile shranjene uspešno."
  1649. msgstr[2] ""
  1650. msgstr[3] ""
  1651. #: src/Tribe/Settings.php:620
  1652. msgid "None of your settings were saved. Please try again."
  1653. msgstr "Nobena od vaših nastavitev ni bila shranjena. Prosim poizkusite znova."
  1654. #: src/Tribe/Settings.php:610
  1655. msgid "Your form had the following errors:"
  1656. msgstr "Vaš obrazec ima naslednje napake"
  1657. #: src/Tribe/Settings.php:431
  1658. msgid "The request wasn't sent from this tab."
  1659. msgstr "Ukaz ni bil poslan iz tega zavihka."
  1660. #: src/Tribe/Settings.php:425
  1661. msgid "The request was sent insecurely."
  1662. msgstr "Ukaz je bil poslan nezavarovano."
  1663. #: src/Tribe/Settings.php:419
  1664. msgid "You don't have permission to do that."
  1665. msgstr "Nimate dovoljenja za ta ukaz."
  1666. #: src/Tribe/Settings.php:363
  1667. msgid "You've requested a non-existent tab."
  1668. msgstr "Zahtevali ste neobstoječ zavihek."
  1669. #: src/Tribe/Settings.php:349
  1670. msgid "%s Settings"
  1671. msgstr "%s nastavitve"
  1672. #: src/Tribe/Settings.php:253 src/Tribe/Settings.php:273
  1673. msgid "Events Settings"
  1674. msgstr "Nastavitve dogodkov"
  1675. #: src/Tribe/PUE/Checker.php:888
  1676. msgid "Hmmm... something's wrong with this validator. Please contact %ssupport%s."
  1677. msgstr ""
  1678. #: src/Tribe/PUE/Checker.php:927
  1679. msgid "Valid Key! Expires on %s"
  1680. msgstr "Veljaven ključ! Poteče %s"
  1681. #: src/Tribe/PUE/Checker.php:907
  1682. msgid "Sorry, key validation server is not available."
  1683. msgstr "Oprostite, strežnik za preverjanje ključa ni na voljo. "
  1684. #: src/Tribe/PUE/Checker.php:650
  1685. msgid "License key(s) updated."
  1686. msgstr "Licenčni ključ(i) posodobljen. "
  1687. #: src/Tribe/PUE/Checker.php:494
  1688. msgid "A valid license key is required for support and updates"
  1689. msgstr "Veljaven licenčni ključ je potreben za podporo in posodobitve."
  1690. #: src/Tribe/PUE/Checker.php:509 src/Tribe/PUE/Checker.php:520
  1691. msgid "License Key"
  1692. msgstr "Licenčni ključ"
  1693. #: src/Tribe/Main.php:247
  1694. msgid "Search:"
  1695. msgstr ""
  1696. #: src/Tribe/Settings.php:254
  1697. msgid "Settings"
  1698. msgstr "Nastavitve"
  1699. #: src/Tribe/Settings_Manager.php:219
  1700. msgid "Network"
  1701. msgstr "Omrežje"
  1702. #: src/Tribe/Main.php:272
  1703. msgid "Done"
  1704. msgstr "Opravljeno"
  1705. #: src/Tribe/Main.php:271
  1706. msgid "Today"
  1707. msgstr "Danes"
  1708. #: src/Tribe/Main.php:270
  1709. msgid "Prev"
  1710. msgstr "Prejšnji"
  1711. #: src/Tribe/Main.php:253 src/Tribe/Main.php:269
  1712. msgid "Next"
  1713. msgstr "Naslednji"
  1714. #: src/Tribe/Settings_Manager.php:279
  1715. msgid "Help"
  1716. msgstr "Pomoč"
  1717. #: src/Tribe/Settings_Manager.php:55
  1718. msgid "Display"
  1719. msgstr "Pogled"
  1720. #: src/Tribe/Settings_Manager.php:253
  1721. #: src/admin-views/tribe-options-licenses.php:66
  1722. msgid "Licenses"
  1723. msgstr "Licence"
  1724. #: src/Tribe/Admin/Help_Page.php:59 src/Tribe/Customizer.php:569
  1725. #: src/Tribe/Plugins_API.php:25
  1726. msgid "The Events Calendar"
  1727. msgstr "The Events Calendar"
  1728. #: src/Tribe/Settings.php:177 src/Tribe/Settings.php:241
  1729. #: src/Tribe/Settings.php:242
  1730. msgid "Events"
  1731. msgstr "Dogodki"
  1732. #: src/Tribe/Settings.php:643
  1733. msgid "Settings saved."
  1734. msgstr "Nastavitve shranjene."
  1735. #: src/Tribe/Settings_Manager.php:54
  1736. msgid "General"
  1737. msgstr "Splošno"
  1738. #: src/Tribe/Field.php:626
  1739. msgid "No select options specified"
  1740. msgstr "Nobenih določenih opcij. "
  1741. #: src/Tribe/Field.php:568
  1742. msgid "No checkbox options specified"
  1743. msgstr "Ni označenih 'checkbox options'"
  1744. #: src/Tribe/Field.php:532
  1745. msgid "No radio options specified"
  1746. msgstr "Ni označenih 'radio options'"
  1747. #: src/Tribe/Field.php:231
  1748. msgid "Invalid field type specified"
  1749. msgstr "Nepravilen tip polja"
  1750. #: src/Tribe/Credits.php:31
  1751. msgid "This calendar is powered by The Events Calendar."
  1752. msgstr ""
  1753. #: src/Tribe/App_Shop.php:50 src/Tribe/App_Shop.php:51
  1754. #: src/Tribe/App_Shop.php:72
  1755. msgid "Event Add-Ons"
  1756. msgstr "Dodatki za dogodke"
  1757. #: src/Tribe/Languages/Locations.php:55
  1758. msgid "United States"
  1759. msgstr "Združene države"