| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331 |
- # Translation of Tribe Common in Slovenian
- # This file is distributed under the same license as the Tribe Common package.
- msgid ""
- msgstr ""
- "PO-Revision-Date: 2015-12-02 19:08:14+0000\n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
- "Content-Transfer-Encoding: 8bit\n"
- "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
- "X-Generator: GlotPress/2.3.1\n"
- "Language: sl_SI\n"
- "Project-Id-Version: Tribe Common\n"
- #: vendor/a5hleyrich/wp-background-processing/classes/wp-background-process.php:425
- msgid "Every %d Minutes"
- msgstr ""
- #: src/admin-views/tribe-options-help.php:33
- msgid "Search our support help desk"
- msgstr ""
- #: src/Tribe/Plugins_API.php:71
- 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."
- msgstr ""
- #: src/Tribe/Validate.php:184
- msgid "%s must not be empty"
- msgstr ""
- #: src/Tribe/Validate.php:545
- msgid "%s must be an email address."
- msgstr ""
- #: src/Tribe/Languages/Locations.php:252
- msgid "Sint Maarten"
- msgstr ""
- #: src/Tribe/Languages/Locations.php:245
- msgid "São Tomé and Príncipe"
- msgstr ""
- #: src/Tribe/Languages/Locations.php:238
- msgid "Saint Helena"
- msgstr ""
- #: src/Tribe/Languages/Locations.php:237
- msgid "Saint Barthélemy"
- msgstr ""
- #: src/Tribe/Languages/Locations.php:113
- msgid "Curaçao"
- msgstr ""
- #: src/Tribe/Languages/Locations.php:103
- msgid "Collectivity of Saint Martin"
- msgstr ""
- #: src/Tribe/Languages/Locations.php:57
- msgid "Åland Islands"
- msgstr ""
- #: src/admin-views/tribe-options-help.php:20
- msgid "Check out our %s for developers."
- msgstr ""
- #: src/admin-views/tribe-options-help.php:18
- msgid "Want to dive deeper?"
- msgstr ""
- #: src/admin-views/tribe-options-display.php:28
- 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>."
- msgstr ""
- #: src/Tribe/Documentation/Swagger/Term_Definition_Provider.php:57
- msgid "A list of links to the term own, archive and parent REST URL"
- msgstr ""
- #: src/Tribe/Main.php:250
- msgid "Clear Selection."
- msgstr ""
- #: src/Tribe/Main.php:249
- msgid "Select all pages"
- msgstr ""
- #: src/Tribe/Main.php:248
- msgid "All items on this page were selected. "
- msgstr ""
- #: src/Tribe/Plugins_API.php:94
- 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."
- msgstr ""
- #: src/Tribe/Plugins_API.php:37
- 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."
- msgstr ""
- #: src/Tribe/Ajax/Dropdown.php:243
- msgid "The \"%s\" source is invalid and cannot be reached on \"%s\" instance."
- msgstr ""
- #: src/Tribe/Ajax/Dropdown.php:193
- msgid "Empty data set for this dropdown"
- msgstr ""
- #: src/Tribe/Ajax/Dropdown.php:180
- msgid "Missing data source for this dropdown"
- msgstr ""
- #: src/Tribe/Ajax/Dropdown.php:38
- msgid "Cannot look for Terms without a taxonomy"
- msgstr ""
- #: src/Tribe/Plugins_API.php:60
- 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."
- msgstr ""
- #: src/Tribe/Plugins_API.php:28
- 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."
- msgstr ""
- #: src/Tribe/PUE/Checker.php:1095
- msgid "There is a new version of %1$s available. %2$s"
- msgstr ""
- #: src/Tribe/PUE/Checker.php:1084
- msgid "Update now to version %s."
- msgstr ""
- #: src/Tribe/PUE/Notices.php:340
- msgid "You can always check the status of your licenses by logging in to %1$syour account on theeventscalendar.com%2$s."
- msgstr ""
- #: src/Tribe/PUE/Notices.php:225
- 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."
- 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."
- msgstr[0] ""
- msgstr[1] ""
- msgstr[2] ""
- msgstr[3] ""
- #: src/Tribe/PUE/Checker.php:976
- msgid "Please refresh the page and try your request again."
- msgstr ""
- #: src/Tribe/Plugins_API.php:129
- 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."
- msgstr ""
- #: src/Tribe/Plugins_API.php:125
- msgid "Image Widget Plus"
- msgstr ""
- #: src/Tribe/Documentation/Swagger/Term_Definition_Provider.php:52
- msgid "The URL to the term archive page"
- msgstr ""
- #: src/Tribe/Documentation/Swagger/Term_Definition_Provider.php:48
- msgid "The number of posts associated with the term"
- msgstr ""
- #: src/Tribe/Documentation/Swagger/Term_Definition_Provider.php:44
- msgid "The term parent term if any"
- msgstr ""
- #: src/Tribe/Documentation/Swagger/Term_Definition_Provider.php:40
- msgid "The term description"
- msgstr ""
- #: src/Tribe/Documentation/Swagger/Term_Definition_Provider.php:36
- msgid "The taxonomy the term belongs to"
- msgstr ""
- #: src/Tribe/Documentation/Swagger/Term_Definition_Provider.php:32
- msgid "The term slug"
- msgstr ""
- #: src/Tribe/Documentation/Swagger/Term_Definition_Provider.php:28
- msgid "The term name"
- msgstr ""
- #: src/Tribe/Documentation/Swagger/Term_Definition_Provider.php:24
- msgid "The WordPress term ID"
- msgstr ""
- #: src/Tribe/Documentation/Swagger/Image_Size_Definition_Provider.php:36
- msgid "The link to the image in the specified size on the site"
- msgstr ""
- #: src/Tribe/Documentation/Swagger/Image_Size_Definition_Provider.php:32
- msgid "The image mime-type"
- msgstr ""
- #: src/Tribe/Documentation/Swagger/Image_Size_Definition_Provider.php:28
- msgid "The image height in pixels in the specified size"
- msgstr ""
- #: src/Tribe/Documentation/Swagger/Image_Size_Definition_Provider.php:24
- msgid "The image width in pixels in the specified size"
- msgstr ""
- #: src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:44
- msgid "The details about each size available for the image"
- msgstr ""
- #: src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:40
- msgid "The image natural height in pixels"
- msgstr ""
- #: src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:36
- msgid "The image natural width in pixels"
- msgstr ""
- #: src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:32
- msgid "The image file extension"
- msgstr ""
- #: src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:28
- msgid "The image WordPress post ID"
- msgstr ""
- #: src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:24
- msgid "The URL to the full size version of the image"
- msgstr ""
- #: src/Tribe/Documentation/Swagger/Date_Details_Definition_Provider.php:44
- msgid "The date seconds"
- msgstr ""
- #: src/Tribe/Documentation/Swagger/Date_Details_Definition_Provider.php:40
- msgid "The date minutes"
- msgstr ""
- #: src/Tribe/Documentation/Swagger/Date_Details_Definition_Provider.php:36
- msgid "The date hour"
- msgstr ""
- #: src/Tribe/Documentation/Swagger/Date_Details_Definition_Provider.php:32
- msgid "The date day"
- msgstr ""
- #: src/Tribe/Documentation/Swagger/Date_Details_Definition_Provider.php:28
- msgid "The date month"
- msgstr ""
- #: src/Tribe/Documentation/Swagger/Date_Details_Definition_Provider.php:24
- msgid "The date year"
- msgstr ""
- #: src/Tribe/Documentation/Swagger/Cost_Details_Definition_Provider.php:34
- msgid "A sorted array of all the numeric values for the cost"
- msgstr ""
- #: src/Tribe/Documentation/Swagger/Cost_Details_Definition_Provider.php:28
- msgid "The position of the currency symbol in the cost string"
- msgstr ""
- #: src/Tribe/Documentation/Swagger/Cost_Details_Definition_Provider.php:24
- msgid "The cost currency symbol"
- msgstr ""
- #: src/Tribe/PUE/Checker.php:497
- msgid "%1$sBuy a license%2$s for the Event Aggregator service to access additional import features."
- msgstr ""
- #: src/Tribe/Validate.php:248
- msgid "%s must be a whole number."
- msgstr ""
- #: src/Tribe/Settings.php:281 src/Tribe/Settings.php:282
- msgid "Events Help"
- msgstr ""
- #: src/Tribe/PUE/Checker.php:1670
- msgid "Expired license. Consult your network administrator."
- msgstr ""
- #: src/Tribe/PUE/Checker.php:1669
- msgid "No license entered. Consult your network administrator."
- msgstr ""
- #: src/Tribe/PUE/Checker.php:1668
- msgid "A valid license has been entered by your network administrator."
- msgstr ""
- #: src/Tribe/PUE/Checker.php:550
- msgid "Site License Key"
- msgstr ""
- #: src/Tribe/PUE/Checker.php:539
- msgid "Check this box if you wish to override the network license key with your own"
- msgstr ""
- #: src/Tribe/PUE/Checker.php:538
- msgid "Override network license key"
- msgstr ""
- #: src/Tribe/PUE/Checker.php:529 src/Tribe/PUE/Checker.php:563
- msgid "License Key Status:"
- msgstr ""
- #: src/Tribe/Customizer.php:570
- msgid "Use the following panel of your customizer to change the styling of your Calendar and Event pages."
- msgstr ""
- #: src/Tribe/Extension.php:368
- 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."
- msgstr ""
- #: src/Tribe/Extension.php:144
- msgid "Tutorial"
- msgstr ""
- #: src/admin-views/app-shop.php:31
- msgid "Installed"
- msgstr ""
- #: src/admin-views/app-shop.php:29
- msgid "Installed Add-Ons"
- msgstr ""
- #: src/Tribe/Admin/Notice/Plugin_Download.php:92
- msgctxt "the final separator in a list of two or more items"
- msgid " and "
- msgstr ""
- #: src/Tribe/Admin/Notice/Plugin_Download.php:91
- msgctxt "separator used in a list of items"
- msgid ", "
- msgstr ""
- #: src/admin-views/tribe-options-help.php:55
- msgid "Event Log"
- msgstr ""
- #: src/admin-views/tribe-options-help.php:42
- 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."
- msgstr ""
- #: src/admin-views/app-shop.php:26
- msgid "Buy This Add-On"
- msgstr ""
- #: src/admin-views/app-shop.php:5
- msgid "Browse All Add-Ons"
- msgstr ""
- #: src/admin-views/app-shop.php:4
- msgid "Events Add-Ons"
- msgstr ""
- #: src/Tribe/PUE/Notices.php:383
- msgctxt "formatted plugin list"
- msgid "%1$s and %2$s"
- msgstr ""
- #: src/Tribe/PUE/Notices.php:302
- 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."
- 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."
- msgstr[0] ""
- msgstr[1] ""
- msgstr[2] ""
- msgstr[3] ""
- #: src/Tribe/PUE/Notices.php:270
- 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"
- 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"
- msgstr[0] ""
- msgstr[1] ""
- msgstr[2] ""
- msgstr[3] ""
- #: src/Tribe/PUE/Checker.php:1054
- msgid "There is an update for %s. %sRenew your license%s to get access to bug fixes, security updates, and new features."
- msgstr ""
- #: src/Tribe/PUE/Checker.php:997
- msgid "There is an update for %s. You'll need to %scheck your license%s to have access to updates, downloads, and support."
- msgstr ""
- #: src/Tribe/Admin/Help_Page.php:219 src/Tribe/Plugins_API.php:34
- msgid "Event Aggregator"
- msgstr ""
- #: src/Tribe/Admin/Notice/Plugin_Download.php:75
- msgid "To begin using %1$s, please install and activate the latest version of %2$s."
- msgstr ""
- #: src/admin-views/tribe-options-licenses.php:30
- msgid "Not seeing an update but expecting one? In WordPress, go to %1$sDashboard > Updates%2$s and click \"Check Again\"."
- msgstr ""
- #: src/admin-views/tribe-options-licenses.php:25
- 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."
- msgstr ""
- #: src/admin-views/tribe-options-licenses.php:22
- 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."
- msgstr ""
- #: src/admin-views/tribe-options-licenses.php:15
- 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."
- msgstr ""
- #: src/admin-views/tribe-options-licenses.php:11
- #: src/admin-views/tribe-options-licenses.php:16
- msgid " (opens in new window)"
- msgstr ""
- #: src/Tribe/Languages/Locations.php:110
- msgid "Côte d'Ivoire"
- msgstr ""
- #: src/Tribe/Support.php:372
- msgid "Unique System Info Key Generated"
- msgstr ""
- #: src/Tribe/Support.php:358 src/Tribe/Support.php:384
- msgid "Permission Error"
- msgstr ""
- #: src/Tribe/Support.php:325 src/Tribe/Support.php:330
- msgid "Invalid Key"
- msgstr ""
- #: src/Tribe/Support.php:306
- 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."
- msgstr ""
- #: src/Tribe/Support.php:305
- msgid "Yes, automatically share my system information with the Modern Tribe support team"
- msgstr ""
- #: src/Tribe/Support.php:171
- msgid "English"
- msgstr ""
- #: src/Tribe/PUE/Checker.php:961 src/Tribe/PUE/Notices.php:285
- msgid " (opens in a new window)"
- msgstr ""
- #: src/Tribe/PUE/Checker.php:959 src/Tribe/PUE/Notices.php:283
- msgid "Renew Your License Now"
- msgstr ""
- #: src/Tribe/Main.php:260
- msgid ": Selected 1 row"
- msgstr ""
- #: src/Tribe/Main.php:259
- msgid ": Selected %d rows"
- msgstr ""
- #: src/Tribe/Main.php:254
- msgid "Previous"
- msgstr ""
- #: src/Tribe/Main.php:252
- msgid "All"
- msgstr ""
- #: src/Tribe/Main.php:246
- msgid "No matching records found"
- msgstr ""
- #: src/Tribe/Main.php:245
- msgid "(filtered from _MAX_ total entries)"
- msgstr ""
- #: src/Tribe/Main.php:244
- msgid "Showing 0 to 0 of 0 entries"
- msgstr ""
- #: src/Tribe/Main.php:243
- msgid "Showing _START_ to _END_ of _TOTAL_ entries"
- msgstr ""
- #: src/Tribe/Main.php:242
- msgid "No data available in table"
- msgstr ""
- #: src/Tribe/Main.php:241
- msgid "Show _MENU_ entries"
- msgstr ""
- #: src/Tribe/Main.php:239
- msgid ": activate to sort column descending"
- msgstr ""
- #: src/Tribe/Main.php:238
- msgid ": activate to sort column ascending"
- msgstr ""
- #: src/Tribe/Main.php:280
- msgid "Press \"Cmd + C\" to copy"
- msgstr ""
- #: src/Tribe/Main.php:279
- msgid "System info copied"
- msgstr ""
- #: src/Tribe/Main.php:278 src/admin-views/tribe-options-help.php:50
- msgid "Copy to clipboard"
- msgstr ""
- #: src/Tribe/Error.php:38
- msgid "An Unknown error occurred"
- msgstr ""
- #: src/Tribe/Plugins_API.php:116
- 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."
- msgstr ""
- #: src/Tribe/Plugins_API.php:105
- msgctxt "Names of required plugins for Community Tickets"
- msgid "Event Tickets Plus and Community Events"
- msgstr ""
- #: src/Tribe/Plugins_API.php:104
- 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"
- msgstr ""
- #: src/Tribe/Plugins_API.php:48
- 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."
- msgstr ""
- #: src/Tribe/Plugins_API.php:84
- 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."
- msgstr ""
- #: src/Tribe/Admin/Help_Page.php:227 src/Tribe/Plugins_API.php:80
- msgid "Filter Bar"
- msgstr ""
- #: src/Tribe/Credits.php:64
- msgid "Rate %1$sEvent Tickets%2$s %3$s"
- msgstr ""
- #: src/Tribe/Credits.php:55
- msgid "Rate %1$sThe Events Calendar%2$s %3$s"
- msgstr ""
- #: src/Tribe/Log/Null_Logger.php:26
- msgid "Null logger (will log nothing)"
- msgstr ""
- #: src/admin-views/event-log.php:117
- msgid "Download log"
- msgstr ""
- #: src/admin-views/event-log.php:100
- msgid "The selected log file is empty or has not been generated yet."
- msgstr ""
- #: src/admin-views/event-log.php:43
- msgid "Method"
- msgstr ""
- #: src/admin-views/event-log.php:21
- msgid "Logging level"
- msgstr ""
- #: src/Tribe/Validate.php:168
- msgid "%s must contain numbers, letters, dashes and undescores only"
- msgstr ""
- #: src/Tribe/Log.php:376
- msgid "Full debug (all events)"
- msgstr ""
- #: src/Tribe/Log.php:375
- msgid "Warnings and errors"
- msgstr ""
- #: src/Tribe/Log.php:374
- msgid "Only errors"
- msgstr ""
- #: src/Tribe/Log.php:373
- msgid "Disabled"
- msgstr ""
- #: src/Tribe/Log.php:274
- msgid "Cannot set %s as the current logging engine"
- msgstr ""
- #: src/Tribe/Log/File_Logger.php:128
- msgid "Default (uses temporary files)"
- msgstr ""
- #: src/Tribe/Log/Admin.php:148
- msgctxt "log engines"
- msgid "None currently available"
- msgstr ""
- #: src/Tribe/Log/Admin.php:133
- msgctxt "log selector"
- msgid "None currently available"
- msgstr ""
- #: src/admin-views/tribe-options-help.php:52
- msgid "Recent Template Changes"
- msgstr ""
- #: src/Tribe/Support/Template_Checker_Report.php:115
- msgid "Information about recent template changes and potentially impacted template overrides is provided below."
- msgstr ""
- #: src/Tribe/Support/Template_Checker_Report.php:113
- msgid "No notable template changes detected."
- msgstr ""
- #: src/Tribe/Support/Template_Checker_Report.php:97
- msgid "based on %s version"
- msgstr ""
- #: src/Tribe/Support/Template_Checker_Report.php:96
- msgid "version data missing from override"
- msgstr ""
- #: src/Tribe/Support/Template_Checker_Report.php:92
- msgid "Existing theme overrides that may need revision:"
- msgstr ""
- #: src/Tribe/Support/Template_Checker_Report.php:82
- msgid "Templates introduced or updated with this release (%s):"
- msgstr ""
- #: src/Tribe/Support/Template_Checker_Report.php:78
- msgid "No notable changes detected"
- msgstr ""
- #. Description of the plugin/theme
- msgid "An event settings framework for managing shared options"
- msgstr ""
- #. Plugin Name of the plugin/theme
- msgid "Tribe Common"
- msgstr ""
- #: src/admin-views/tribe-options-licenses.php:47
- msgid "Only license fields for %1$snetwork activated%2$s plugins will be listed on this screen. "
- msgstr ""
- #: src/admin-views/tribe-options-help.php:38
- msgid "Read more about our support policy"
- msgstr ""
- #: src/admin-views/tribe-options-help.php:30
- 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 "
- msgstr ""
- #: src/admin-views/tribe-options-help.php:33
- 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."
- msgstr ""
- #: src/admin-views/tribe-options-help.php:32
- msgid "Test for a theme or plugin conflict"
- msgstr ""
- #: src/admin-views/tribe-options-help.php:32
- 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."
- msgstr ""
- #: src/admin-views/tribe-options-help.php:31
- msgid "Check our Knowledgebase"
- msgstr ""
- #: src/admin-views/tribe-options-help.php:31
- 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!"
- msgstr ""
- #: src/admin-views/tribe-options-help.php:27
- 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:"
- msgstr ""
- #: src/admin-views/tribe-options-help.php:26
- msgid "Getting More Help"
- msgstr ""
- #: src/admin-views/tribe-options-help.php:21
- msgid "list of available functions"
- msgstr ""
- #: src/admin-views/tribe-options-help.php:15
- msgid "Knowledgebase"
- msgstr ""
- #: src/admin-views/tribe-options-help.php:15
- msgid "Our website’s %s is a great place to find tips and tricks for using and customizing our plugins."
- msgstr ""
- #: src/admin-views/tribe-options-help.php:14
- msgid "Getting Support"
- msgstr ""
- #: src/admin-views/tribe-options-help.php:11
- 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."
- msgstr ""
- #: src/admin-views/tribe-options-general.php:15
- 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."
- msgstr ""
- #: src/admin-views/tribe-options-general.php:10
- 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."
- msgstr ""
- #: src/Tribe/Validate.php:214
- msgid "%s must be a positive number or percent."
- msgstr ""
- #: src/Tribe/PUE/Checker.php:932
- msgid "Thanks for setting up a valid key. It will expire on %s"
- msgstr ""
- #: src/Tribe/Admin/Help_Page.php:860
- msgid "Visit the Add-on Page"
- msgstr ""
- #: src/Tribe/Admin/Help_Page.php:855
- msgid "Plugin Inactive"
- msgstr ""
- #: src/Tribe/Admin/Help_Page.php:853
- msgid "Plugin Active"
- msgstr ""
- #: src/Tribe/Admin/Help_Page.php:828
- msgid "Rating:"
- msgstr ""
- #: src/Tribe/Admin/Help_Page.php:825
- msgid "Active Users:"
- msgstr ""
- #: src/Tribe/Admin/Help_Page.php:802
- msgid "Install Plugin"
- msgstr ""
- #: src/Tribe/Admin/Help_Page.php:802
- msgid "Install %s"
- msgstr ""
- #: src/Tribe/Admin/Help_Page.php:786
- msgid "Upgrade Plugin"
- msgstr ""
- #: src/Tribe/Admin/Help_Page.php:778
- msgid "Activate Plugin"
- msgstr ""
- #: src/Tribe/Admin/Help_Page.php:778
- msgid "Activate %s"
- msgstr ""
- #: src/Tribe/Admin/Help_Page.php:244 src/Tribe/Plugins_API.php:100
- msgid "Community Tickets"
- msgstr ""
- #: src/Tribe/Admin/Help_Page.php:235 src/Tribe/Plugins_API.php:66
- msgid "Event Tickets Plus"
- msgstr ""
- #: src/Tribe/Admin/Help_Page.php:203 src/Tribe/Plugins_API.php:111
- msgid "Eventbrite Tickets"
- msgstr ""
- #: src/Tribe/Admin/Help_Page.php:170
- msgid " and "
- msgstr "in"
- #: src/Tribe/Admin/Help_Page.php:95
- msgid "Turbo charge your posts admin for any custom post type with sortable filters and columns, and auto-registration of metaboxes."
- msgstr ""
- #: src/Tribe/Admin/Help_Page.php:91
- msgid "Advanced Post Manager"
- msgstr ""
- #: src/Tribe/Admin/Help_Page.php:79
- msgid "Events Tickets is a carefully crafted, extensible plugin that lets you easily sell tickets for your events."
- msgstr ""
- #: src/Tribe/Admin/Help_Page.php:75 src/Tribe/Plugins_API.php:57
- msgid "Event Tickets"
- msgstr ""
- #: src/Tribe/Admin/Help_Page.php:63
- msgid "The Events Calendar is a carefully crafted, extensible plugin that lets you easily share your events."
- msgstr ""
- #. Author URI of the plugin/theme
- msgid "http://m.tri.be/1x"
- msgstr ""
- #. Author of the plugin/theme
- msgid "Modern Tribe, Inc."
- msgstr "Modern Tribe, Inc."
- #: src/Tribe/Settings.php:371
- msgid "Save Changes"
- msgstr ""
- #: src/admin-views/tribe-options-licenses.php:38
- 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."
- msgstr ""
- #: src/Tribe/Support.php:199
- 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!"
- msgstr ""
- #: src/Tribe/PUE/Checker.php:901
- msgid "unknown date"
- msgstr "Neznani datum"
- #: src/Tribe/Admin/Activation_Page.php:92
- msgid "Return to WordPress Updates"
- msgstr "Vrni se na stran za nadgradnjo Wordpressa"
- #: src/Tribe/Admin/Activation_Page.php:92
- msgid "Go to WordPress Updates page"
- msgstr "Pojdi na stran za nadgradnjo WordPressa"
- #: src/Tribe/Admin/Activation_Page.php:84
- msgid "Return to Plugins page"
- msgstr "Vrni se na stran z vtičniki"
- #: src/Tribe/Admin/Activation_Page.php:84
- msgid "Go to plugins page"
- msgstr "Pojdi na stran z vtičniki"
- #: src/Tribe/Cost_Utils.php:114
- msgid "Free"
- msgstr "Zastonj"
- #: src/admin-views/tribe-options-network.php:27
- msgid "Hide the following settings tabs on every site:"
- msgstr "Skrijte naslednje zavihke nastavitev na vsaki strani "
- #: src/admin-views/tribe-options-network.php:19
- msgid "This is where all of the global network settings for Modern Tribe's The Events Calendar can be modified."
- msgstr "Tukaj lahko spreminjate vse globalne nastavitve za Modern Tribe's The Events Calendar. "
- #: src/admin-views/tribe-options-network.php:15
- msgid "Network Settings"
- msgstr "Nastavitve omrežja"
- #: src/admin-views/tribe-options-help.php:74
- msgid "News and Tutorials"
- msgstr "Novice in vodiči"
- #: src/Tribe/Admin/Help_Page.php:847
- msgid "Premium Add-Ons"
- msgstr "Premium dodatki"
- #: src/Tribe/Admin/Help_Page.php:823
- msgid "WordPress "
- msgstr "WordPress"
- #: src/Tribe/Admin/Help_Page.php:822 src/admin-views/app-shop.php:77
- msgid "Requires:"
- msgstr "Zahteva:"
- #: src/Tribe/Admin/Help_Page.php:819
- msgid "Latest Version:"
- msgstr "Zadnja različica:"
- #: src/admin-views/tribe-options-help.php:80
- msgid "More..."
- msgstr "Več ..."
- #: src/Tribe/Admin/Help_Page.php:194 src/Tribe/Plugins_API.php:43
- msgid "Events Calendar PRO"
- msgstr ""
- #: src/Tribe/Admin/Help_Page.php:413 src/Tribe/Admin/Help_Page.php:788
- msgid "You are up to date!"
- msgstr "Imate trenutno različico!"
- #: src/Tribe/Admin/Help_Page.php:413
- msgid "You need to upgrade!"
- msgstr "Čaka vas posodobitev!"
- #: src/Tribe/Admin/Help_Page.php:405
- msgctxt "not available"
- msgid "n/a"
- msgstr "n/a"
- #: src/admin-views/tribe-options-general.php:59
- msgid "Debug Bar Plugin"
- msgstr "Debug Bar vtičnik "
- #: src/admin-views/tribe-options-general.php:59
- 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."
- 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. "
- #: src/admin-views/tribe-options-general.php:53
- msgid "Debug mode"
- msgstr "Debug način"
- #: src/admin-views/tribe-options-general.php:35
- msgid "Show The Events Calendar link"
- msgstr "Prikaži The Events Calendar povezavo"
- #: src/admin-views/tribe-options-general.php:30
- msgid "See an example of the link"
- msgstr "Poglejte si primer povezave"
- #: src/admin-views/tribe-options-general.php:30
- 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."
- 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. "
- #: src/admin-views/tribe-options-general.php:25
- msgid "We hope our plugin is helping you out."
- msgstr "Upamo, da vam je naš vtičnik v pomoč."
- #: src/admin-views/tribe-options-general.php:20
- msgid "Check out the available add-ons"
- msgstr "Poglejte si razpoložljive dodatke"
- #: src/admin-views/tribe-options-general.php:20
- msgid "Looking for additional functionality including recurring events, custom meta, community events, ticket sales and more?"
- msgstr "Iščete dodatno funkcionalnost kot so ponavljajoči se dogodki, meta podatki po meri, community events, prodaja vstopnic ali več? "
- #: src/admin-views/tribe-options-display.php:37
- msgid "Select the date format to use in datepickers"
- msgstr "Izberite format datumov za uporabo v izbiralniku datumov"
- #: src/admin-views/tribe-options-display.php:36
- msgid "Datepicker Date Format"
- msgstr "Format izbiralnika datumov"
- #: src/admin-views/tribe-options-display.php:22
- msgid "Date Format Settings"
- msgstr "Nastavitve formata datuma"
- #: src/admin-views/event-log.php:65
- msgid "View"
- msgstr "Ogled"
- #: src/Tribe/Admin/Help_Page.php:211 src/Tribe/Plugins_API.php:90
- msgid "Community Events"
- msgstr ""
- #: src/Tribe/Languages/Locations.php:374
- msgid "Wyoming"
- msgstr "Wyoming"
- #: src/Tribe/Languages/Locations.php:373
- msgid "Wisconsin"
- msgstr "Wisconsin"
- #: src/Tribe/Languages/Locations.php:372
- msgid "West Virginia"
- msgstr "West Virginia"
- #: src/Tribe/Languages/Locations.php:371
- msgid "Washington"
- msgstr "Washington"
- #: src/Tribe/Languages/Locations.php:370
- msgid "Virginia"
- msgstr "Virginia"
- #: src/Tribe/Languages/Locations.php:369
- msgid "Vermont"
- msgstr "Vermont"
- #: src/Tribe/Languages/Locations.php:368
- msgid "Utah"
- msgstr "Utah"
- #: src/Tribe/Languages/Locations.php:367
- msgid "Texas"
- msgstr "Texas"
- #: src/Tribe/Languages/Locations.php:366
- msgid "Tennessee"
- msgstr "Tennessee"
- #: src/Tribe/Languages/Locations.php:365
- msgid "South Dakota"
- msgstr "South Dakota"
- #: src/Tribe/Languages/Locations.php:364
- msgid "South Carolina"
- msgstr "South Carolina"
- #: src/Tribe/Languages/Locations.php:363
- msgid "Rhode Island"
- msgstr "Rhode Island"
- #: src/Tribe/Languages/Locations.php:362
- msgid "Pennsylvania"
- msgstr "Pennsylvania"
- #: src/Tribe/Languages/Locations.php:361
- msgid "Oregon"
- msgstr "Oregon"
- #: src/Tribe/Languages/Locations.php:360
- msgid "Oklahoma"
- msgstr "Oklahoma"
- #: src/Tribe/Languages/Locations.php:359
- msgid "Ohio"
- msgstr "Ohio"
- #: src/Tribe/Languages/Locations.php:358
- msgid "North Dakota"
- msgstr "North Dakota"
- #: src/Tribe/Languages/Locations.php:357
- msgid "North Carolina"
- msgstr "North Carolina"
- #: src/Tribe/Languages/Locations.php:356
- msgid "New York"
- msgstr "New York"
- #: src/Tribe/Languages/Locations.php:355
- msgid "New Mexico"
- msgstr "New Mexico"
- #: src/Tribe/Languages/Locations.php:354
- msgid "New Jersey"
- msgstr "New Jersey"
- #: src/Tribe/Languages/Locations.php:353
- msgid "New Hampshire"
- msgstr "New Hampshire"
- #: src/Tribe/Languages/Locations.php:352
- msgid "Nevada"
- msgstr "Nevada"
- #: src/Tribe/Languages/Locations.php:351
- msgid "Nebraska"
- msgstr "Nebraska"
- #: src/Tribe/Languages/Locations.php:350
- msgid "Montana"
- msgstr "Montana"
- #: src/Tribe/Languages/Locations.php:349
- msgid "Missouri"
- msgstr "Missouri"
- #: src/Tribe/Languages/Locations.php:348
- msgid "Mississippi"
- msgstr "Mississippi"
- #: src/Tribe/Languages/Locations.php:347
- msgid "Minnesota"
- msgstr "Minnesota"
- #: src/Tribe/Languages/Locations.php:346
- msgid "Michigan"
- msgstr "Michigan"
- #: src/Tribe/Languages/Locations.php:345
- msgid "Massachusetts"
- msgstr "Massachusetts"
- #: src/Tribe/Languages/Locations.php:344
- msgid "Maryland"
- msgstr "Maryland"
- #: src/Tribe/Languages/Locations.php:343
- msgid "Maine"
- msgstr "Maine"
- #: src/Tribe/Languages/Locations.php:342
- msgid "Louisiana"
- msgstr "Louisiana"
- #: src/Tribe/Languages/Locations.php:341
- msgid "Kentucky"
- msgstr "Kentucky"
- #: src/Tribe/Languages/Locations.php:340
- msgid "Kansas"
- msgstr "Kansas"
- #: src/Tribe/Languages/Locations.php:339
- msgid "Iowa"
- msgstr "Iowa"
- #: src/Tribe/Languages/Locations.php:338
- msgid "Indiana"
- msgstr "Indiana"
- #: src/Tribe/Languages/Locations.php:337
- msgid "Illinois"
- msgstr "Illinois"
- #: src/Tribe/Languages/Locations.php:336
- msgid "Idaho"
- msgstr "Idaho"
- #: src/Tribe/Languages/Locations.php:335
- msgid "Hawaii"
- msgstr "Hawaii"
- #: src/Tribe/Languages/Locations.php:333
- msgid "Florida"
- msgstr "Florida"
- #: src/Tribe/Languages/Locations.php:332
- msgid "District of Columbia"
- msgstr "District of Columbia"
- #: src/Tribe/Languages/Locations.php:331
- msgid "Delaware"
- msgstr "Delaware"
- #: src/Tribe/Languages/Locations.php:330
- msgid "Connecticut"
- msgstr "Connecticut"
- #: src/Tribe/Languages/Locations.php:329
- msgid "Colorado"
- msgstr "Colorado"
- #: src/Tribe/Languages/Locations.php:328
- msgid "California"
- msgstr "California"
- #: src/Tribe/Languages/Locations.php:327
- msgid "Arkansas"
- msgstr "Arkansas"
- #: src/Tribe/Languages/Locations.php:326
- msgid "Arizona"
- msgstr "Arizona"
- #: src/Tribe/Languages/Locations.php:325
- msgid "Alaska"
- msgstr "Alaska"
- #: src/Tribe/Languages/Locations.php:324
- msgid "Alabama"
- msgstr "Alabama"
- #: src/Tribe/Languages/Locations.php:297
- msgid "Zimbabwe"
- msgstr "Zimbabve"
- #: src/Tribe/Languages/Locations.php:296
- msgid "Zambia"
- msgstr "Zambija"
- #: src/Tribe/Languages/Locations.php:295
- msgid "Yemen"
- msgstr "Jemen"
- #: src/Tribe/Languages/Locations.php:294
- msgid "Western Sahara"
- msgstr "Western Sahara"
- #: src/Tribe/Languages/Locations.php:293
- msgid "Wallis and Futuna Islands"
- msgstr ""
- #: src/Tribe/Languages/Locations.php:292
- msgid "Virgin Islands (U.S.)"
- msgstr "Deviški otoki (ameriški)"
- #: src/Tribe/Languages/Locations.php:291
- msgid "Virgin Islands (British)"
- msgstr "Deviški otoki (britanski)"
- #: src/Tribe/Languages/Locations.php:290
- msgid "Viet Nam"
- msgstr "Viet Nam"
- #: src/Tribe/Languages/Locations.php:289
- msgid "Venezuela"
- msgstr "Venezuela"
- #: src/Tribe/Languages/Locations.php:288
- msgid "Vanuatu"
- msgstr "Vanuatu"
- #: src/Tribe/Languages/Locations.php:287
- msgid "Uzbekistan"
- msgstr "Uzbekistan"
- #: src/Tribe/Languages/Locations.php:286
- msgid "Uruguay"
- msgstr "Urugvaj"
- #: src/Tribe/Languages/Locations.php:285
- msgid "United States Minor Outlying Islands"
- msgstr "United States Minor Outlying Islands"
- #: src/Tribe/Languages/Locations.php:284
- msgid "United Kingdom"
- msgstr "Združeno kraljestvo"
- #: src/Tribe/Languages/Locations.php:283
- msgid "United Arab Emirates"
- msgstr "Združeni Arabski Emirati"
- #: src/Tribe/Languages/Locations.php:282
- msgid "Ukraine"
- msgstr "Ukrajina"
- #: src/Tribe/Languages/Locations.php:281
- msgid "Uganda"
- msgstr "Uganda"
- #: src/Tribe/Languages/Locations.php:280
- msgid "Tuvalu"
- msgstr "Tuvalu"
- #: src/Tribe/Languages/Locations.php:279
- msgid "Turks and Caicos Islands"
- msgstr ""
- #: src/Tribe/Languages/Locations.php:278
- msgid "Turkmenistan"
- msgstr "Turkmenistan"
- #: src/Tribe/Languages/Locations.php:277
- msgid "Turkey"
- msgstr "Turčija"
- #: src/Tribe/Languages/Locations.php:276
- msgid "Tunisia"
- msgstr "Tunizija"
- #: src/Tribe/Languages/Locations.php:275
- msgid "Trinidad and Tobago"
- msgstr ""
- #: src/Tribe/Languages/Locations.php:274
- msgid "Tonga"
- msgstr "Tonga"
- #: src/Tribe/Languages/Locations.php:273
- msgid "Tokelau"
- msgstr "Tokelau"
- #: src/Tribe/Languages/Locations.php:272
- msgid "Togo"
- msgstr "Togo"
- #: src/Tribe/Languages/Locations.php:271
- msgid "Thailand"
- msgstr "Tajska"
- #: src/Tribe/Languages/Locations.php:270
- msgid "Tanzania, United Republic of"
- msgstr ""
- #: src/Tribe/Languages/Locations.php:269
- msgid "Tajikistan"
- msgstr "Tadžikistan"
- #: src/Tribe/Languages/Locations.php:268
- msgid "Taiwan"
- msgstr "Tajvan"
- #: src/Tribe/Languages/Locations.php:267
- msgid "Syrian Arab Republic"
- msgstr "Sirska Arabska Republika"
- #: src/Tribe/Languages/Locations.php:266
- msgid "Switzerland"
- msgstr "Švica"
- #: src/Tribe/Languages/Locations.php:265
- msgid "Sweden"
- msgstr "Švedska"
- #: src/Tribe/Languages/Locations.php:264
- msgid "Swaziland"
- msgstr "Swaziland"
- #: src/Tribe/Languages/Locations.php:263
- msgid "Svalbard and Jan Mayen Islands"
- msgstr ""
- #: src/Tribe/Languages/Locations.php:262
- msgid "Suriname"
- msgstr "Suriname"
- #: src/Tribe/Languages/Locations.php:261
- msgid "Sudan"
- msgstr "Sudan"
- #: src/Tribe/Languages/Locations.php:241
- msgid "Saint Pierre and Miquelon"
- msgstr ""
- #: src/Tribe/Languages/Locations.php:260
- msgid "Sri Lanka"
- msgstr "Šri Lanka"
- #: src/Tribe/Languages/Locations.php:259
- msgid "Spain"
- msgstr "Španija"
- #: src/Tribe/Languages/Locations.php:258
- msgid "South Georgia, South Sandwich Islands"
- msgstr "South Georgia, South Sandwich Islands"
- #: src/Tribe/Languages/Locations.php:257
- msgid "South Africa"
- msgstr "Južna Afrika"
- #: src/Tribe/Languages/Locations.php:256
- msgid "Somalia"
- msgstr "Somalija"
- #: src/Tribe/Languages/Locations.php:255
- msgid "Solomon Islands"
- msgstr "Solomonovi otoki"
- #: src/Tribe/Languages/Locations.php:254
- msgid "Slovenia"
- msgstr "Slovenija"
- #: src/Tribe/Languages/Locations.php:253
- msgid "Slovakia (Slovak Republic)"
- msgstr "Slovaška (Slovaška Republika)"
- #: src/Tribe/Languages/Locations.php:251
- msgid "Singapore"
- msgstr "Singapur"
- #: src/Tribe/Languages/Locations.php:250
- msgid "Sierra Leone"
- msgstr "Sierra Leone"
- #: src/Tribe/Languages/Locations.php:249
- msgid "Seychelles"
- msgstr "Sejšeli"
- #: src/Tribe/Languages/Locations.php:248
- msgid "Serbia"
- msgstr "Srbija"
- #: src/Tribe/Languages/Locations.php:247
- msgid "Senegal"
- msgstr "Senegal"
- #: src/Tribe/Languages/Locations.php:246
- msgid "Saudi Arabia"
- msgstr "Savdska Arabija"
- #: src/Tribe/Languages/Locations.php:244
- msgid "San Marino"
- msgstr "San Marino"
- #: src/Tribe/Languages/Locations.php:243
- msgid "Samoa"
- msgstr "Samo"
- #: src/Tribe/Languages/Locations.php:242
- msgid "Saint Vincent and The Grenadines"
- msgstr ""
- #: src/Tribe/Languages/Locations.php:240
- msgid "Saint Lucia"
- msgstr "Saint Lucia"
- #: src/Tribe/Languages/Locations.php:239
- msgid "Saint Kitts and Nevis"
- msgstr ""
- #: src/Tribe/Languages/Locations.php:236
- msgid "Rwanda"
- msgstr "Ruanda"
- #: src/Tribe/Languages/Locations.php:235
- msgid "Russian Federation"
- msgstr "Ruska federacija"
- #: src/Tribe/Languages/Locations.php:234
- msgid "Romania"
- msgstr "Romunija"
- #: src/Tribe/Languages/Locations.php:233
- msgid "Reunion"
- msgstr "Reunion"
- #: src/Tribe/Languages/Locations.php:232
- msgid "Qatar"
- msgstr "Katar"
- #: src/Tribe/Languages/Locations.php:231
- msgid "Puerto Rico"
- msgstr "Portoriko"
- #: src/Tribe/Languages/Locations.php:230
- msgid "Portugal"
- msgstr "Portugalska"
- #: src/Tribe/Languages/Locations.php:229
- msgid "Poland"
- msgstr "Poljska"
- #: src/Tribe/Languages/Locations.php:228
- msgid "Pitcairn"
- msgstr "Pitcairn"
- #: src/Tribe/Languages/Locations.php:227
- msgid "Philippines"
- msgstr "Filipini"
- #: src/Tribe/Languages/Locations.php:226
- msgid "Peru"
- msgstr "Peru"
- #: src/Tribe/Languages/Locations.php:225
- msgid "Paraguay"
- msgstr "Paragvaj"
- #: src/Tribe/Languages/Locations.php:224
- msgid "Papua New Guinea"
- msgstr "Papua Nova Gvineja"
- #: src/Tribe/Languages/Locations.php:223
- msgid "Panama"
- msgstr "Panama"
- #: src/Tribe/Languages/Locations.php:222
- msgid "Palau"
- msgstr "Palau"
- #: src/Tribe/Languages/Locations.php:221
- msgid "Pakistan"
- msgstr "Pakistan"
- #: src/Tribe/Languages/Locations.php:220
- msgid "Oman"
- msgstr "Oman"
- #: src/Tribe/Languages/Locations.php:219
- msgid "Norway"
- msgstr "Norveška"
- #: src/Tribe/Languages/Locations.php:218
- msgid "Northern Mariana Islands"
- msgstr "Northern Mariana Islands"
- #: src/Tribe/Languages/Locations.php:217
- msgid "Norfolk Island"
- msgstr "Norfolk Island"
- #: src/Tribe/Languages/Locations.php:216
- msgid "Niue"
- msgstr "Niue"
- #: src/Tribe/Languages/Locations.php:215
- msgid "Nigeria"
- msgstr "Nigerija"
- #: src/Tribe/Languages/Locations.php:214
- msgid "Niger"
- msgstr "Niger"
- #: src/Tribe/Languages/Locations.php:213
- msgid "Nicaragua"
- msgstr "Nikaragva"
- #: src/Tribe/Languages/Locations.php:212
- msgid "New Zealand"
- msgstr "Nova Zelandija"
- #: src/Tribe/Languages/Locations.php:211
- msgid "New Caledonia"
- msgstr "Nova Kalzedonija"
- #: src/Tribe/Languages/Locations.php:210
- msgid "Netherlands"
- msgstr "Nizozemska"
- #: src/Tribe/Languages/Locations.php:209
- msgid "Nepal"
- msgstr "Nepal"
- #: src/Tribe/Languages/Locations.php:208
- msgid "Nauru"
- msgstr "Nauru"
- #: src/Tribe/Languages/Locations.php:207
- msgid "Namibia"
- msgstr "Namibija"
- #: src/Tribe/Languages/Locations.php:206
- msgid "Myanmar"
- msgstr "Mjanmar"
- #: src/Tribe/Languages/Locations.php:205
- msgid "Mozambique"
- msgstr "Mozambik"
- #: src/Tribe/Languages/Locations.php:204
- msgid "Morocco"
- msgstr "Maroko"
- #: src/Tribe/Languages/Locations.php:203
- msgid "Montserrat"
- msgstr "Montserrat"
- #: src/Tribe/Languages/Locations.php:202
- msgid "Montenegro"
- msgstr "Črna Gora"
- #: src/Tribe/Languages/Locations.php:201
- msgid "Mongolia"
- msgstr "Mongolija"
- #: src/Tribe/Languages/Locations.php:200
- msgid "Monaco"
- msgstr "Monako"
- #: src/Tribe/Languages/Locations.php:199
- msgid "Moldova, Republic of"
- msgstr ""
- #: src/Tribe/Languages/Locations.php:198
- msgid "Micronesia, Federated States of"
- msgstr ""
- #: src/Tribe/Languages/Locations.php:197
- msgid "Mexico"
- msgstr "Mehika"
- #: src/Tribe/Languages/Locations.php:196
- msgid "Mayotte"
- msgstr "Mayotte"
- #: src/Tribe/Languages/Locations.php:195
- msgid "Mauritius"
- msgstr "Mavricius"
- #: src/Tribe/Languages/Locations.php:194
- msgid "Mauritania"
- msgstr "Mavretanija"
- #: src/Tribe/Languages/Locations.php:193
- msgid "Martinique"
- msgstr "Martinique"
- #: src/Tribe/Languages/Locations.php:192
- msgid "Marshall Islands"
- msgstr "Marshallovi otoki"
- #: src/Tribe/Languages/Locations.php:191
- msgid "Malta"
- msgstr "Malta"
- #: src/Tribe/Languages/Locations.php:190
- msgid "Mali"
- msgstr "Mali"
- #: src/Tribe/Languages/Locations.php:189
- msgid "Maldives"
- msgstr "Maldivi"
- #: src/Tribe/Languages/Locations.php:188
- msgid "Malaysia"
- msgstr "Malezija"
- #: src/Tribe/Languages/Locations.php:187
- msgid "Malawi"
- msgstr "Malavi"
- #: src/Tribe/Languages/Locations.php:186
- msgid "Madagascar"
- msgstr "Madagaskar"
- #: src/Tribe/Languages/Locations.php:185
- msgid "Macedonia"
- msgstr "Makedonija"
- #: src/Tribe/Languages/Locations.php:184
- msgid "Macau"
- msgstr "Macau"
- #: src/Tribe/Languages/Locations.php:183
- msgid "Luxembourg"
- msgstr "Luksemburg"
- #: src/Tribe/Languages/Locations.php:182
- msgid "Lithuania"
- msgstr "Litva"
- #: src/Tribe/Languages/Locations.php:181
- msgid "Liechtenstein"
- msgstr "Lihtenštajn"
- #: src/Tribe/Languages/Locations.php:180
- msgid "Libya"
- msgstr "Libija"
- #: src/Tribe/Languages/Locations.php:179
- msgid "Liberia"
- msgstr "Liberija"
- #: src/Tribe/Languages/Locations.php:178
- msgid "Lesotho"
- msgstr "Lesoto"
- #: src/Tribe/Languages/Locations.php:177
- msgid "Lebanon"
- msgstr "Libanon"
- #: src/Tribe/Languages/Locations.php:176
- msgid "Latvia"
- msgstr "Latvija"
- #: src/Tribe/Languages/Locations.php:175
- msgid "Lao People's Democratic Republic"
- msgstr "Laoška ljudska demokratična republika"
- #: src/Tribe/Languages/Locations.php:174
- msgid "Kyrgyzstan"
- msgstr "Kirgizistan"
- #: src/Tribe/Languages/Locations.php:173
- msgid "Kuwait"
- msgstr "Kuvajt"
- #: src/Tribe/Languages/Locations.php:172
- msgid "Korea, Republic of"
- msgstr ""
- #: src/Tribe/Languages/Locations.php:171
- msgid "Korea, Democratic People's Republic of"
- msgstr ""
- #: src/Tribe/Languages/Locations.php:170
- msgid "Kiribati"
- msgstr "Kiribati"
- #: src/Tribe/Languages/Locations.php:169
- msgid "Kenya"
- msgstr "Kenija"
- #: src/Tribe/Languages/Locations.php:168
- msgid "Kazakhstan"
- msgstr "Kazakhstan"
- #: src/Tribe/Languages/Locations.php:167
- msgid "Jordan"
- msgstr "Jordanija"
- #: src/Tribe/Languages/Locations.php:166
- msgid "Japan"
- msgstr "Japonska"
- #: src/Tribe/Languages/Locations.php:165
- msgid "Jamaica"
- msgstr "Jamajka"
- #: src/Tribe/Languages/Locations.php:164
- msgid "Italy"
- msgstr "Italija"
- #: src/Tribe/Languages/Locations.php:163
- msgid "Israel"
- msgstr "Izrael"
- #: src/Tribe/Languages/Locations.php:162
- msgid "Ireland"
- msgstr "Irska"
- #: src/Tribe/Languages/Locations.php:161
- msgid "Iraq"
- msgstr "Irak"
- #: src/Tribe/Languages/Locations.php:160
- msgid "Iran, Islamic Republic of"
- msgstr ""
- #: src/Tribe/Languages/Locations.php:159
- msgid "Indonesia"
- msgstr "Indonezija"
- #: src/Tribe/Languages/Locations.php:158
- msgid "India"
- msgstr "Indija"
- #: src/Tribe/Languages/Locations.php:157
- msgid "Iceland"
- msgstr "Islandija"
- #: src/Tribe/Languages/Locations.php:156
- msgid "Hungary"
- msgstr "Madžarska"
- #: src/Tribe/Languages/Locations.php:155
- msgid "Hong Kong"
- msgstr "Hong Kong"
- #: src/Tribe/Languages/Locations.php:154
- msgid "Honduras"
- msgstr "Honduras"
- #: src/Tribe/Languages/Locations.php:153
- msgid "Holy See (Vatican City State)"
- msgstr "Sveti sedež (Vatikanska mestna država)"
- #: src/Tribe/Languages/Locations.php:152
- msgid "Heard and McDonald Islands"
- msgstr ""
- #: src/Tribe/Languages/Locations.php:151
- msgid "Haiti"
- msgstr "Haiti"
- #: src/Tribe/Languages/Locations.php:150
- msgid "Guyana"
- msgstr "Gvajana"
- #: src/Tribe/Languages/Locations.php:149
- msgid "Guinea-Bissau"
- msgstr "Gvineja Bissau"
- #: src/Tribe/Languages/Locations.php:148
- msgid "Guinea"
- msgstr "Gvineja"
- #: src/Tribe/Languages/Locations.php:147
- msgid "Guatemala"
- msgstr "Gvatemala"
- #: src/Tribe/Languages/Locations.php:146
- msgid "Guam"
- msgstr "Guam"
- #: src/Tribe/Languages/Locations.php:145
- msgid "Guadeloupe"
- msgstr "Guadeloupe"
- #: src/Tribe/Languages/Locations.php:144
- msgid "Grenada"
- msgstr "Grenada"
- #: src/Tribe/Languages/Locations.php:143
- msgid "Greenland"
- msgstr "Grenlandija"
- #: src/Tribe/Languages/Locations.php:142
- msgid "Greece"
- msgstr "Grčija"
- #: src/Tribe/Languages/Locations.php:141
- msgid "Gibraltar"
- msgstr "Gibraltar"
- #: src/Tribe/Languages/Locations.php:140
- msgid "Ghana"
- msgstr "Gana"
- #: src/Tribe/Languages/Locations.php:139
- msgid "Germany"
- msgstr "Nemčija"
- #: src/Tribe/Languages/Locations.php:138 src/Tribe/Languages/Locations.php:334
- msgid "Georgia"
- msgstr "Gruzija"
- #: src/Tribe/Languages/Locations.php:137
- msgid "Gambia"
- msgstr "Gambija"
- #: src/Tribe/Languages/Locations.php:136
- msgid "Gabon"
- msgstr "Gambon"
- #: src/Tribe/Languages/Locations.php:135
- msgid "French Southern Territories"
- msgstr "Francoski južni teritoriji"
- #: src/Tribe/Languages/Locations.php:134
- msgid "French Polynesia"
- msgstr "Francoska Polinezija"
- #: src/Tribe/Languages/Locations.php:133
- msgid "French Guiana"
- msgstr "Francoska Guiana"
- #: src/Tribe/Languages/Locations.php:132
- msgid "France"
- msgstr "Francija"
- #: src/Tribe/Languages/Locations.php:131
- msgid "Finland"
- msgstr "Finska"
- #: src/Tribe/Languages/Locations.php:130
- msgid "Fiji"
- msgstr "Fiji"
- #: src/Tribe/Languages/Locations.php:129
- msgid "Faroe Islands"
- msgstr "Faroški otoki"
- #: src/Tribe/Languages/Locations.php:128
- msgid "Falkland Islands (Malvinas)"
- msgstr "Falklandski otoki (Malvinas)"
- #: src/Tribe/Languages/Locations.php:127
- msgid "Ethiopia"
- msgstr "Etipoija"
- #: src/Tribe/Languages/Locations.php:126
- msgid "Estonia"
- msgstr "Estonija"
- #: src/Tribe/Languages/Locations.php:125
- msgid "Eritrea"
- msgstr "Eritreja"
- #: src/Tribe/Languages/Locations.php:124
- msgid "Equatorial Guinea"
- msgstr "Ekvatorialna Gvineja"
- #: src/Tribe/Languages/Locations.php:123
- msgid "El Salvador"
- msgstr "El Salvador"
- #: src/Tribe/Languages/Locations.php:122
- msgid "Egypt"
- msgstr "Egipt"
- #: src/Tribe/Languages/Locations.php:121
- msgid "Ecuador"
- msgstr "Ekvador"
- #: src/Tribe/Languages/Locations.php:120
- msgid "East Timor"
- msgstr "Zahodni Timor"
- #: src/Tribe/Languages/Locations.php:119
- msgid "Dominican Republic"
- msgstr "Dominikanska republika"
- #: src/Tribe/Languages/Locations.php:118
- msgid "Dominica"
- msgstr "Dominika"
- #: src/Tribe/Languages/Locations.php:117
- msgid "Djibouti"
- msgstr "Djibouti"
- #: src/Tribe/Languages/Locations.php:116
- msgid "Denmark"
- msgstr "Danska"
- #: src/Tribe/Languages/Locations.php:115
- msgid "Czech Republic"
- msgstr "Republika Češka"
- #: src/Tribe/Languages/Locations.php:114
- msgid "Cyprus"
- msgstr "Ciper"
- #: src/Tribe/Languages/Locations.php:112
- msgid "Cuba"
- msgstr "Kuba"
- #: src/Tribe/Languages/Locations.php:111
- msgid "Croatia (Local Name: Hrvatska)"
- msgstr "Hrvaška"
- #: src/Tribe/Languages/Locations.php:109
- msgid "Costa Rica"
- msgstr "Kosta Rika"
- #: src/Tribe/Languages/Locations.php:108
- msgid "Cook Islands"
- msgstr "Cookovi otoki"
- #: src/Tribe/Languages/Locations.php:107
- msgid "Congo, Democratic Republic of the"
- msgstr ""
- #: src/Tribe/Languages/Locations.php:106
- msgid "Congo"
- msgstr "Kongo"
- #: src/Tribe/Languages/Locations.php:105
- msgid "Comoros"
- msgstr "Comoros"
- #: src/Tribe/Languages/Locations.php:104
- msgid "Colombia"
- msgstr "Kolumbija"
- #: src/Tribe/Languages/Locations.php:102
- msgid "Cocos (Keeling) Islands"
- msgstr "Cocos (Keeling) Islands"
- #: src/Tribe/Languages/Locations.php:101
- msgid "Christmas Island"
- msgstr "Božični otoki"
- #: src/Tribe/Languages/Locations.php:100
- msgid "China"
- msgstr "Kitajska"
- #: src/Tribe/Languages/Locations.php:99
- msgid "Chile"
- msgstr "Čile"
- #: src/Tribe/Languages/Locations.php:98
- msgid "Chad"
- msgstr "Čad"
- #: src/Tribe/Languages/Locations.php:97
- msgid "Central African Republic"
- msgstr "Srednjeafriška republika"
- #: src/Tribe/Languages/Locations.php:96
- msgid "Cayman Islands"
- msgstr "Kajmanski otoki"
- #: src/Tribe/Languages/Locations.php:95
- msgid "Cape Verde"
- msgstr "Cape Verde"
- #: src/Tribe/Languages/Locations.php:94
- msgid "Canada"
- msgstr "Kanada"
- #: src/Tribe/Languages/Locations.php:93
- msgid "Cameroon"
- msgstr "Kamerun"
- #: src/Tribe/Languages/Locations.php:92
- msgid "Cambodia"
- msgstr "Kambodža"
- #: src/Tribe/Languages/Locations.php:91
- msgid "Burundi"
- msgstr "Burundi"
- #: src/Tribe/Languages/Locations.php:90
- msgid "Burkina Faso"
- msgstr "Burkina Faso"
- #: src/Tribe/Languages/Locations.php:89
- msgid "Bulgaria"
- msgstr "Bulgarija"
- #: src/Tribe/Languages/Locations.php:88
- msgid "Brunei Darussalam"
- msgstr "Brunei Darussalam"
- #: src/Tribe/Languages/Locations.php:87
- msgid "British Indian Ocean Territory"
- msgstr "Britansko-Indijski oceanski teritorij"
- #: src/Tribe/Languages/Locations.php:86
- msgid "Brazil"
- msgstr "Brazilija"
- #: src/Tribe/Languages/Locations.php:85
- msgid "Bouvet Island"
- msgstr "Bouveški otok"
- #: src/Tribe/Languages/Locations.php:84
- msgid "Botswana"
- msgstr "Bocvana"
- #: src/Tribe/Languages/Locations.php:83
- msgid "Bosnia and Herzegowina"
- msgstr ""
- #: src/Tribe/Languages/Locations.php:82
- msgid "Bolivia"
- msgstr "Bolivija"
- #: src/Tribe/Languages/Locations.php:81
- msgid "Bhutan"
- msgstr "Butan"
- #: src/Tribe/Languages/Locations.php:80
- msgid "Bermuda"
- msgstr "Bermuda"
- #: src/Tribe/Languages/Locations.php:79
- msgid "Benin"
- msgstr "Benin"
- #: src/Tribe/Languages/Locations.php:78
- msgid "Belize"
- msgstr "Belize"
- #: src/Tribe/Languages/Locations.php:77
- msgid "Belgium"
- msgstr "Belgija"
- #: src/Tribe/Languages/Locations.php:76
- msgid "Belarus"
- msgstr "Belorusija"
- #: src/Tribe/Languages/Locations.php:75
- msgid "Barbados"
- msgstr "Barbados"
- #: src/Tribe/Languages/Locations.php:74
- msgid "Bangladesh"
- msgstr "Bangladeš"
- #: src/Tribe/Languages/Locations.php:73
- msgid "Bahrain"
- msgstr "Bahrajn"
- #: src/Tribe/Languages/Locations.php:72
- msgid "Bahamas"
- msgstr "Bahami"
- #: src/Tribe/Languages/Locations.php:71
- msgid "Azerbaijan"
- msgstr "Azerbajdžan"
- #: src/Tribe/Languages/Locations.php:70
- msgid "Austria"
- msgstr "Avstrija"
- #: src/Tribe/Languages/Locations.php:69
- msgid "Australia"
- msgstr "Avstralija"
- #: src/Tribe/Languages/Locations.php:68
- msgid "Aruba"
- msgstr "Aruba"
- #: src/Tribe/Languages/Locations.php:67
- msgid "Armenia"
- msgstr "Armenija"
- #: src/Tribe/Languages/Locations.php:66
- msgid "Argentina"
- msgstr "Argentina"
- #: src/Tribe/Languages/Locations.php:65
- msgid "Antigua and Barbuda"
- msgstr ""
- #: src/Tribe/Languages/Locations.php:64
- msgid "Antarctica"
- msgstr "Antarktika"
- #: src/Tribe/Languages/Locations.php:63
- msgid "Anguilla"
- msgstr "Anguila"
- #: src/Tribe/Languages/Locations.php:62
- msgid "Angola"
- msgstr "Anogla"
- #: src/Tribe/Languages/Locations.php:61
- msgid "Andorra"
- msgstr "Andora"
- #: src/Tribe/Languages/Locations.php:60
- msgid "American Samoa"
- msgstr "Ameriška Samoa"
- #: src/Tribe/Languages/Locations.php:59
- msgid "Algeria"
- msgstr "Alžirija"
- #: src/Tribe/Languages/Locations.php:58
- msgid "Albania"
- msgstr "Albanija"
- #: src/Tribe/Languages/Locations.php:56
- msgid "Afghanistan"
- msgstr "Afganistan"
- #: src/Tribe/View_Helpers.php:50
- msgid "Select a Country:"
- msgstr "Izberite državo:"
- #: src/Tribe/Validate.php:514
- msgid "Country List must be formatted as one country per line in the following format: <br>US, United States <br> UK, United Kingdom."
- msgstr "Country List must be formatted as one country per line in the following format: <br>US, United States <br> UK, United Kingdom."
- #: src/Tribe/Validate.php:498
- msgid "%s must be a phone number."
- msgstr "%s mora biti telefonska številka."
- #: src/Tribe/Validate.php:484
- msgid "%s must consist of 5 numbers."
- msgstr "%s mora biti sestavljeno iz 5 številk."
- #: src/Tribe/Validate.php:470
- msgid "%s must consist of letters, spaces, apostrophes, and dashes."
- msgstr "%s mora biti sestavljeno iz črk, presledkov, apostrofov in vezajev. "
- #: src/Tribe/Validate.php:454
- msgid "%s must consist of letters, numbers, dashes, apostrophes, and spaces only."
- msgstr "%s lahko vseguje zgolj črke, številke, vezaje, apostrofe in presledke. "
- #: src/Tribe/Validate.php:438
- msgid "%s must be a number between 0 and 21."
- msgstr "%s mora biti število med 0 in 21."
- #: src/Tribe/Validate.php:384
- msgid "%s must be a number or percentage."
- msgstr "%s mora biti število ali procent."
- #: src/Tribe/Validate.php:368
- msgid "%s cannot be a duplicate"
- msgstr "%s ne more biti duplikat"
- #: src/Tribe/Validate.php:366
- msgid "%s cannot be the same as %s."
- msgstr "%s ne more biti enak kot %s. "
- #: src/Tribe/Validate.php:359
- msgid "Comparison validation failed because no comparison value was provided, for field %s"
- msgstr "Primerjalno preverjanje ni uspelo, ker ni bilo podanih vrednosti za primerjavo, za polje %s"
- #: src/Tribe/Validate.php:298 src/Tribe/Validate.php:310
- #: src/Tribe/Validate.php:323 src/Tribe/Validate.php:345
- msgid "%s must have a value that's part of its options."
- msgstr "%s mora imeti vrednost, ki je del možnosti."
- #: src/Tribe/Validate.php:282
- msgid "%s must be a valid absolute URL."
- msgstr "%s mora biti veljaven absolutni URL"
- #: src/Tribe/Validate.php:267
- msgid "%s must be a valid slug (numbers, letters, dashes, and underscores)."
- msgstr "%s mora biti veljavni ključ (številke, črke, vezaji in podčrtaji)."
- #: src/Tribe/Validate.php:200 src/Tribe/Validate.php:228
- msgid "%s must be a positive number."
- msgstr "%s mora biti pozitivno število."
- #: src/Tribe/Validate.php:152
- msgid "%s must contain numbers, letters and dots only"
- msgstr "%s mora vsebovati številke, črke in pike"
- #: src/Tribe/Validate.php:120 src/Tribe/Validate.php:136
- msgid "%s must contain numbers and letters only"
- msgstr "%s mora vsebovati zgolj številke in črke"
- #: src/Tribe/Validate.php:105
- msgctxt "non-existant function name passed for field validation"
- msgid "with function name:"
- msgstr "z funkcijskim imenom:"
- #: src/Tribe/Validate.php:104
- msgid "Non-existant field validation function passed"
- msgstr "Neobstoječa validacijska funkcija podana"
- #: src/Tribe/Validate.php:73 src/Tribe/Validate.php:85
- #: src/Tribe/Validate.php:105
- msgid "Field ID:"
- msgstr "ID polja:"
- #: src/Tribe/Validate.php:72 src/Tribe/Validate.php:84
- msgid "Invalid or incomplete field passed"
- msgstr "Neveljavno ali nedokončano polje podano"
- #: src/Tribe/Support.php:188 src/Tribe/Support.php:189
- msgid "Unknown or not set"
- msgstr "Neznano ali nedoločeno"
- #: src/admin-views/tribe-options-help.php:41
- msgid "System Information"
- msgstr "Sistemske informacije"
- #: src/Tribe/Settings_Tab.php:222
- msgid "There are no fields setup for this tab yet."
- msgstr "Nobenih polj ni nastavljenih za ta zavihek."
- #: src/Tribe/Settings.php:621
- msgid "The above setting was not saved. Other settings were successfully saved."
- msgid_plural "The above settings were not saved. Other settings were successfully saved."
- msgstr[0] "Zgornja nastavitev ni bila shranjena. Ostale nastavitve so bile shranjene uspešno."
- msgstr[1] "Zgornje nastavitve niso bile shranjene. Ostale nastavitve so bile shranjene uspešno."
- msgstr[2] ""
- msgstr[3] ""
- #: src/Tribe/Settings.php:620
- msgid "None of your settings were saved. Please try again."
- msgstr "Nobena od vaših nastavitev ni bila shranjena. Prosim poizkusite znova."
- #: src/Tribe/Settings.php:610
- msgid "Your form had the following errors:"
- msgstr "Vaš obrazec ima naslednje napake"
- #: src/Tribe/Settings.php:431
- msgid "The request wasn't sent from this tab."
- msgstr "Ukaz ni bil poslan iz tega zavihka."
- #: src/Tribe/Settings.php:425
- msgid "The request was sent insecurely."
- msgstr "Ukaz je bil poslan nezavarovano."
- #: src/Tribe/Settings.php:419
- msgid "You don't have permission to do that."
- msgstr "Nimate dovoljenja za ta ukaz."
- #: src/Tribe/Settings.php:363
- msgid "You've requested a non-existent tab."
- msgstr "Zahtevali ste neobstoječ zavihek."
- #: src/Tribe/Settings.php:349
- msgid "%s Settings"
- msgstr "%s nastavitve"
- #: src/Tribe/Settings.php:253 src/Tribe/Settings.php:273
- msgid "Events Settings"
- msgstr "Nastavitve dogodkov"
- #: src/Tribe/PUE/Checker.php:888
- msgid "Hmmm... something's wrong with this validator. Please contact %ssupport%s."
- msgstr ""
- #: src/Tribe/PUE/Checker.php:927
- msgid "Valid Key! Expires on %s"
- msgstr "Veljaven ključ! Poteče %s"
- #: src/Tribe/PUE/Checker.php:907
- msgid "Sorry, key validation server is not available."
- msgstr "Oprostite, strežnik za preverjanje ključa ni na voljo. "
- #: src/Tribe/PUE/Checker.php:650
- msgid "License key(s) updated."
- msgstr "Licenčni ključ(i) posodobljen. "
- #: src/Tribe/PUE/Checker.php:494
- msgid "A valid license key is required for support and updates"
- msgstr "Veljaven licenčni ključ je potreben za podporo in posodobitve."
- #: src/Tribe/PUE/Checker.php:509 src/Tribe/PUE/Checker.php:520
- msgid "License Key"
- msgstr "Licenčni ključ"
- #: src/Tribe/Main.php:247
- msgid "Search:"
- msgstr ""
- #: src/Tribe/Settings.php:254
- msgid "Settings"
- msgstr "Nastavitve"
- #: src/Tribe/Settings_Manager.php:219
- msgid "Network"
- msgstr "Omrežje"
- #: src/Tribe/Main.php:272
- msgid "Done"
- msgstr "Opravljeno"
- #: src/Tribe/Main.php:271
- msgid "Today"
- msgstr "Danes"
- #: src/Tribe/Main.php:270
- msgid "Prev"
- msgstr "Prejšnji"
- #: src/Tribe/Main.php:253 src/Tribe/Main.php:269
- msgid "Next"
- msgstr "Naslednji"
- #: src/Tribe/Settings_Manager.php:279
- msgid "Help"
- msgstr "Pomoč"
- #: src/Tribe/Settings_Manager.php:55
- msgid "Display"
- msgstr "Pogled"
- #: src/Tribe/Settings_Manager.php:253
- #: src/admin-views/tribe-options-licenses.php:66
- msgid "Licenses"
- msgstr "Licence"
- #: src/Tribe/Admin/Help_Page.php:59 src/Tribe/Customizer.php:569
- #: src/Tribe/Plugins_API.php:25
- msgid "The Events Calendar"
- msgstr "The Events Calendar"
- #: src/Tribe/Settings.php:177 src/Tribe/Settings.php:241
- #: src/Tribe/Settings.php:242
- msgid "Events"
- msgstr "Dogodki"
- #: src/Tribe/Settings.php:643
- msgid "Settings saved."
- msgstr "Nastavitve shranjene."
- #: src/Tribe/Settings_Manager.php:54
- msgid "General"
- msgstr "Splošno"
- #: src/Tribe/Field.php:626
- msgid "No select options specified"
- msgstr "Nobenih določenih opcij. "
- #: src/Tribe/Field.php:568
- msgid "No checkbox options specified"
- msgstr "Ni označenih 'checkbox options'"
- #: src/Tribe/Field.php:532
- msgid "No radio options specified"
- msgstr "Ni označenih 'radio options'"
- #: src/Tribe/Field.php:231
- msgid "Invalid field type specified"
- msgstr "Nepravilen tip polja"
- #: src/Tribe/Credits.php:31
- msgid "This calendar is powered by The Events Calendar."
- msgstr ""
- #: src/Tribe/App_Shop.php:50 src/Tribe/App_Shop.php:51
- #: src/Tribe/App_Shop.php:72
- msgid "Event Add-Ons"
- msgstr "Dodatki za dogodke"
- #: src/Tribe/Languages/Locations.php:55
- msgid "United States"
- msgstr "Združene države"
|