123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669 |
- #, fuzzy
- msgid ""
- msgstr ""
- "Project-Id-Version: Codestar Framework Modified by Fuukei\n"
- "POT-Creation-Date: 2022-05-21 16:38+0800\n"
- "PO-Revision-Date: 2021-06-26 16:15+0800\n"
- "Last-Translator: \n"
- "Language-Team: \n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
- "Content-Transfer-Encoding: 8bit\n"
- "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
- "X-Generator: Poedit 3.0.1\n"
- "X-Poedit-Basepath: ..\n"
- "X-Poedit-Flags-xgettext: --add-comments=translators:\n"
- "X-Poedit-WPHeader: option-framework.php\n"
- "X-Poedit-SourceCharset: UTF-8\n"
- "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
- "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
- "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
- "X-Poedit-SearchPath-0: .\n"
- "X-Poedit-SearchPathExcluded-0: *.min.js\n"
- #: classes/admin-options.class.php:230
- msgid "Error while saving the changes."
- msgstr ""
- #: classes/admin-options.class.php:290
- msgid "Settings successfully imported."
- msgstr ""
- #: classes/admin-options.class.php:302 classes/admin-options.class.php:318
- msgid "Default settings restored."
- msgstr ""
- #: classes/admin-options.class.php:389
- msgid "Settings saved."
- msgstr ""
- #: classes/admin-options.class.php:570
- msgid "You have unsaved changes, save your changes!"
- msgstr ""
- #: classes/admin-options.class.php:572
- msgid "show all settings"
- msgstr ""
- #: classes/admin-options.class.php:574 fields/icon/icon.php:57 fields/map/map.php:23
- msgid "Search..."
- msgstr ""
- #: classes/admin-options.class.php:577 classes/admin-options.class.php:700
- msgid "Save"
- msgstr ""
- #: classes/admin-options.class.php:577 classes/admin-options.class.php:700
- msgid "Saving..."
- msgstr ""
- #: classes/admin-options.class.php:578 classes/admin-options.class.php:701
- msgid "Reset Section"
- msgstr ""
- #: classes/admin-options.class.php:578 classes/admin-options.class.php:701
- msgid "Are you sure to reset this section options?"
- msgstr ""
- #: classes/admin-options.class.php:579 classes/admin-options.class.php:702
- msgid "Reset All"
- msgstr ""
- #: classes/admin-options.class.php:579 classes/admin-options.class.php:702
- #: fields/backup/backup.php:31
- msgid "Reset"
- msgstr ""
- #: classes/admin-options.class.php:579 classes/admin-options.class.php:702
- msgid "Are you sure you want to reset all settings to default values?"
- msgstr ""
- #: classes/admin-options.class.php:677 fields/button_set/button_set.php:56
- #: fields/checkbox/checkbox.php:76 fields/radio/radio.php:75
- #: fields/select/select.php:113 functions/actions.php:41
- msgid "No data available."
- msgstr ""
- #: classes/setup.class.php:599
- msgid "Are you sure?"
- msgstr ""
- #: classes/setup.class.php:600
- #, php-format
- msgid "Please enter %s or more characters"
- msgstr ""
- #: classes/setup.class.php:601
- msgid "Searching..."
- msgstr ""
- #: classes/setup.class.php:602
- msgid "No results found."
- msgstr ""
- #: classes/setup.class.php:703
- msgid "Oops! Not allowed."
- msgstr ""
- #: classes/setup.class.php:771 classes/setup.class.php:775
- msgid "Field not found!"
- msgstr ""
- #: fields/background/background.php:36 fields/media/media.php:59
- msgid "Not selected"
- msgstr ""
- #: fields/background/background.php:72 fields/date/date.php:31
- #: fields/datetime/datetime.php:36
- msgid "From"
- msgstr ""
- #: fields/background/background.php:90 fields/date/date.php:32
- #: fields/datetime/datetime.php:37
- msgid "To"
- msgstr ""
- #: fields/background/background.php:108
- msgid "Direction"
- msgstr ""
- #: fields/background/background.php:114
- msgid "Gradient Direction"
- msgstr ""
- #: fields/background/background.php:115
- msgid "⇓ top to bottom"
- msgstr ""
- #: fields/background/background.php:116
- msgid "⇒ left to right"
- msgstr ""
- #: fields/background/background.php:117
- msgid "⇘ corner top to right"
- msgstr ""
- #: fields/background/background.php:118
- msgid "⇙ corner top to left"
- msgstr ""
- #: fields/background/background.php:161
- msgid "Background Position"
- msgstr ""
- #: fields/background/background.php:162
- msgid "Left Top"
- msgstr ""
- #: fields/background/background.php:163
- msgid "Left Center"
- msgstr ""
- #: fields/background/background.php:164
- msgid "Left Bottom"
- msgstr ""
- #: fields/background/background.php:165
- msgid "Center Top"
- msgstr ""
- #: fields/background/background.php:166
- msgid "Center Center"
- msgstr ""
- #: fields/background/background.php:167
- msgid "Center Bottom"
- msgstr ""
- #: fields/background/background.php:168
- msgid "Right Top"
- msgstr ""
- #: fields/background/background.php:169
- msgid "Right Center"
- msgstr ""
- #: fields/background/background.php:170
- msgid "Right Bottom"
- msgstr ""
- #: fields/background/background.php:184
- msgid "Background Repeat"
- msgstr ""
- #: fields/background/background.php:185
- msgid "Repeat"
- msgstr ""
- #: fields/background/background.php:186
- msgid "No Repeat"
- msgstr ""
- #: fields/background/background.php:187
- msgid "Repeat Horizontally"
- msgstr ""
- #: fields/background/background.php:188
- msgid "Repeat Vertically"
- msgstr ""
- #: fields/background/background.php:202
- msgid "Background Attachment"
- msgstr ""
- #: fields/background/background.php:203
- msgid "Scroll"
- msgstr ""
- #: fields/background/background.php:204
- msgid "Fixed"
- msgstr ""
- #: fields/background/background.php:218
- msgid "Background Size"
- msgstr ""
- #: fields/background/background.php:219 options/theme-options.php:677
- msgid "Cover"
- msgstr ""
- #: fields/background/background.php:220 options/theme-options.php:678
- msgid "Contain"
- msgstr ""
- #: fields/background/background.php:221 options/theme-options.php:679
- #: options/theme-options.php:888
- msgid "Auto"
- msgstr ""
- #: fields/background/background.php:235
- msgid "Background Origin"
- msgstr ""
- #: fields/background/background.php:236 fields/background/background.php:254
- msgid "Padding Box"
- msgstr ""
- #: fields/background/background.php:237 fields/background/background.php:253
- msgid "Border Box"
- msgstr ""
- #: fields/background/background.php:238 fields/background/background.php:255
- msgid "Content Box"
- msgstr ""
- #: fields/background/background.php:252
- msgid "Background Clip"
- msgstr ""
- #: fields/background/background.php:269
- msgid "Background Blend Mode"
- msgstr ""
- #: fields/background/background.php:270 fields/link_color/link_color.php:36
- #: fields/typography/typography.php:186
- msgid "Normal"
- msgstr ""
- #: fields/background/background.php:271
- msgid "Multiply"
- msgstr ""
- #: fields/background/background.php:272
- msgid "Screen"
- msgstr ""
- #: fields/background/background.php:273
- msgid "Overlay"
- msgstr ""
- #: fields/background/background.php:274
- msgid "Darken"
- msgstr ""
- #: fields/background/background.php:275
- msgid "Lighten"
- msgstr ""
- #: fields/background/background.php:276
- msgid "Color Dodge"
- msgstr ""
- #: fields/background/background.php:277
- msgid "Saturation"
- msgstr ""
- #: fields/background/background.php:278 options/theme-options.php:109
- msgid "Color"
- msgstr ""
- #: fields/background/background.php:279
- msgid "Luminosity"
- msgstr ""
- #: fields/backup/backup.php:26
- msgid "Import"
- msgstr ""
- #: fields/backup/backup.php:29
- msgid "Export & Download"
- msgstr ""
- #: fields/border/border.php:25 fields/spacing/spacing.php:25
- msgid "top"
- msgstr ""
- #: fields/border/border.php:26 fields/spacing/spacing.php:26
- msgid "right"
- msgstr ""
- #: fields/border/border.php:27 fields/spacing/spacing.php:27
- msgid "bottom"
- msgstr ""
- #: fields/border/border.php:28 fields/spacing/spacing.php:28
- msgid "left"
- msgstr ""
- #: fields/border/border.php:29 fields/spacing/spacing.php:29
- msgid "all"
- msgstr ""
- #: fields/border/border.php:51 fields/typography/typography.php:214
- msgid "Solid"
- msgstr ""
- #: fields/border/border.php:52 fields/typography/typography.php:217
- msgid "Dashed"
- msgstr ""
- #: fields/border/border.php:53 fields/typography/typography.php:216
- msgid "Dotted"
- msgstr ""
- #: fields/border/border.php:54 fields/typography/typography.php:215
- msgid "Double"
- msgstr ""
- #: fields/border/border.php:55
- msgid "Inset"
- msgstr ""
- #: fields/border/border.php:56
- msgid "Outset"
- msgstr ""
- #: fields/border/border.php:57
- msgid "Groove"
- msgstr ""
- #: fields/border/border.php:58
- msgid "ridge"
- msgstr ""
- #: fields/border/border.php:59 fields/typography/typography.php:199
- #: fields/typography/typography.php:213
- msgid "None"
- msgstr ""
- #: fields/dimensions/dimensions.php:22
- msgid "width"
- msgstr ""
- #: fields/dimensions/dimensions.php:23
- msgid "height"
- msgstr ""
- #: fields/gallery/gallery.php:20
- msgid "Add Gallery"
- msgstr ""
- #: fields/gallery/gallery.php:21
- msgid "Edit Gallery"
- msgstr ""
- #: fields/gallery/gallery.php:22
- msgid "Clear"
- msgstr ""
- #: fields/group/group.php:23
- msgid "Add New"
- msgstr ""
- #: fields/group/group.php:41 fields/repeater/repeater.php:27
- msgid "Error: Field ID conflict."
- msgstr ""
- #: fields/group/group.php:52 fields/group/group.php:107
- #: fields/repeater/repeater.php:48 fields/repeater/repeater.php:76
- msgid "Are you sure to delete this item?"
- msgstr ""
- #: fields/group/group.php:141 fields/repeater/repeater.php:89
- msgid "You cannot add more."
- msgstr ""
- #: fields/group/group.php:142 fields/repeater/repeater.php:90
- msgid "You cannot remove more."
- msgstr ""
- #: fields/icon/icon.php:20 fields/icon/icon.php:53
- msgid "Add Icon"
- msgstr ""
- #: fields/icon/icon.php:21
- msgid "Remove Icon"
- msgstr ""
- #: fields/link/link.php:20
- msgid "Add Link"
- msgstr ""
- #: fields/link/link.php:21
- msgid "Edit Link"
- msgstr ""
- #: fields/link/link.php:22
- msgid "Remove Link"
- msgstr ""
- #: fields/link_color/link_color.php:37
- msgid "Hover"
- msgstr ""
- #: fields/link_color/link_color.php:38
- msgid "Active"
- msgstr ""
- #: fields/link_color/link_color.php:39
- msgid "Visited"
- msgstr ""
- #: fields/link_color/link_color.php:40
- msgid "Focus"
- msgstr ""
- #: fields/map/map.php:24
- msgid "Latitude"
- msgstr ""
- #: fields/map/map.php:25
- msgid "Longitude"
- msgstr ""
- #: fields/media/media.php:25 fields/upload/upload.php:24
- msgid "Upload"
- msgstr ""
- #: fields/media/media.php:26 fields/upload/upload.php:25
- msgid "Remove"
- msgstr ""
- #: fields/sorter/sorter.php:21
- msgid "Enabled"
- msgstr ""
- #: fields/sorter/sorter.php:22
- msgid "Disabled"
- msgstr ""
- #: fields/switcher/switcher.php:20
- msgid "On"
- msgstr ""
- #: fields/switcher/switcher.php:21 options/theme-options.php:839
- #: options/theme-options.php:886 options/theme-options.php:1117
- #: options/theme-options.php:1297 options/theme-options.php:2877
- #: options/theme-options.php:2890
- msgid "Off"
- msgstr ""
- #: fields/typography/typography.php:96
- msgid "Font Family"
- msgstr ""
- #: fields/typography/typography.php:97
- msgid "Select a font"
- msgstr ""
- #: fields/typography/typography.php:105
- msgid "Backup Font Family"
- msgstr ""
- #: fields/typography/typography.php:119 fields/typography/typography.php:132
- #: fields/typography/typography.php:145 fields/typography/typography.php:160
- #: fields/typography/typography.php:176 fields/typography/typography.php:189
- #: fields/typography/typography.php:203 fields/typography/typography.php:221
- #: options/theme-options.php:700
- msgid "Default"
- msgstr ""
- #: fields/typography/typography.php:130
- msgid "Font Style"
- msgstr ""
- #: fields/typography/typography.php:144 fields/typography/typography.php:145
- msgid "Load Extra Styles"
- msgstr ""
- #: fields/typography/typography.php:158
- msgid "Subset"
- msgstr ""
- #: fields/typography/typography.php:168
- msgid "Text Align"
- msgstr ""
- #: fields/typography/typography.php:170
- msgid "Inherit"
- msgstr ""
- #: fields/typography/typography.php:171
- msgid "Left"
- msgstr ""
- #: fields/typography/typography.php:172
- msgid "Center"
- msgstr ""
- #: fields/typography/typography.php:173
- msgid "Right"
- msgstr ""
- #: fields/typography/typography.php:174
- msgid "Justify"
- msgstr ""
- #: fields/typography/typography.php:175
- msgid "Initial"
- msgstr ""
- #: fields/typography/typography.php:184
- msgid "Font Variant"
- msgstr ""
- #: fields/typography/typography.php:187
- msgid "Small Caps"
- msgstr ""
- #: fields/typography/typography.php:188
- msgid "All Small Caps"
- msgstr ""
- #: fields/typography/typography.php:197
- msgid "Text Transform"
- msgstr ""
- #: fields/typography/typography.php:200
- msgid "Capitalize"
- msgstr ""
- #: fields/typography/typography.php:201
- msgid "Uppercase"
- msgstr ""
- #: fields/typography/typography.php:202
- msgid "Lowercase"
- msgstr ""
- #: fields/typography/typography.php:211
- msgid "Text Decoration"
- msgstr ""
- #: fields/typography/typography.php:218
- msgid "Wavy"
- msgstr ""
- #: fields/typography/typography.php:219
- msgid "Overline"
- msgstr ""
- #: fields/typography/typography.php:220
- msgid "Line-through"
- msgstr ""
- #: fields/typography/typography.php:233
- msgid "Font Size"
- msgstr ""
- #: fields/typography/typography.php:245
- msgid "Line Height"
- msgstr ""
- #: fields/typography/typography.php:257
- msgid "Letter Spacing"
- msgstr ""
- #: fields/typography/typography.php:269
- msgid "Word Spacing"
- msgstr ""
- #: fields/typography/typography.php:284
- msgid "Font Color"
- msgstr ""
- #: fields/typography/typography.php:295
- msgid "Custom Style"
- msgstr ""
- #: fields/typography/typography.php:362
- msgid "Custom Web Fonts"
- msgstr ""
- #: fields/typography/typography.php:368
- msgid "Safe Web Fonts"
- msgstr ""
- #: fields/typography/typography.php:388
- msgid "Google Web Fonts"
- msgstr ""
- #: functions/actions.php:16 functions/actions.php:68 functions/actions.php:106
- #: functions/actions.php:141 functions/actions.php:170
- msgid "Error: Invalid nonce verification."
- msgstr ""
- #: functions/actions.php:72 functions/actions.php:110
- msgid "Error: Invalid key."
- msgstr ""
- #: functions/actions.php:114
- msgid "Error: The response is not a valid JSON response."
- msgstr ""
- #: functions/actions.php:174
- msgid "Error: Invalid term ID."
- msgstr ""
- #: functions/actions.php:180
- msgid "Error: You do not have permission to do that."
- msgstr ""
- #: functions/validate.php:14 functions/validate.php:86
- msgid "Please enter a valid email address."
- msgstr ""
- #: functions/validate.php:32 functions/validate.php:106
- msgid "Please enter a valid number."
- msgstr ""
- #: functions/validate.php:50 functions/validate.php:126
- msgid "This field is required."
- msgstr ""
- #: functions/validate.php:68 functions/validate.php:146
- msgid "Please enter a valid URL."
- msgstr ""
- #: options/theme-options.php:15
- msgid "iro-Options"
- msgstr ""
- #: options/theme-options.php:20
- msgid "Hello!"
- msgstr ""
- #: options/theme-options.php:26
- msgid "News+"
- msgstr ""
- #: options/theme-options.php:31
- msgid ""
- "<img src=\"https://news.maho.cc/sakurairo.php\" alt=\"News_Plus\" width=\"100%\" "
- "height=\"100%\" />"
- msgstr ""
- #: options/theme-options.php:39
- msgid "Preliminary Options"
- msgstr ""
- #: options/theme-options.php:46
- msgid ""
- "You can click <a href=\"https://wiki.fuukei.org/category/theme_sakurairo/"
- "preliminary/\">here</a> to learn how to set the options on this page"
- msgstr ""
- #: options/theme-options.php:52
- msgid "Site Name"
- msgstr ""
- #: options/theme-options.php:53
- msgid "For example: Sakurairo Blog"
- msgstr ""
- #: options/theme-options.php:59
- msgid "Author Name"
- msgstr ""
- #: options/theme-options.php:60
- msgid "For example: Fuukei"
- msgstr ""
- #: options/theme-options.php:66
- msgid "Personal Avatar"
- msgstr ""
- #: options/theme-options.php:67 options/theme-options.php:512
- #: options/theme-options.php:1796 options/theme-options.php:1949
- #: options/theme-options.php:1974
- msgid "The best length-width ratio of is 1:1"
- msgstr ""
- #: options/theme-options.php:74
- msgid "Mashiro Special Effects Text"
- msgstr ""
- #: options/theme-options.php:75
- msgid ""
- "After turned on, the personal avatar will be replaced by the text as the home "
- "page display content"
- msgstr ""
- #: options/theme-options.php:82
- msgid "Mashiro Special Effects Text Options"
- msgstr ""
- #: options/theme-options.php:88
- msgid "Text"
- msgstr ""
- #: options/theme-options.php:89
- msgid ""
- "The text content should not be too long, and the recommended length is 16 bytes."
- msgstr ""
- #: options/theme-options.php:94
- msgid "Font"
- msgstr ""
- #: options/theme-options.php:95 options/theme-options.php:807
- #: options/theme-options.php:815 options/theme-options.php:1510
- #: options/theme-options.php:2711
- msgid "Fill in the font name. For example: Ma Shan Zheng"
- msgstr ""
- #: options/theme-options.php:100
- msgid "Size"
- msgstr ""
- #: options/theme-options.php:101
- msgid "Slide to adjust, the recommended value range is 70-90"
- msgstr ""
- #: options/theme-options.php:110 options/theme-options.php:646
- #: options/theme-options.php:1475 options/theme-options.php:1660
- #: options/theme-options.php:2195
- msgid "Customize the colors, light colors are recommended"
- msgstr ""
- #: options/theme-options.php:123
- msgid "Navigation Menu Logo"
- msgstr ""
- #: options/theme-options.php:124
- msgid ""
- "The best size is 40px, and the nav menu text logo will not be displayed after "
- "filling in"
- msgstr ""
- #: options/theme-options.php:131
- msgid "Site Icon"
- msgstr ""
- #: options/theme-options.php:132
- msgid ""
- "Fill in the address, which decides the icon next to the title above the browser"
- msgstr ""
- #: options/theme-options.php:139
- msgid "Custom Site Keywords and Descriptions"
- msgstr ""
- #: options/theme-options.php:140
- msgid "After turning on, you can customize the site keywords and descriptions"
- msgstr ""
- #: options/theme-options.php:147
- msgid "Site Keywords"
- msgstr ""
- #: options/theme-options.php:149
- msgid ""
- "The keywords should be separated with half width comma \",\" and it's better to "
- "set within 5 keywords"
- msgstr ""
- #: options/theme-options.php:155
- msgid "Site Descriptions"
- msgstr ""
- #: options/theme-options.php:157
- msgid ""
- "Use concise words to describe the site, it is recommended to write within 120 "
- "words"
- msgstr ""
- #: options/theme-options.php:165
- msgid "Global Options"
- msgstr ""
- #: options/theme-options.php:171
- msgid "Appearance Options"
- msgstr ""
- #: options/theme-options.php:178
- msgid ""
- "You can click <a href=\"https://wiki.fuukei.org/category/theme_sakurairo/global/"
- "appearance/\">here</a> to learn how to set the options on this page"
- msgstr ""
- #: options/theme-options.php:183
- msgid "Color Schemes"
- msgstr ""
- #: options/theme-options.php:189
- msgid "Theme Color"
- msgstr ""
- #: options/theme-options.php:190 options/theme-options.php:198
- #: options/theme-options.php:211 options/theme-options.php:1088
- #: options/theme-options.php:1097 options/theme-options.php:2687
- #: options/theme-options.php:2695 options/theme-options.php:3094
- #: options/theme-options.php:3102 options/theme-options.php:3110
- #: options/theme-options.php:3118 options/theme-options.php:3126
- msgid "Customize the colors"
- msgstr ""
- #: options/theme-options.php:197
- msgid "Matching Color"
- msgstr ""
- #: options/theme-options.php:204
- msgid "Dark Mode"
- msgstr ""
- #: options/theme-options.php:210
- msgid "Dark Mode Theme Color"
- msgstr ""
- #: options/theme-options.php:217
- msgid "Automatically Switch to Dark Mode"
- msgstr ""
- #: options/theme-options.php:218 options/theme-options.php:1409
- msgid "Default on"
- msgstr ""
- #: options/theme-options.php:224
- msgid ""
- "<p><strong>Client local time:</strong>Dark mode will switch on automatically from "
- "22:00 to 7:00</p><p><strong>Follow client settings:</strong>Follow client browser "
- "settings</p><p><strong>Always on:</strong>Always on, except being configured by "
- "the client</p>"
- msgstr ""
- #: options/theme-options.php:233
- msgid "Automatic Switch Strategy of Dark Mode"
- msgstr ""
- #: options/theme-options.php:236
- msgid "Client local time"
- msgstr ""
- #: options/theme-options.php:237
- msgid "Follow client settings"
- msgstr ""
- #: options/theme-options.php:238
- msgid "Always on"
- msgstr ""
- #: options/theme-options.php:246
- msgid "Dark Mode Image Brightness"
- msgstr ""
- #: options/theme-options.php:247 options/theme-options.php:258
- msgid "Slide to adjust, the recommended value range is 0.6-0.8"
- msgstr ""
- #: options/theme-options.php:257
- msgid "Dark Mode Component Transparency"
- msgstr ""
- #: options/theme-options.php:267
- msgid "Dark mode Background Transparency"
- msgstr ""
- #: options/theme-options.php:268
- msgid ""
- "Slide to adjust, the recommended value range is 0.6-0.8. In order to ensure the "
- "best appearance, please keep the display of the frontend background image"
- msgstr ""
- #: options/theme-options.php:277
- msgid "Other Appearance Related"
- msgstr ""
- #: options/theme-options.php:283
- msgid "Commemorate Mode"
- msgstr ""
- #: options/theme-options.php:284
- msgid "After turning on, a black and white filter will be added to the global theme"
- msgstr ""
- #: options/theme-options.php:291
- msgid "Occupying SVG while Loading Control Units"
- msgstr ""
- #: options/theme-options.php:292
- msgid "Fill in the address, which is the SVG displayed when loading control units"
- msgstr ""
- #: options/theme-options.php:301
- msgid "Font Options"
- msgstr ""
- #: options/theme-options.php:308
- msgid ""
- "You can click <a href=\"https://wiki.fuukei.org/category/theme_sakurairo/global/"
- "font/\">here</a> to learn how to set the options on this page"
- msgstr ""
- #: options/theme-options.php:313
- msgid "Global"
- msgstr ""
- #: options/theme-options.php:319
- msgid "Non-Emphasis Text Weight"
- msgstr ""
- #: options/theme-options.php:320
- msgid "Slide to adjust, the recommended value range is 300-500"
- msgstr ""
- #: options/theme-options.php:330
- msgid "Text Font Size"
- msgstr ""
- #: options/theme-options.php:331 options/theme-options.php:1518
- msgid "Slide to adjust, the recommended value range is 15-18"
- msgstr ""
- #: options/theme-options.php:341
- msgid "External Fonts"
- msgstr ""
- #: options/theme-options.php:347
- msgid "Reference External Fonts"
- msgstr ""
- #: options/theme-options.php:348
- msgid ""
- "After turning on, you can use external fonts as the default font or other "
- "component fonts, but it may affect performance"
- msgstr ""
- #: options/theme-options.php:355
- msgid "External Font Link"
- msgstr ""
- #: options/theme-options.php:362
- msgid "External Font Name"
- msgstr ""
- #: options/theme-options.php:369
- msgid "Google Fonts Api Link"
- msgstr ""
- #: options/theme-options.php:376
- msgid "Google Fonts Name"
- msgstr ""
- #: options/theme-options.php:377
- msgid ""
- "Please make sure that the added fonts can be referenced in Google Fonts library. "
- "Fill in the font names. The added fonts must be preceded by \"|\". If multiple "
- "fonts are referenced, use \"|\" as the separator. If the font name has spaces, "
- "use a plus sign instead. For example: | zcool + xiaowei| Ma + Shan + Zheng"
- msgstr ""
- #: options/theme-options.php:385
- msgid "Navigation Menu Options"
- msgstr ""
- #: options/theme-options.php:392
- msgid ""
- "You can click <a href=\"https://wiki.fuukei.org/category/theme_sakurairo/global/"
- "navigation_menu/\">here</a> to learn how to set the options on this page"
- msgstr ""
- #: options/theme-options.php:398
- msgid "Nav Menu Style"
- msgstr ""
- #: options/theme-options.php:409
- msgid "Nav Menu Radius"
- msgstr ""
- #: options/theme-options.php:411 options/theme-options.php:531
- #: options/theme-options.php:662 options/theme-options.php:2207
- msgid "Slide to adjust, the recommended value is 15"
- msgstr ""
- #: options/theme-options.php:420
- msgid "Nav Menu Shrinkage Ratio"
- msgstr ""
- #: options/theme-options.php:422
- msgid ""
- "Slide to set the appropriate ratio according to the content length of the nav "
- "menu. When the ratio is set to 95,there will be no shrinkage. This function is "
- "off by default"
- msgstr ""
- #: options/theme-options.php:433
- msgid "Nav Menu Content Display Method"
- msgstr ""
- #: options/theme-options.php:434
- msgid "You can choose to unfold or fold the nav menu contents"
- msgstr ""
- #: options/theme-options.php:436
- msgid "Unfold"
- msgstr ""
- #: options/theme-options.php:437
- msgid "Fold"
- msgstr ""
- #: options/theme-options.php:445
- msgid "Nav Menu Animation Effects"
- msgstr ""
- #: options/theme-options.php:446
- msgid ""
- "It is on by default. If it is off, the nav menu content will be displayed "
- "directly without effects"
- msgstr ""
- #: options/theme-options.php:453
- msgid "Nav Menu Animation Time"
- msgstr ""
- #: options/theme-options.php:455 options/theme-options.php:1445
- msgid "Slide to adjust, the recommended value range is 1-2"
- msgstr ""
- #: options/theme-options.php:465
- msgid "Nav Menu Icon Size"
- msgstr ""
- #: options/theme-options.php:467
- msgid "Standard"
- msgstr ""
- #: options/theme-options.php:468
- msgid "Large"
- msgstr ""
- #: options/theme-options.php:476
- msgid "Nav Menu Search"
- msgstr ""
- #: options/theme-options.php:477
- msgid "It is on by default. Click to enter the search area"
- msgstr ""
- #: options/theme-options.php:483
- msgid "Nav Menu Blur"
- msgstr ""
- #: options/theme-options.php:484
- msgid ""
- "Slide to adjust, the recommended value is 5px, and this function will be off when "
- "set to 0px"
- msgstr ""
- #: options/theme-options.php:493
- msgid "Search Area Background Image"
- msgstr ""
- #: options/theme-options.php:494
- msgid ""
- "Set the background image of your search area. Leave this option blank to display "
- "a white background"
- msgstr ""
- #: options/theme-options.php:502
- msgid "Nav Menu User Avatar"
- msgstr ""
- #: options/theme-options.php:503
- msgid "It is on by default. Click to enter the login interface"
- msgstr ""
- #: options/theme-options.php:510
- msgid "Nav Menu Unlisted User Avatar"
- msgstr ""
- #: options/theme-options.php:520
- msgid "Secondary Menu Prompt Arrow"
- msgstr ""
- #: options/theme-options.php:521
- msgid ""
- "After turning on, the menu prompt arrow will appear in the secondary menu of the "
- "navigation menu"
- msgstr ""
- #: options/theme-options.php:529
- msgid "Secondary Menu Radius"
- msgstr ""
- #: options/theme-options.php:540
- msgid "Nav Menu Logo Text"
- msgstr ""
- #: options/theme-options.php:541
- msgid ""
- "Fill in the text. If the Mashiro logo is turned on, this option will be invalid"
- msgstr ""
- #: options/theme-options.php:548
- msgid "Mashiro Logo"
- msgstr ""
- #: options/theme-options.php:549
- msgid ""
- "After turning on, the Mashiro Logo will appear and replace the navigation menu "
- "logo position"
- msgstr ""
- #: options/theme-options.php:556
- msgid "Mashiro Logo Options"
- msgstr ""
- #: options/theme-options.php:562
- msgid "Text A"
- msgstr ""
- #: options/theme-options.php:567
- msgid "Text B"
- msgstr ""
- #: options/theme-options.php:572
- msgid "Text C"
- msgstr ""
- #: options/theme-options.php:577
- msgid "Secondary Text"
- msgstr ""
- #: options/theme-options.php:582
- msgid "Font Link"
- msgstr ""
- #: options/theme-options.php:587
- msgid "Font Name"
- msgstr ""
- #: options/theme-options.php:605
- msgid "Style Menu and Frontend Background Related Options"
- msgstr ""
- #: options/theme-options.php:612
- msgid ""
- "You can click <a href=\"https://wiki.fuukei.org/category/theme_sakurairo/global/"
- "style_menu_and_frontend_background_related/\">here</a> to learn how to set the "
- "options on this page"
- msgstr ""
- #: options/theme-options.php:617
- msgid "Style Menu"
- msgstr ""
- #: options/theme-options.php:623
- msgid "Style Menu Display"
- msgstr ""
- #: options/theme-options.php:624
- msgid ""
- "You can choose to display the style menu simply or in full. The full display will "
- "show the font toggle function and text hints"
- msgstr ""
- #: options/theme-options.php:635
- msgid "Style Menu Button Radius"
- msgstr ""
- #: options/theme-options.php:636
- msgid "Slide to adjust, the recommended value is 10"
- msgstr ""
- #: options/theme-options.php:645
- msgid "Style Menu Background Color"
- msgstr ""
- #: options/theme-options.php:653
- msgid "Style Menu Option Background Color"
- msgstr ""
- #: options/theme-options.php:654 options/theme-options.php:2064
- msgid ""
- "Customize the colors, it is recommended to use a light color that corresponds "
- "with the theme color"
- msgstr ""
- #: options/theme-options.php:661
- msgid "Style Menu Options Interface Radius"
- msgstr ""
- #: options/theme-options.php:670
- msgid "Frontend Background"
- msgstr ""
- #: options/theme-options.php:681
- msgid "Frontend Background Scaling Method"
- msgstr ""
- #: options/theme-options.php:682
- msgid ""
- "You can choose two ways to scale the frontend background, the default is auto-"
- "scaling"
- msgstr ""
- #: options/theme-options.php:689
- msgid "Background Transparency Blur"
- msgstr ""
- #: options/theme-options.php:690
- msgid "After opening Background Transparency Blur"
- msgstr ""
- #: options/theme-options.php:697
- msgid "Frontend Background Options"
- msgstr ""
- #: options/theme-options.php:706 options/theme-options.php:722
- #: options/theme-options.php:738 options/theme-options.php:754
- #: options/theme-options.php:770
- msgid "Image"
- msgstr ""
- #: options/theme-options.php:711
- msgid "Heart Shaped"
- msgstr ""
- #: options/theme-options.php:717 options/theme-options.php:733
- #: options/theme-options.php:749 options/theme-options.php:765
- msgid "Switch"
- msgstr ""
- #: options/theme-options.php:727
- msgid "Star Shaped"
- msgstr ""
- #: options/theme-options.php:743
- msgid "Square Shaped"
- msgstr ""
- #: options/theme-options.php:759
- msgid "Lemon Shaped"
- msgstr ""
- #: options/theme-options.php:790
- msgid "Background Transparency in the Frontend"
- msgstr ""
- #: options/theme-options.php:791
- msgid "Slide to adjust, the recommended sliding value range is 0.6-0.8"
- msgstr ""
- #: options/theme-options.php:800
- msgid "Font Area"
- msgstr ""
- #: options/theme-options.php:806
- msgid "Global Default Font/Style Menu Font A"
- msgstr ""
- #: options/theme-options.php:813
- msgid "Style Menu Font B"
- msgstr ""
- #: options/theme-options.php:823
- msgid "Footer Options"
- msgstr ""
- #: options/theme-options.php:830
- msgid ""
- "You can click <a href=\"https://wiki.fuukei.org/category/theme_sakurairo/global/"
- "footer/\">here</a> to learn how to set the options on this page"
- msgstr ""
- #: options/theme-options.php:836
- msgid "Footer Online Music Player"
- msgstr ""
- #: options/theme-options.php:837
- msgid ""
- "A button will appear at the bottom left corner of the footer after turning on, "
- "click it and the footer online player will be displayed"
- msgstr ""
- #: options/theme-options.php:840
- msgid "Netease Cloud Music"
- msgstr ""
- #: options/theme-options.php:841
- msgid "Kugou Music(may not be available)"
- msgstr ""
- #: options/theme-options.php:842
- msgid "Baidu Music(not available on servers overseas)"
- msgstr ""
- #: options/theme-options.php:843
- msgid "QQ Music(may not be available)"
- msgstr ""
- #: options/theme-options.php:851
- msgid "Footer Online Music Player Proxy"
- msgstr ""
- #: options/theme-options.php:853
- msgid ""
- "Ex. http://127.0.0.1:8080. Reference: https://curl.se/libcurl/c/CURLOPT_PROXY.html"
- msgstr ""
- #: options/theme-options.php:860
- msgid "Footer Online Music Player Songlist ID"
- msgstr ""
- #: options/theme-options.php:862
- msgid ""
- "Fill in the song ID, e.g. https://music.163.com/#/playlist?id=5380675133 "
- "SongID:5380675133"
- msgstr ""
- #: options/theme-options.php:869
- msgid "Footer Online Music Player Mode"
- msgstr ""
- #: options/theme-options.php:871
- msgid "Select music player mode"
- msgstr ""
- #: options/theme-options.php:873
- msgid "List"
- msgstr ""
- #: options/theme-options.php:874
- msgid "Random"
- msgstr ""
- #: options/theme-options.php:882
- msgid "Footer Online Music Player Preload"
- msgstr ""
- #: options/theme-options.php:884
- msgid "Whether to preload songs"
- msgstr ""
- #: options/theme-options.php:887
- msgid "Preload Metadata"
- msgstr ""
- #: options/theme-options.php:896
- msgid "Default Volume of Footer Online Music Player"
- msgstr ""
- #: options/theme-options.php:898
- msgid "Slide to adjust, the recommended sliding value range is 0.4-0.6"
- msgstr ""
- #: options/theme-options.php:907
- msgid "Netease Cloud Music Cookies"
- msgstr ""
- #: options/theme-options.php:909
- msgid ""
- "If you want to play VIP music on Netease Cloud Music Platform, please fill in "
- "your account cookies in this option."
- msgstr ""
- #: options/theme-options.php:915
- msgid "Footer Widget Area"
- msgstr ""
- #: options/theme-options.php:916
- msgid ""
- "After turning it on, a button will appear in the bottom of the left corner of the "
- "footer, when you click the button the footer widget area will be displayed, if "
- "you have the footer online player turned on it will be displayed together"
- msgstr ""
- #: options/theme-options.php:923
- msgid "Footer Widget Area Background"
- msgstr ""
- #: options/theme-options.php:925
- msgid "The best picture size is 400px × 460px"
- msgstr ""
- #: options/theme-options.php:932
- msgid "Footer Dynamic Sakura Icon"
- msgstr ""
- #: options/theme-options.php:933
- msgid "Dynamic Sakura icon will appear at the end of the page after turning on"
- msgstr ""
- #: options/theme-options.php:940
- msgid "Footer Load Occupancy Query"
- msgstr ""
- #: options/theme-options.php:941
- msgid ""
- "Load occupancy information will appear at the end of the page after turning it "
- "on. Not recommended in production environment."
- msgstr ""
- #: options/theme-options.php:948
- msgid "Footer Upyun League Logo"
- msgstr ""
- #: options/theme-options.php:949
- msgid "Upyun Logo will appear at the end of the page after turning it on"
- msgstr ""
- #: options/theme-options.php:956
- msgid "Footer Info"
- msgstr ""
- #: options/theme-options.php:957
- msgid "Footer description text, supports HTML code"
- msgstr ""
- #: options/theme-options.php:965
- msgid "Footer Addition"
- msgstr ""
- #: options/theme-options.php:966
- msgid ""
- "Add HTML code at the end of the page. Useful for adding customize JavaScript."
- msgstr ""
- #: options/theme-options.php:971
- msgid "Hitokoto"
- msgstr ""
- #: options/theme-options.php:977
- msgid "Footer Hitokoto"
- msgstr ""
- #: options/theme-options.php:978
- msgid "Hitokoto will appear at the end of the page after turning it on"
- msgstr ""
- #: options/theme-options.php:985
- msgid ""
- "<h4>Hitokoto API Setup Instructions</h4> <p>Fill in as the example:<code> "
- "[\"https://api.maho.cc/yiyan/\", \"https://v1.hitokoto.cn/\"]</code>, where the "
- "first API will be used first and the next ones will be the backup. </p> "
- "<p><strong>Official API:</strong> See the <a href=\"https://developer.hitokoto.cn/"
- "sentence/\"> documentation</a> for how to use it, and the parameter \"return code"
- "\" should not be anything except JSON. <a href=\"https://v1.hitokoto.cn/"
- "\">https://v1.hitokoto.cn/</a></p> <p><strong>Maho API:</strong> An reverse proxy "
- "mirror of the official API. <a href=\"https://api.maho.cc/yiyan/\">https://api."
- "maho.cc/yiyan/</a></p>"
- msgstr ""
- #: options/theme-options.php:994
- msgid "Hitokoto API address"
- msgstr ""
- #: options/theme-options.php:996
- msgid "Fill in the address in JavaScript array format"
- msgstr ""
- #: options/theme-options.php:1005
- msgid "Cursor Options"
- msgstr ""
- #: options/theme-options.php:1012
- msgid ""
- "You can click <a href=\"https://wiki.fuukei.org/category/theme_sakurairo/global/"
- "cursor/\">here</a> to learn how to set the options on this page"
- msgstr ""
- #: options/theme-options.php:1018
- msgid "Standard Cursor Style"
- msgstr ""
- #: options/theme-options.php:1019
- msgid "Apply to global, fill in \".cur\" mouse file link"
- msgstr ""
- #: options/theme-options.php:1026
- msgid "Selected Cursor Style"
- msgstr ""
- #: options/theme-options.php:1027
- msgid "Apply to multiple styles, fill in \".cur\" file link"
- msgstr ""
- #: options/theme-options.php:1034
- msgid "Selected Control Unit Cursor Style"
- msgstr ""
- #: options/theme-options.php:1035
- msgid "Apply to selected control unit, fill in \".cur\" file link"
- msgstr ""
- #: options/theme-options.php:1042
- msgid "Selected Text Cursor Style"
- msgstr ""
- #: options/theme-options.php:1043
- msgid "Apply to selected text, fill in \".cur\" file link"
- msgstr ""
- #: options/theme-options.php:1050
- msgid "Work Status Cursor Style"
- msgstr ""
- #: options/theme-options.php:1051
- msgid "Apply to load control unit, fill in \".cur\" file link"
- msgstr ""
- #: options/theme-options.php:1060
- msgid "Additional Options"
- msgstr ""
- #: options/theme-options.php:1067
- msgid ""
- "You can click <a href=\"https://wiki.fuukei.org/category/theme_sakurairo/global/"
- "additional/\">here</a> to learn how to set the options on this page"
- msgstr ""
- #: options/theme-options.php:1072
- msgid "Effects&Animations"
- msgstr ""
- #: options/theme-options.php:1078
- msgid "Preload Animation"
- msgstr ""
- #: options/theme-options.php:1079
- msgid ""
- "Preload animation before new pages load; To enable this option, ensure your page "
- "resources can load properly."
- msgstr ""
- #: options/theme-options.php:1086
- msgid "Preload Animation Color A"
- msgstr ""
- #: options/theme-options.php:1095
- msgid "Preload Animation Color B"
- msgstr ""
- #: options/theme-options.php:1103
- msgid "Preload Animation Blur Transition Effect"
- msgstr ""
- #: options/theme-options.php:1105
- msgid "Blur transition duration in milliseconds ms, off when set to 0."
- msgstr ""
- #: options/theme-options.php:1115
- msgid "Sakura Falling Effects"
- msgstr ""
- #: options/theme-options.php:1118
- msgid "Native Quantity"
- msgstr ""
- #: options/theme-options.php:1119
- msgid "Quarter Quantity"
- msgstr ""
- #: options/theme-options.php:1120
- msgid "Half Quantity"
- msgstr ""
- #: options/theme-options.php:1121
- msgid "Less Quantity"
- msgstr ""
- #: options/theme-options.php:1129
- msgid "Particles Effects"
- msgstr ""
- #: options/theme-options.php:1131
- msgid ""
- "Particles effects will appear in the global background. Please open the Cover-and-"
- "Frontend-Background-Integration Options to get the best experience"
- msgstr ""
- #: options/theme-options.php:1139
- msgid "Particles JSON"
- msgstr ""
- #: options/theme-options.php:1141
- msgid ""
- "You can go to the <a href=\"https://vincentgarreau.com/particles.js/\">Project "
- "Address</a> to generate your unique Particles Effects"
- msgstr ""
- #: options/theme-options.php:1258
- msgid "Note Touch Effects"
- msgstr ""
- #: options/theme-options.php:1259
- msgid ""
- "After turning on, there will be a note sound alert when the back to top button "
- "and Mashiro style logo touch"
- msgstr ""
- #: options/theme-options.php:1265
- msgid "Feature"
- msgstr ""
- #: options/theme-options.php:1271
- msgid "PJAX Partial Refresh"
- msgstr ""
- #: options/theme-options.php:1272
- msgid "Enabled by default, clicking to a new page will not require reloading"
- msgstr ""
- #: options/theme-options.php:1279
- msgid "NProgress Loading Progress Bar"
- msgstr ""
- #: options/theme-options.php:1280
- msgid "Enabled by default, when loading page there will be a progress bar alert"
- msgstr ""
- #: options/theme-options.php:1287
- msgid "Global Smooth Scroll"
- msgstr ""
- #: options/theme-options.php:1288
- msgid "Enabled by default, page scrolling will be smoother"
- msgstr ""
- #: options/theme-options.php:1295
- msgid "Captcha Selection"
- msgstr ""
- #: options/theme-options.php:1298
- msgid "Theme Built in Captcha"
- msgstr ""
- #: options/theme-options.php:1299
- msgid "Vaptcha"
- msgstr ""
- #: options/theme-options.php:1307
- msgid "Vaptcha VID"
- msgstr ""
- #: options/theme-options.php:1309
- msgid "Fill in your Vaptcha VID"
- msgstr ""
- #: options/theme-options.php:1315
- msgid "Vaptcha KEY"
- msgstr ""
- #: options/theme-options.php:1317
- msgid "Fill in your Vaptcha KEY"
- msgstr ""
- #: options/theme-options.php:1323
- msgid "Vaptcha Scene"
- msgstr ""
- #: options/theme-options.php:1339
- msgid "Pagination Mode"
- msgstr ""
- #: options/theme-options.php:1341
- msgid "Ajax Load"
- msgstr ""
- #: options/theme-options.php:1342
- msgid "Page Up/Down"
- msgstr ""
- #: options/theme-options.php:1350
- msgid "Next Page Auto Load"
- msgstr ""
- #: options/theme-options.php:1353
- msgid "do not autoload"
- msgstr ""
- #: options/theme-options.php:1354
- msgid "0 Sec"
- msgstr ""
- #: options/theme-options.php:1355
- msgid "1 Sec"
- msgstr ""
- #: options/theme-options.php:1356
- msgid "2 Sec"
- msgstr ""
- #: options/theme-options.php:1357
- msgid "3 Sec"
- msgstr ""
- #: options/theme-options.php:1358
- msgid "4 Sec"
- msgstr ""
- #: options/theme-options.php:1359
- msgid "5 Sec"
- msgstr ""
- #: options/theme-options.php:1360
- msgid "6 Sec"
- msgstr ""
- #: options/theme-options.php:1361
- msgid "7 Sec"
- msgstr ""
- #: options/theme-options.php:1362
- msgid "8 Sec"
- msgstr ""
- #: options/theme-options.php:1363
- msgid "9 Sec"
- msgstr ""
- #: options/theme-options.php:1364
- msgid "10 Sec"
- msgstr ""
- #: options/theme-options.php:1372
- msgid "Placeholder SVG when loading the next page"
- msgstr ""
- #: options/theme-options.php:1373
- msgid ""
- "Fill in the address, this is the SVG that will be displayed as a placeholder when "
- "the next page is loading"
- msgstr ""
- #: options/theme-options.php:1381
- msgid "HomePage Options"
- msgstr ""
- #: options/theme-options.php:1387
- msgid "Cover Options"
- msgstr ""
- #: options/theme-options.php:1394
- msgid ""
- "You can click <a href=\"https://wiki.fuukei.org/category/theme_sakurairo/homepage/"
- "cover/\">here</a> to learn how to set the options on this page"
- msgstr ""
- #: options/theme-options.php:1400
- msgid "Cover Switch"
- msgstr ""
- #: options/theme-options.php:1401
- msgid "On by default, if off, all options below will be disabled"
- msgstr ""
- #: options/theme-options.php:1408
- msgid "Cover Full Screen"
- msgstr ""
- #: options/theme-options.php:1417
- msgid "Cover Arc Occlusion (Below)"
- msgstr ""
- #: options/theme-options.php:1418
- msgid "An arc occlusion will appear below the cover when turned on"
- msgstr ""
- #: options/theme-options.php:1425
- msgid "Cover Radius"
- msgstr ""
- #: options/theme-options.php:1426
- msgid "Slide to adjust, the recommended value range is 15-20"
- msgstr ""
- #: options/theme-options.php:1435
- msgid "Cover Animation"
- msgstr ""
- #: options/theme-options.php:1436
- msgid "On by default, if off, the cover will be displayed directly"
- msgstr ""
- #: options/theme-options.php:1443
- msgid "Cover Animation Time"
- msgstr ""
- #: options/theme-options.php:1455
- msgid "Cover Info Bar"
- msgstr ""
- #: options/theme-options.php:1456
- msgid ""
- "Enabled by default, show avatar, Mashiro effects text, signature bar, social area"
- msgstr ""
- #: options/theme-options.php:1463
- msgid "Cover Info Bar Style"
- msgstr ""
- #: options/theme-options.php:1474
- msgid "Cover Info Bar Background Color"
- msgstr ""
- #: options/theme-options.php:1482
- msgid "Cover Info Bar Avatar Radius"
- msgstr ""
- #: options/theme-options.php:1483
- msgid "Slide to adjust, the recommended value is 100"
- msgstr ""
- #: options/theme-options.php:1491
- msgid "Cover Signature Bar Rounded"
- msgstr ""
- #: options/theme-options.php:1492
- msgid "Slide to adjust, the recommended value range 10-20"
- msgstr ""
- #: options/theme-options.php:1501
- msgid "Cover Signature Field Text"
- msgstr ""
- #: options/theme-options.php:1502 options/theme-options.php:2637
- msgid "A self-descriptive quote"
- msgstr ""
- #: options/theme-options.php:1509
- msgid "Cover Signature Field Text Font"
- msgstr ""
- #: options/theme-options.php:1517
- msgid "Cover Signature Field Text Font Size"
- msgstr ""
- #: options/theme-options.php:1528
- msgid "Cover Signature Bar Typing Effects"
- msgstr ""
- #: options/theme-options.php:1529
- msgid ""
- "When turned on, the signature bar text will have an additional paragraph of text "
- "and will be rendered with typing effects"
- msgstr ""
- #: options/theme-options.php:1536
- msgid "Cover Signature Field Typing Effects Double Quotes"
- msgstr ""
- #: options/theme-options.php:1538
- msgid "Typing effects will be appended with double quotes when turned on"
- msgstr ""
- #: options/theme-options.php:1545
- msgid "Cover Signature Field Typing Effects Placeholder"
- msgstr ""
- #: options/theme-options.php:1554
- msgid "Typed.js initial option"
- msgstr ""
- #: options/theme-options.php:1562
- msgid "Cover Random Image Options"
- msgstr ""
- #: options/theme-options.php:1564
- msgid "External API"
- msgstr ""
- #: options/theme-options.php:1565
- msgid "Webp optimized"
- msgstr ""
- #: options/theme-options.php:1566
- msgid "Local"
- msgstr ""
- #: options/theme-options.php:1574
- msgid "Cover Random Image Multi-terminal Separation"
- msgstr ""
- #: options/theme-options.php:1575
- msgid ""
- "Enabled by default, desktop and mobile devices will use separate random image "
- "addresses"
- msgstr ""
- #: options/theme-options.php:1582
- msgid "Webp Optimization/External API Desktop Side Random Graphics Address"
- msgstr ""
- #: options/theme-options.php:1583 options/theme-options.php:1594
- msgid "Fill in an URL"
- msgstr ""
- #: options/theme-options.php:1592
- msgid "External API Mobile Devices Random Image Address"
- msgstr ""
- #: options/theme-options.php:1603
- msgid "Cover Random Background Image Cache"
- msgstr ""
- #: options/theme-options.php:1604
- msgid ""
- "Enabled by default, this feature will cache a cover image locally, which can "
- "improve the loading speed of the first cover after entering the homepage. Note: "
- "This feature needs the cover APIs that accept cross-domain requests."
- msgstr ""
- #: options/theme-options.php:1611
- msgid "Cover and Frontend Background Integration"
- msgstr ""
- #: options/theme-options.php:1612
- msgid ""
- "When enabled, the background of the cover will be set to transparent, while the "
- "frontend background will use the cover's random image API"
- msgstr ""
- #: options/theme-options.php:1619
- msgid "Cover Random Images Filter"
- msgstr ""
- #: options/theme-options.php:1621
- msgid "No filter"
- msgstr ""
- #: options/theme-options.php:1622
- msgid "Light filter"
- msgstr ""
- #: options/theme-options.php:1623
- msgid "Dimmed filter"
- msgstr ""
- #: options/theme-options.php:1624
- msgid "Grid filter"
- msgstr ""
- #: options/theme-options.php:1625
- msgid "Dot filter"
- msgstr ""
- #: options/theme-options.php:1633
- msgid "Cover Wave Effects"
- msgstr ""
- #: options/theme-options.php:1634
- msgid ""
- "Wave effect will appear at the bottom of the cover of the home page after turning "
- "on, and it will be forced off in the dark mode"
- msgstr ""
- #: options/theme-options.php:1641
- msgid "Cover Dropdown Arrow"
- msgstr ""
- #: options/theme-options.php:1642
- msgid "Enabled by default, show a dropdown arrow at bottom of home cover"
- msgstr ""
- #: options/theme-options.php:1649
- msgid "Cover Dropdown Arrow Display on Mobile Devices"
- msgstr ""
- #: options/theme-options.php:1651
- msgid ""
- "Drop down arrow will appear at the bottom of the mobile devices' home cover after "
- "turning it on"
- msgstr ""
- #: options/theme-options.php:1658
- msgid "Cover Dropdown Arrow Color"
- msgstr ""
- #: options/theme-options.php:1667
- msgid "Cover Dropdown Arrow Color (Dark Mode)"
- msgstr ""
- #: options/theme-options.php:1669
- msgid "Customize the colors, dark colors are recommended"
- msgstr ""
- #: options/theme-options.php:1676
- msgid "Cover Video"
- msgstr ""
- #: options/theme-options.php:1677
- msgid "Use a video instead of the images as the cover"
- msgstr ""
- #: options/theme-options.php:1684
- msgid "Cover Video Loop"
- msgstr ""
- #: options/theme-options.php:1686
- msgid "Video will loop automatically when enabled."
- msgstr ""
- #: options/theme-options.php:1693
- msgid "Cover Video Auto Resume"
- msgstr ""
- #: options/theme-options.php:1695
- msgid ""
- "Cover Video will resume automatically when coming back to homepage while Pjax "
- "enabled."
- msgstr ""
- #: options/theme-options.php:1702
- msgid "Cover Video URL Base Path"
- msgstr ""
- #: options/theme-options.php:1705
- msgid ""
- "Fill in the base path your video located at. For example: https://localhost. Your "
- "site's URL is used as default. Please pay attention to the protocol name of the "
- "URL."
- msgstr ""
- #: options/theme-options.php:1711
- msgid "Cover Video File Name"
- msgstr ""
- #: options/theme-options.php:1713
- msgid ""
- "For example: abc.mp4. Multiple videos should be separated by English commas like "
- "\"abc.mp4,efg.mp4,\" Random play is on by default."
- msgstr ""
- #: options/theme-options.php:1721
- msgid "Cover Social Area Options"
- msgstr ""
- #: options/theme-options.php:1728
- msgid ""
- "You can click <a href=\"https://wiki.fuukei.org/category/theme_sakurairo/homepage/"
- "cover_social_area/\">here</a> to learn how to set the options on this page"
- msgstr ""
- #: options/theme-options.php:1733
- msgid "Related Options"
- msgstr ""
- #: options/theme-options.php:1739
- msgid "Cover Social Area"
- msgstr ""
- #: options/theme-options.php:1740
- msgid ""
- "Enabled by default, show cover random image toggle button and social network icons"
- msgstr ""
- #: options/theme-options.php:1747
- msgid "Social Icon"
- msgstr ""
- #: options/theme-options.php:1748
- msgid ""
- "Select your favorite icon pack. Icon pack references are detailed in the \"About "
- "Theme\" section"
- msgstr ""
- #: options/theme-options.php:1769
- msgid "Cover Social Area Rounded Corners"
- msgstr ""
- #: options/theme-options.php:1771
- msgid "Slide to adjust, the recommended value range is 10-20"
- msgstr ""
- #: options/theme-options.php:1780
- msgid "Switch Button of Random Images"
- msgstr ""
- #: options/theme-options.php:1782
- msgid "Enabled by default, show cover random image toggle button"
- msgstr ""
- #: options/theme-options.php:1788
- msgid "Social Network"
- msgstr ""
- #: options/theme-options.php:1794
- msgid "Wechat"
- msgstr ""
- #: options/theme-options.php:1803
- msgid "QQ"
- msgstr ""
- #: options/theme-options.php:1805
- msgid ""
- "Please note the format of filling out the form, e.g. tencent://message/?uin=123456"
- msgstr ""
- #: options/theme-options.php:1811
- msgid "Bilibili"
- msgstr ""
- #: options/theme-options.php:1813 options/theme-options.php:1821
- #: options/theme-options.php:1829 options/theme-options.php:1837
- #: options/theme-options.php:1845 options/theme-options.php:1853
- #: options/theme-options.php:1861 options/theme-options.php:1869
- #: options/theme-options.php:1877 options/theme-options.php:1885
- #: options/theme-options.php:1893 options/theme-options.php:1901
- #: options/theme-options.php:1909 options/theme-options.php:1917
- #: options/theme-options.php:1925 options/theme-options.php:1933
- #: options/theme-options.php:1958 options/theme-options.php:2239
- #: options/theme-options.php:2265 options/theme-options.php:2291
- #: options/theme-options.php:2381
- msgid "add URL"
- msgstr ""
- #: options/theme-options.php:1819
- msgid "NetEase Music"
- msgstr ""
- #: options/theme-options.php:1827
- msgid "Weibo"
- msgstr ""
- #: options/theme-options.php:1835
- msgid "Github"
- msgstr ""
- #: options/theme-options.php:1843
- msgid "Telegram"
- msgstr ""
- #: options/theme-options.php:1851
- msgid "Steam"
- msgstr ""
- #: options/theme-options.php:1859
- msgid "ZhiHu"
- msgstr ""
- #: options/theme-options.php:1867
- msgid "QZone"
- msgstr ""
- #: options/theme-options.php:1875
- msgid "Lofter"
- msgstr ""
- #: options/theme-options.php:1883
- msgid "Youku"
- msgstr ""
- #: options/theme-options.php:1891
- msgid "Linkedin"
- msgstr ""
- #: options/theme-options.php:1899
- msgid "Twitter"
- msgstr ""
- #: options/theme-options.php:1907
- msgid "Facebook"
- msgstr ""
- #: options/theme-options.php:1915
- msgid "CSDN"
- msgstr ""
- #: options/theme-options.php:1923
- msgid "JianShu"
- msgstr ""
- #: options/theme-options.php:1931
- msgid "Customized Social Network Ⅰ"
- msgstr ""
- #: options/theme-options.php:1939
- msgid "Customized Social Network Ⅰ Title"
- msgstr ""
- #: options/theme-options.php:1947
- msgid "Customized Social Network Ⅰ icon"
- msgstr ""
- #: options/theme-options.php:1956
- msgid "Customized Social Network Ⅱ"
- msgstr ""
- #: options/theme-options.php:1964
- msgid "Customized Social Network Ⅱ Title"
- msgstr ""
- #: options/theme-options.php:1972
- msgid "Customized Social Network Ⅱ icon"
- msgstr ""
- #: options/theme-options.php:1981
- msgid "Email Username"
- msgstr ""
- #: options/theme-options.php:1983
- msgid ""
- "name@domain.com fo name, the full address can be known only when there is a js "
- "runtime in the frontend, you can fill in with confidence"
- msgstr ""
- #: options/theme-options.php:1989
- msgid "Email Domain"
- msgstr ""
- #: options/theme-options.php:1991
- msgid "name@domain.com fo domain.com"
- msgstr ""
- #: options/theme-options.php:1999
- msgid "Bulletin Board and Area Title Options"
- msgstr ""
- #: options/theme-options.php:2006
- msgid ""
- "You can click <a href=\"https://wiki.fuukei.org/category/theme_sakurairo/homepage/"
- "bulletin_board_and_area_title/\">here</a> to learn how to set the options on this "
- "page"
- msgstr ""
- #: options/theme-options.php:2011 options/theme-options.php:2017
- msgid "Bulletin Board"
- msgstr ""
- #: options/theme-options.php:2018
- msgid "When enabled the bulletin board will be displayed below the front cover"
- msgstr ""
- #: options/theme-options.php:2025
- msgid "Bulletin Board Style"
- msgstr ""
- #: options/theme-options.php:2028
- msgid "Picture Background"
- msgstr ""
- #: options/theme-options.php:2029
- msgid "Color Background"
- msgstr ""
- #: options/theme-options.php:2037
- msgid "Bulletin Board \"Broadcast\" Icon"
- msgstr ""
- #: options/theme-options.php:2039
- msgid ""
- "The \"Broadcast\" icon will be displayed on the left side of the announcement bar"
- msgstr ""
- #: options/theme-options.php:2046
- msgid "Bulletin Board Background"
- msgstr ""
- #: options/theme-options.php:2051
- msgid "Best width 820px, best height 67px"
- msgstr ""
- #: options/theme-options.php:2059
- msgid "Bulletin Board Border Color"
- msgstr ""
- #: options/theme-options.php:2071
- msgid "Bulletin Board Text"
- msgstr ""
- #: options/theme-options.php:2073
- msgid "Fill in the announcement text, the text beyond 142 bytes will be hidden"
- msgstr ""
- #: options/theme-options.php:2079
- msgid "Bulletin Board Alignment"
- msgstr ""
- #: options/theme-options.php:2092
- msgid "Bulletin Board Text Color"
- msgstr ""
- #: options/theme-options.php:2094 options/theme-options.php:2143
- #: options/theme-options.php:2458
- msgid ""
- "Customize the colors, suggest using a corresponding color with the background "
- "color"
- msgstr ""
- #: options/theme-options.php:2100
- msgid "Area Title"
- msgstr ""
- #: options/theme-options.php:2106
- msgid "Display Area Title"
- msgstr ""
- #: options/theme-options.php:2107
- msgid ""
- "Default is \"Display\", you can change it to anything else, but of course it "
- "CANNOT be used as an ad! Not allowed!!!"
- msgstr ""
- #: options/theme-options.php:2114
- msgid "Post Area Title"
- msgstr ""
- #: options/theme-options.php:2115
- msgid ""
- "Default is \"Article\", you can change it to anything else, but of course it "
- "CANNOT be used as an ad! Not allowed!!!"
- msgstr ""
- #: options/theme-options.php:2122
- msgid "Area Title Font"
- msgstr ""
- #: options/theme-options.php:2123
- msgid "Fill in the font name. For example: Noto Serif SC"
- msgstr ""
- #: options/theme-options.php:2130
- msgid "Area Title Alignment"
- msgstr ""
- #: options/theme-options.php:2142
- msgid "Area Title Bottom Color"
- msgstr ""
- #: options/theme-options.php:2152 options/theme-options.php:2215
- msgid "Display Area Options"
- msgstr ""
- #: options/theme-options.php:2159
- msgid ""
- "You can click <a href=\"https://wiki.fuukei.org/category/theme_sakurairo/homepage/"
- "display_area/\">here</a> to learn how to set the options on this page"
- msgstr ""
- #: options/theme-options.php:2165
- msgid "Display Area"
- msgstr ""
- #: options/theme-options.php:2166
- msgid "Enabled by default, display area is above article area"
- msgstr ""
- #: options/theme-options.php:2173
- msgid "Display Area Style"
- msgstr ""
- #: options/theme-options.php:2184
- msgid "Display Area Compatibility Mode"
- msgstr ""
- #: options/theme-options.php:2186
- msgid ""
- "Enabled by default, this option avoids the problem of misaligned display areas"
- msgstr ""
- #: options/theme-options.php:2193
- msgid "Display Area Background Color"
- msgstr ""
- #: options/theme-options.php:2202
- msgid "Display Area Rounded Corners"
- msgstr ""
- #: options/theme-options.php:2218
- msgid "First Display Area"
- msgstr ""
- #: options/theme-options.php:2223 options/theme-options.php:2249
- #: options/theme-options.php:2275
- msgid "image"
- msgstr ""
- #: options/theme-options.php:2224 options/theme-options.php:2250
- #: options/theme-options.php:2276
- msgid "best width 260px, best height 160px"
- msgstr ""
- #: options/theme-options.php:2229 options/theme-options.php:2255
- #: options/theme-options.php:2281
- msgid "title"
- msgstr ""
- #: options/theme-options.php:2234 options/theme-options.php:2260
- #: options/theme-options.php:2286
- msgid "description"
- msgstr ""
- #: options/theme-options.php:2244
- msgid "Second Display Area"
- msgstr ""
- #: options/theme-options.php:2270
- msgid "Third Display Area"
- msgstr ""
- #: options/theme-options.php:2317
- msgid "Article Area Options"
- msgstr ""
- #: options/theme-options.php:2324
- msgid ""
- "You can click <a href=\"https://wiki.fuukei.org/category/theme_sakurairo/homepage/"
- "article_area/\">here</a> to learn how to set the options on this page"
- msgstr ""
- #: options/theme-options.php:2330
- msgid "Article Area Display Style"
- msgstr ""
- #: options/theme-options.php:2341
- msgid "Article Area Featured Image Display Shapes"
- msgstr ""
- #: options/theme-options.php:2343
- msgid "You can choose a circular or a rectangular display of the featured image"
- msgstr ""
- #: options/theme-options.php:2354
- msgid "Article Area Featured Image Alignment"
- msgstr ""
- #: options/theme-options.php:2356
- msgid "You can choose different directions to display the featured images"
- msgstr ""
- #: options/theme-options.php:2368
- msgid "Article Area Featured Image Options"
- msgstr ""
- #: options/theme-options.php:2370
- msgid "Cover Random Image"
- msgstr ""
- #: options/theme-options.php:2371
- msgid "External API Random Image"
- msgstr ""
- #: options/theme-options.php:2379
- msgid "Article Area Featured Image External API Random Image Address"
- msgstr ""
- #: options/theme-options.php:2389
- msgid "Article Area Title Font Size"
- msgstr ""
- #: options/theme-options.php:2390
- msgid "Slide to adjust, the recommended value range is 16-20"
- msgstr ""
- #: options/theme-options.php:2402
- msgid "Article Area Time Display Area Background Color"
- msgstr ""
- #: options/theme-options.php:2404
- msgid ""
- "Customize the colors, it is recommended to use a light color corresponding with "
- "the main color"
- msgstr ""
- #: options/theme-options.php:2411
- msgid "Article Area Time Display Area Text Color"
- msgstr ""
- #: options/theme-options.php:2413 options/theme-options.php:2449
- msgid "Customize the colors, suggest the same as the matching color"
- msgstr ""
- #: options/theme-options.php:2420
- msgid "Article Area Time Display Area Font Size"
- msgstr ""
- #: options/theme-options.php:2422
- msgid "Slide to adjust, the recommended values range is 10-14"
- msgstr ""
- #: options/theme-options.php:2433
- msgid "Article Area \"Detail\" Icon"
- msgstr ""
- #: options/theme-options.php:2434
- msgid "When enabled the \"Detail\" icon will be displayed below the article area"
- msgstr ""
- #: options/theme-options.php:2439
- msgid "Article Area Author Info"
- msgstr ""
- #: options/theme-options.php:2440
- msgid ""
- "When turned on, author information will be added to the article metadata section."
- msgstr ""
- #: options/theme-options.php:2447
- msgid "Article Area Icon Color"
- msgstr ""
- #: options/theme-options.php:2456
- msgid "Article Area Border Shadow Color"
- msgstr ""
- #: options/theme-options.php:2467
- msgid "Page Options"
- msgstr ""
- #: options/theme-options.php:2473
- msgid "Common Options"
- msgstr ""
- #: options/theme-options.php:2480
- msgid ""
- "You can click <a href=\"https://wiki.fuukei.org/category/theme_sakurairo/page/"
- "common/\">here</a> to learn how to set the options on this page"
- msgstr ""
- #: options/theme-options.php:2486
- msgid "Page Style"
- msgstr ""
- #: options/theme-options.php:2497
- msgid "Page Layout Style"
- msgstr ""
- #: options/theme-options.php:2499
- msgid "Default Style"
- msgstr ""
- #: options/theme-options.php:2500
- msgid "Github Style"
- msgstr ""
- #: options/theme-options.php:2508
- msgid "Page Decoration Image"
- msgstr ""
- #: options/theme-options.php:2509
- msgid ""
- "Enabled by default, show on article pages, standalone pages and category pages"
- msgstr ""
- #: options/theme-options.php:2516
- msgid "Page Title Animation"
- msgstr ""
- #: options/theme-options.php:2517
- msgid "Page title will have float-in animation when turned on"
- msgstr ""
- #: options/theme-options.php:2524
- msgid "Page Title Animation Time"
- msgstr ""
- #: options/theme-options.php:2526
- msgid "Slide to adjust, recommended value range is 1-2"
- msgstr ""
- #: options/theme-options.php:2536
- msgid "Page Clipboard Copyright Notice"
- msgstr ""
- #: options/theme-options.php:2537
- msgid ""
- "Enabled by default, users will have copyright notice text when copying text "
- "content over 30 bytes"
- msgstr ""
- #: options/theme-options.php:2544
- msgid "Page LazyLoad"
- msgstr ""
- #: options/theme-options.php:2545
- msgid ""
- "LazyLoad effect for page images, WordPress block editor already comes with "
- "similar effect, not recommended to turn on"
- msgstr ""
- #: options/theme-options.php:2552
- msgid "Page LazyLoad Placeholder SVG"
- msgstr ""
- #: options/theme-options.php:2554
- msgid ""
- "Fill in the address, this is the placeholder image that will be displayed when "
- "the page LazyLoad is being loaded"
- msgstr ""
- #: options/theme-options.php:2561
- msgid "Page Image Placeholder SVG"
- msgstr ""
- #: options/theme-options.php:2562
- msgid ""
- "Fill address, this is the SVG that will be displayed as a placeholder when the "
- "page image is being loaded"
- msgstr ""
- #: options/theme-options.php:2571
- msgid "Article Page Options"
- msgstr ""
- #: options/theme-options.php:2578
- msgid ""
- "You can click <a href=\"https://wiki.fuukei.org/category/theme_sakurairo/page/"
- "article_page/\">here</a> to learn how to set the options on this page"
- msgstr ""
- #: options/theme-options.php:2584
- msgid "Article Page Title Font Size"
- msgstr ""
- #: options/theme-options.php:2585
- msgid ""
- "Slide to adjust, recommended value range is 28-36. This option is only available "
- "for article pages that have a featured image set"
- msgstr ""
- #: options/theme-options.php:2595
- msgid "Article Page Title Underline Animation"
- msgstr ""
- #: options/theme-options.php:2596
- msgid ""
- "Article title will have underline animation when this is enabled and article has "
- "a featured image set"
- msgstr ""
- #: options/theme-options.php:2603
- msgid "Article Page Auto Show Menu"
- msgstr ""
- #: options/theme-options.php:2604
- msgid "Enabled by default, the article page will automatically show the menu"
- msgstr ""
- #: options/theme-options.php:2611
- msgid "Article Page Prev/Next Article Switcher"
- msgstr ""
- #: options/theme-options.php:2612
- msgid ""
- "After turning on, the previous and next article switch will appear on the article "
- "pages"
- msgstr ""
- #: options/theme-options.php:2619
- msgid "Article Page Copyright Tips and Labels"
- msgstr ""
- #: options/theme-options.php:2620
- msgid "Copyright hint and label will appear on article pages when enabled"
- msgstr ""
- #: options/theme-options.php:2627
- msgid "Article Page Author Info"
- msgstr ""
- #: options/theme-options.php:2628
- msgid "Author information will appear on the article page when enabled"
- msgstr ""
- #: options/theme-options.php:2635
- msgid "Article Page Author Info Signature Field Text"
- msgstr ""
- #: options/theme-options.php:2644
- msgid "Article Page Appreciation Button (Alipay QR Code)"
- msgstr ""
- #: options/theme-options.php:2645
- msgid "Upload Alipay Receipt QR Code Image"
- msgstr ""
- #: options/theme-options.php:2652
- msgid "Article Page Appreciation Button (Wechat QR Code)"
- msgstr ""
- #: options/theme-options.php:2653
- msgid "Upload WeChat Receipt QR Code Image"
- msgstr ""
- #: options/theme-options.php:2662
- msgid "Template Page Options"
- msgstr ""
- #: options/theme-options.php:2669
- msgid ""
- "You can click <a href=\"https://wiki.fuukei.org/category/theme_sakurairo/page/"
- "template_page/\">here</a> to learn how to set the options on this page"
- msgstr ""
- #: options/theme-options.php:2675
- msgid "Template Page Title Font Size"
- msgstr ""
- #: options/theme-options.php:2676
- msgid ""
- "Slide to adjust, recommended value range is 36-48. This option is only available "
- "for template pages with featured images already set"
- msgstr ""
- #: options/theme-options.php:2686
- msgid "Ideas Template Background ColorⅠ"
- msgstr ""
- #: options/theme-options.php:2694
- msgid "Ideas Template Background Color II"
- msgstr ""
- #: options/theme-options.php:2702
- msgid "Ideas Template Tip Arrow"
- msgstr ""
- #: options/theme-options.php:2703
- msgid "After turning on the alert arrow will appear on the left side of the comment"
- msgstr ""
- #: options/theme-options.php:2710
- msgid "Ideas Template Font"
- msgstr ""
- #: options/theme-options.php:2719
- msgid "Bangumi Template Source"
- msgstr ""
- #: options/theme-options.php:2730
- msgid "My Anime List Username"
- msgstr ""
- #: options/theme-options.php:2732
- msgid "Username on https://myanimelist.net/"
- msgstr ""
- #: options/theme-options.php:2739
- msgid "My Anime List Sort"
- msgstr ""
- #: options/theme-options.php:2742
- msgid "Status and Last Updated"
- msgstr ""
- #: options/theme-options.php:2743
- msgid "Last Updated"
- msgstr ""
- #: options/theme-options.php:2744
- msgid "Status"
- msgstr ""
- #: options/theme-options.php:2752
- msgid "Bilibili Account UID"
- msgstr ""
- #: options/theme-options.php:2753
- msgid ""
- "Fill in your account ID, e.g. https://space.bilibili.com/13972644/, just the "
- "number part \"13972644\""
- msgstr ""
- #: options/theme-options.php:2760
- msgid "Bilibili Account Cookies"
- msgstr ""
- #: options/theme-options.php:2761
- msgid ""
- "Fill in your account cookies, F12 to open your browser web panel, go to your "
- "bilibili homepage to get cookies. If left empty, it will not show the progress of "
- "catching up bangumis"
- msgstr ""
- #: options/theme-options.php:2768
- msgid "Friend Link Template Unit Alignment"
- msgstr ""
- #: options/theme-options.php:2780
- msgid "Login Template Registration Function"
- msgstr ""
- #: options/theme-options.php:2781
- msgid "Login template will allow registration when enabled"
- msgstr ""
- #: options/theme-options.php:2790
- msgid "Comment-related Options"
- msgstr ""
- #: options/theme-options.php:2797
- msgid ""
- "You can click <a href=\"https://wiki.fuukei.org/category/theme_sakurairo/page/"
- "comment-related/\">here</a> to learn how to set the options on this page"
- msgstr ""
- #: options/theme-options.php:2803
- msgid "Page Comment Area Display"
- msgstr ""
- #: options/theme-options.php:2804
- msgid "You can choose to expand or shirink the content of the comment area"
- msgstr ""
- #: options/theme-options.php:2806
- msgid "Expand"
- msgstr ""
- #: options/theme-options.php:2807
- msgid "Shrink"
- msgstr ""
- #: options/theme-options.php:2815
- msgid "Page Comment Area Bilibili Emoji Pack"
- msgstr ""
- #: options/theme-options.php:2816
- msgid "Default on, bilibili emotions are displayed below the comment box"
- msgstr ""
- #: options/theme-options.php:2823
- msgid "Page Comment Area Bottom Right Background Image"
- msgstr ""
- #: options/theme-options.php:2824
- msgid "If this option is blank, there will be no image, no best recommendation here"
- msgstr ""
- #: options/theme-options.php:2831
- msgid "Page Comment Area UA Info"
- msgstr ""
- #: options/theme-options.php:2832
- msgid ""
- "When enabled, the page comment area will display the user’s browser, operating "
- "system information"
- msgstr ""
- #: options/theme-options.php:2839
- msgid "Page Comment Area Location Information"
- msgstr ""
- #: options/theme-options.php:2840
- msgid ""
- "When enabled, the page comment area will show the user’s location information"
- msgstr ""
- #: options/theme-options.php:2847
- msgid "Page Comment Area IP Source"
- msgstr ""
- #: options/theme-options.php:2848
- msgid ""
- "You can choose the theme self built IP library or Taobao IP library as the "
- "comment location information source"
- msgstr ""
- #: options/theme-options.php:2850
- msgid "Theme Self Built IP Lib"
- msgstr ""
- #: options/theme-options.php:2851
- msgid "Taobao IP Lib"
- msgstr ""
- #: options/theme-options.php:2859
- msgid "Private Comment Function"
- msgstr ""
- #: options/theme-options.php:2860
- msgid ""
- "When enabled, users are allowed to set their comments to be invisible to others"
- msgstr ""
- #: options/theme-options.php:2867
- msgid "Page Comment Area Bot Verification"
- msgstr ""
- #: options/theme-options.php:2868
- msgid "After turning on user comments need to be verified before posting"
- msgstr ""
- #: options/theme-options.php:2875
- msgid "QQ Avatar Link Encryption"
- msgstr ""
- #: options/theme-options.php:2878
- msgid "Redirect (low security)"
- msgstr ""
- #: options/theme-options.php:2879
- msgid "Get avatar data in the backend (medium security)"
- msgstr ""
- #: options/theme-options.php:2880
- msgid "Parse avatar interface in the backend (high security, slow)"
- msgstr ""
- #: options/theme-options.php:2888
- msgid "Page Comment Area Upload Image Interface"
- msgstr ""
- #: options/theme-options.php:2902
- msgid "Imgur Client ID"
- msgstr ""
- #: options/theme-options.php:2904
- msgid ""
- "Fill in Client ID here, to register please visit https://api.imgur.com/oauth2/"
- "addclient"
- msgstr ""
- #: options/theme-options.php:2910
- msgid "Imgur Upload Proxy"
- msgstr ""
- #: options/theme-options.php:2912
- msgid ""
- "The proxy used by the backend when uploading images to Imgur. You can refer to "
- "the tutorial: https://2heng.xin/2018/06/06/javascript-upload-images-with-imgur-"
- "api/"
- msgstr ""
- #: options/theme-options.php:2919
- msgid "SM.MS Secret Token"
- msgstr ""
- #: options/theme-options.php:2921
- msgid "Fill in your Key here, to get it please visit https://sm.ms/home/apitoken"
- msgstr ""
- #: options/theme-options.php:2927
- msgid "Chevereto API v1 Key"
- msgstr ""
- #: options/theme-options.php:2929
- msgid ""
- "Fill in the Key here, to get please visit your Chevereto home page address/"
- "dashboard/settings/api"
- msgstr ""
- #: options/theme-options.php:2935
- msgid "Chevereto Address"
- msgstr ""
- #: options/theme-options.php:2937
- msgid ""
- "Your Chevereto home page address. Please note that there is no \"/\" at the end, "
- "e.g. https://your.cherverto.com"
- msgstr ""
- #: options/theme-options.php:2943
- msgid "Lsky Pro v1 Token"
- msgstr ""
- #: options/theme-options.php:2945
- msgid ""
- "Fill in the Token here, Please note that there is no \"Bearer \" at first, to get "
- "please visit your Lsky Pro home page address/api"
- msgstr ""
- #: options/theme-options.php:2951
- msgid "Lsky Pro Address"
- msgstr ""
- #: options/theme-options.php:2953
- msgid ""
- "Your Lsky Pro home page address. Please note that there is no \"/\" at the end, e."
- "g. https://your.lskypro.com"
- msgstr ""
- #: options/theme-options.php:2959
- msgid "Comment Image Proxy"
- msgstr ""
- #: options/theme-options.php:2960
- msgid "Proxy for the image displayed on the frontend"
- msgstr ""
- #: options/theme-options.php:2967
- msgid "Mail Template Featured Image"
- msgstr ""
- #: options/theme-options.php:2968
- msgid "Set the background image of your reply email"
- msgstr ""
- #: options/theme-options.php:2976
- msgid "Mail Template Sending Address Prefix"
- msgstr ""
- #: options/theme-options.php:2977
- msgid ""
- "Used to send system mail. The sender address will be displayed in the user's "
- "mailbox, don't use Non-English Characters. The default system mail address is "
- "bibi@your domain"
- msgstr ""
- #: options/theme-options.php:2984
- msgid "User Mail Reply Notification"
- msgstr ""
- #: options/theme-options.php:2985
- msgid ""
- "By default WordPress will use email notifications to notify users when their "
- "comments receive a reply. After turning it on users are allowed to set whether to "
- "use email notifications when their comments receive a reply"
- msgstr ""
- #: options/theme-options.php:2992
- msgid "Admin Email Reply Notification"
- msgstr ""
- #: options/theme-options.php:2993
- msgid ""
- "Use email notifications when admin comments receive a reply after turning it on"
- msgstr ""
- #: options/theme-options.php:3002
- msgid "Other Options"
- msgstr ""
- #: options/theme-options.php:3008
- msgid "Login Screen and Dashboard Related Options"
- msgstr ""
- #: options/theme-options.php:3015
- msgid ""
- "You can click <a href=\"https://wiki.fuukei.org/category/theme_sakurairo/other/"
- "login_screen_and_dashboard_related/\">here</a> to learn how to set the options on "
- "this page"
- msgstr ""
- #: options/theme-options.php:3020
- msgid "Login Screen"
- msgstr ""
- #: options/theme-options.php:3026
- msgid "Login Screen Background Image"
- msgstr ""
- #: options/theme-options.php:3027
- msgid ""
- "Set your login screen background image, leave this option blank to show the "
- "default"
- msgstr ""
- #: options/theme-options.php:3035
- msgid "Login Screen Background Blur"
- msgstr ""
- #: options/theme-options.php:3036
- msgid "Login screen background image will be blurred when enabled"
- msgstr ""
- #: options/theme-options.php:3043
- msgid "Login Screen Logo"
- msgstr ""
- #: options/theme-options.php:3044
- msgid "Set your login screen Logo"
- msgstr ""
- #: options/theme-options.php:3052
- msgid "Jump after login"
- msgstr ""
- #: options/theme-options.php:3053
- msgid ""
- "Jump to backend for admins and home for users after turning on. Attention: Only "
- "takes effect when logging in from a page with Loggin Template. "
- msgstr ""
- #: options/theme-options.php:3060
- msgid "Login Screen Language Option"
- msgstr ""
- #: options/theme-options.php:3061
- msgid "Login screen language option will be display when enabled"
- msgstr ""
- #: options/theme-options.php:3067
- msgid "Dashboard"
- msgstr ""
- #: options/theme-options.php:3073
- msgid "Dashboard Background Image"
- msgstr ""
- #: options/theme-options.php:3074
- msgid ""
- "Set your dashboard background image, leave this option blank to show white "
- "background"
- msgstr ""
- #: options/theme-options.php:3082
- msgid "Dashboard Options Menu Style"
- msgstr ""
- #: options/theme-options.php:3093
- msgid "Dashboard Primary Menu Color"
- msgstr ""
- #: options/theme-options.php:3101
- msgid "Dashboard Secondary Menu Color"
- msgstr ""
- #: options/theme-options.php:3109
- msgid "Dashboard Emphasis Color"
- msgstr ""
- #: options/theme-options.php:3117
- msgid "Dashboard Button Color"
- msgstr ""
- #: options/theme-options.php:3125
- msgid "Dashboard Text Color"
- msgstr ""
- #: options/theme-options.php:3134
- msgid "Low Use Options"
- msgstr ""
- #: options/theme-options.php:3141
- msgid ""
- "You can click <a href=\"https://wiki.fuukei.org/category/theme_sakurairo/other/"
- "low_use/\">here</a> to learn how to set the options on this page"
- msgstr ""
- #: options/theme-options.php:3147
- msgid "Statistics API"
- msgstr ""
- #: options/theme-options.php:3148
- msgid ""
- "You can choose WP-Statistics plugin statistics or theme built-in statistics to "
- "display"
- msgstr ""
- #: options/theme-options.php:3150
- msgid "Theme Built in Statistics"
- msgstr ""
- #: options/theme-options.php:3151
- msgid "WP-Statistics Plugin Statistics"
- msgstr ""
- #: options/theme-options.php:3159
- msgid "Statistics display format"
- msgstr ""
- #: options/theme-options.php:3160
- msgid "You can choose from four different data display formats"
- msgstr ""
- #: options/theme-options.php:3162
- msgid "23333 Visits"
- msgstr ""
- #: options/theme-options.php:3163
- msgid "23,333 Visits"
- msgstr ""
- #: options/theme-options.php:3164
- msgid "23 333 Visits"
- msgstr ""
- #: options/theme-options.php:3165
- msgid "23K Visits"
- msgstr ""
- #: options/theme-options.php:3173
- msgid "Live Search"
- msgstr ""
- #: options/theme-options.php:3174
- msgid ""
- "After turning on the live search in the frontend, call Rest API to update the "
- "cache once an hour. You can set the cache time manually in api.php"
- msgstr ""
- #: options/theme-options.php:3181
- msgid "Live Search Comment Support"
- msgstr ""
- #: options/theme-options.php:3183
- msgid ""
- "Enable to search for comments in live search (not recommended if site has too "
- "many comments)"
- msgstr ""
- #: options/theme-options.php:3190
- msgid "Google Analytics Id"
- msgstr ""
- #: options/theme-options.php:3191
- msgid "If you already have a plugin to handle it, please keep here empty."
- msgstr ""
- #: options/theme-options.php:3197
- msgid "Custom CSS Styles"
- msgstr ""
- #: options/theme-options.php:3198
- msgid "Fill in the CSS code without writing style tag"
- msgstr ""
- #: options/theme-options.php:3205
- msgid "Code inserted in the header"
- msgstr ""
- #: options/theme-options.php:3206
- msgid "Insert HTML code right before </head>."
- msgstr ""
- #: options/theme-options.php:3212
- msgid "Timezone Fix"
- msgstr ""
- #: options/theme-options.php:3213
- msgid ""
- "Slide to adjust. If the comment has a time difference problem, adjust it here, "
- "fill in an integer. Calculation method: actual time = time of display error - the "
- "integer you entered (in hours)"
- msgstr ""
- #: options/theme-options.php:3221
- msgid "Gravatar Service"
- msgstr ""
- #: options/theme-options.php:3226
- msgid ""
- "<p><strong>Cravatar Service:</strong> Cravatar Service is an alternative to "
- "Gravatar Service in China. You can upload and share avatars freely. Go to <a href="
- "\"https://cravatar.cn/\">official website</a> for details </p>"
- msgstr ""
- #: options/theme-options.php:3232
- msgid "Gravatar Service Proxy"
- msgstr ""
- #: options/theme-options.php:3233
- msgid ""
- "You can select multiple proxy as the Gravatar Service Proxy. By default, Cravatar "
- "Service is used as the Gravatar Service Proxy."
- msgstr ""
- #: options/theme-options.php:3235
- msgid "Cravatar Service"
- msgstr ""
- #: options/theme-options.php:3236
- msgid "Geekzu"
- msgstr ""
- #: options/theme-options.php:3237
- msgid "Loli Net"
- msgstr ""
- #: options/theme-options.php:3238
- msgid "Official"
- msgstr ""
- #: options/theme-options.php:3239
- msgid "Official CN"
- msgstr ""
- #: options/theme-options.php:3246
- msgid "Lightbox"
- msgstr ""
- #: options/theme-options.php:3252
- msgid "BaguetteBox Lightbox Effect"
- msgstr ""
- #: options/theme-options.php:3253
- msgid "BaguetteBox will be used as the image lightbox effect when turned on"
- msgstr ""
- #: options/theme-options.php:3260
- msgid "FancyBox Lightbox Effect"
- msgstr ""
- #: options/theme-options.php:3261
- msgid ""
- "FancyBox will be used as an image lightbox effect after turning on, additional JQ "
- "libraries will be loaded"
- msgstr ""
- #: options/theme-options.php:3269
- msgid "LightGallery Lightbox Effect"
- msgstr ""
- #: options/theme-options.php:3270
- msgid "LightGallery will be used as an image lightbox effect after turning on."
- msgstr ""
- #: options/theme-options.php:3276
- msgid ""
- "<strong>Attension: Please read <a href=\"https://github.com/sachinchoolur/"
- "lightGallery#license\">License Instruction</a> before use.</strong><br/"
- "><strong><a href=\"https://www.lightgalleryjs.com/demos/thumbnails/\">Demos</a></"
- "strong> | <strong><a href=\"https://www.lightgalleryjs.com/docs/settings/"
- "\">Reference</a></strong> | <strong><a href=\"https://fastly.jsdelivr.net/npm/"
- "lightgallery@latest/plugins/\">Plugin List</a></strong> <br/> Please write "
- "settings in JavaScript. An example has been provided as default setting.<br/> It "
- "should be captiable for Most User using WordPress Guttenberg Editor.<br/>Submit "
- "new discussion on Github for assistance. https://github.com/mirai-mamori/"
- "Sakurairo/discussions"
- msgstr ""
- #: options/theme-options.php:3287
- msgid ""
- "Start from Sakurairo v2.4.0, plugins names in LightGallery option follow the form "
- "cite in official document (eg. lgHash instead of \"hash\")"
- msgstr ""
- #: options/theme-options.php:3295
- msgid "LightGallery Lightbox Effect Options"
- msgstr ""
- #: options/theme-options.php:3306
- msgid "Code Highlighting"
- msgstr ""
- #: options/theme-options.php:3311
- msgid ""
- "<p><strong>Highlight.js:</strong> Default. Automatic language recognition. </p> "
- "<p><strong>Prism.js:</strong> Requires a language to be specified, see <a href="
- "\"https://prismjs.com/#basic-usage\">basic usage</a> and <a href=\"https://"
- "prismjs.com/ plugins/file-highlight/\">How to code highlight dynamically loaded "
- "files</a>. </p> <p><strong>Custom:</strong> For cases where another configuration "
- "is available. </p>"
- msgstr ""
- #: options/theme-options.php:3319
- msgid "Code Highlight Method"
- msgstr ""
- #: options/theme-options.php:3323
- msgid "Custom Program"
- msgstr ""
- #: options/theme-options.php:3331
- msgid "Prism.js: Add Line Number Display for All Code Blocks"
- msgstr ""
- #: options/theme-options.php:3335
- msgid ""
- "See the <a href=\"https://prismjs.com/plugins/line-numbers/\">plugin description "
- "documentation</a>"
- msgstr ""
- #: options/theme-options.php:3341
- msgid "Prism.js: Autoload Address"
- msgstr ""
- #: options/theme-options.php:3345
- msgid "Leave blank to use default values"
- msgstr ""
- #: options/theme-options.php:3352
- msgid "Prism.js: Code Highlight Theme"
- msgstr ""
- #: options/theme-options.php:3353 options/theme-options.php:3364
- msgid "Relative to autoload address. Leave blank to use default values"
- msgstr ""
- #: options/theme-options.php:3363
- msgid "Prism.js: Code Highlight Theme (Dark Mode)"
- msgstr ""
- #: options/theme-options.php:3374
- msgid ""
- "The following Options are not recommended to be modified blindly, please use them "
- "under the guidance of others"
- msgstr ""
- #: options/theme-options.php:3380
- msgid "Image CDN"
- msgstr ""
- #: options/theme-options.php:3381
- msgid ""
- "Note: fill in the format https://your CDN domain/. This means that images with "
- "original path http://your.domain/wp-content/uploads/2018/05/xx.png will be loaded "
- "from http://your CDN domain/2018/05/xx.png"
- msgstr ""
- #: options/theme-options.php:3388
- msgid "Articles Categories (Do not display)"
- msgstr ""
- #: options/theme-options.php:3389 options/theme-options.php:3396
- msgid "Fill in category ID, seperate in English\" , \" when more than one"
- msgstr ""
- #: options/theme-options.php:3395
- msgid "Image Display Category"
- msgstr ""
- #: options/theme-options.php:3402
- msgid "Specify Login Address"
- msgstr ""
- #: options/theme-options.php:3403
- msgid ""
- "Force not to use the WordPress login page address to login, fill in the new login "
- "page address, such as: http://www.xxx.com/login. Note that before filling in the "
- "new page you can test the normal opening, so as not to cause the inability to "
- "enter the background, etc."
- msgstr ""
- #: options/theme-options.php:3409
- msgid "Specify Registration Address"
- msgstr ""
- #: options/theme-options.php:3410
- msgid ""
- "This address is used as the registration entry on the login page, if you specify "
- "a login address, it is recommended to fill in"
- msgstr ""
- #: options/theme-options.php:3416
- msgid "Version Control"
- msgstr ""
- #: options/theme-options.php:3417
- msgid "Used to update front-end cookies and browser cache, can use any string"
- msgstr ""
- #: options/theme-options.php:3423
- msgid "Backup&Recovery"
- msgstr ""
- #: options/theme-options.php:3425
- msgid "Backup or Recovery your theme options"
- msgstr ""
- #: options/theme-options.php:3436
- msgid "About Theme"
- msgstr ""
- #: options/theme-options.php:3442
- msgid "Version Info"
- msgstr ""
- #: options/theme-options.php:3447
- msgid ""
- "<img src=\"https://s.nmxc.ltd/sakurairo_vision/@2.5/series/headlogo.webp\" alt="
- "\"Theme Information\" />"
- msgstr ""
- #: options/theme-options.php:3453
- #, php-format
- msgid ""
- "Sakurairo 主题版本 / Theme Version %s | 内部版本 / Internal Version %s | <a href="
- "\"https://github.com/mirai-mamori/Sakurairo\">项目地址 / Project Address</a>"
- msgstr ""
- #: options/theme-options.php:3458
- msgid "Update Related"
- msgstr ""
- #: options/theme-options.php:3464
- msgid "Theme Update Source"
- msgstr ""
- #: options/theme-options.php:3470
- msgid ""
- "If you are using a server set up in mainland China, please use the Upyun source "
- "or the official theme source as your theme update source"
- msgstr ""
- #: options/theme-options.php:3477
- msgid "Theme Update Test Channel Disclaimer"
- msgstr ""
- #: options/theme-options.php:3483
- msgid ""
- "Please copy the text in quotes after <strong>ensure that you have carefully "
- "understood the risks associated with participating in the test and are willing to "
- "assume all consequences at your own risk</strong> (including but not limited to "
- "possible data loss) into the options text box <strong> \"I agree and am willing "
- "to bear all unexpected consequences\"</strong>"
- msgstr ""
- #: options/theme-options.php:3489
- msgid "Theme Update Channel"
- msgstr ""
- #: options/theme-options.php:3496
- msgid ""
- "You can toggle the update channel here to participate in the testing of the new "
- "version"
- msgstr ""
- #: options/theme-options.php:3498
- msgid "Stable Channel"
- msgstr ""
- #: options/theme-options.php:3499
- msgid "Beta Channel"
- msgstr ""
- #: options/theme-options.php:3500
- msgid "Preview Channel"
- msgstr ""
- #: options/theme-options.php:3507
- msgid "Resource Control"
- msgstr ""
- #: options/theme-options.php:3513
- msgid "Provide Critical Frontend Resource locally"
- msgstr ""
- #: options/theme-options.php:3514
- msgid ""
- "Enabeld by default. Critical resources are those resources whose loading "
- "performance will have a significant impact on the user experience."
- msgstr ""
- #: options/theme-options.php:3521
- msgid "Provide Other Frontend Resource locally"
- msgstr ""
- #: options/theme-options.php:3522
- msgid "Less important frontend resource in the theme's folder."
- msgstr ""
- #: options/theme-options.php:3529
- msgid "Provide 3rd-party library from public CDN"
- msgstr ""
- #: options/theme-options.php:3530
- msgid ""
- "When disabled, 3rd-party dependencies, which have been built to bundles along "
- "with themes's entry script, will be loaded from the exact same origin with "
- "Critical Frontend Resource. "
- msgstr ""
- #: options/theme-options.php:3537
- msgid "Public CDN Basepath"
- msgstr ""
- #: options/theme-options.php:3548
- msgid "Vision Resource Basepath"
- msgstr ""
- #: options/theme-options.php:3549
- msgid ""
- "This link directory structure needs to be consistent with the <a href=\"https://"
- "github.com/Fuukei/Sakurairo_Vision\">Sakurairo Vision</a> repositories officially "
- "provided by fuukei, otherwise some resources 404 may appear. The image source "
- "officially provided by <a href=\"https://www.upyun.com/\">Upyun</a> is adopted by "
- "default."
- msgstr ""
- #: options/theme-options.php:3555
- msgid "Theme Sponsors"
- msgstr ""
- #: options/theme-options.php:3560
- msgid ""
- "<img src=\"https://s.nmxc.ltd/sakurairo_vision/@2.5/options/upyun_logo.webp\" alt="
- "\"Theme Sponsors\" width=\"15%\" height=\"15%\"/>"
- msgstr ""
- #: options/theme-options.php:3565
- msgid "Theme Contributors"
- msgstr ""
- #: options/theme-options.php:3570
- msgid ""
- "<img src=\"https://opencollective.com/fuukei/contributors.svg\" alt=\"Theme "
- "Contributors\" width=\"100%\" height=\"100%\" />"
- msgstr ""
- #: options/theme-options.php:3575
- msgid "Reference Information"
- msgstr ""
- #: options/theme-options.php:3580
- msgid ""
- "<p>Fluent Design Icon Referenced by Paradox <a href=\"https://wwi.lanzous.com/"
- "ikyq5kgx0wb\">Fluent Icon Pack</a></p>\n"
- " <p>MUH2 Design Icon Referenced by 缄默 <a href=\"https://www.coolapk.com/"
- "apk/com.muh2.icon\">MUH2 Icon Pack</a></p>\n"
- " <p>Mashiro Style Logo References the Original Theme Author Mashiro, As "
- "Provided and Referenced by <a href=\"https://hyacm.com/acai/ui/143/sakura-logo/"
- "\">Hyacm</a></p>"
- msgstr ""
- #: options/theme-options.php:3587
- msgid "Dependency Information"
- msgstr ""
- #: options/theme-options.php:3592
- msgid ""
- "<p>Options Framework Relies on the Codestar Open Source <a href=\"https://github."
- "com/Codestar/codestar-framework\">Codestar Framework</a> Project</p>\n"
- " <p>Update Function Relies on YahnisElsts Open Source <a href=\"https://"
- "github.com/YahnisElsts/plugin-update-checker\">Plugin Update Checker</a> Project</"
- "p>"
- msgstr ""
- #: options/theme-options.php:3598
- msgid ""
- "<img src=\"https://img.shields.io/github/v/release/mirai-mamori/Sakurairo.svg?"
- "style=flat-square\" alt=\"Theme latest version\" style=\"border-radius: 3px;\" /"
- "> <img src=\"https://img.shields.io/github/release-date/mirai-mamori/Sakurairo?"
- "style=flat-square\" alt=\"Theme latest version release date\" style=\"border-"
- "radius: 3px;\" /> <img src=\"https://data.jsdelivr.com/v1/package/gh/Fuukei/"
- "Public_Repository/badge\" alt=\"Theme CDN resource access\" style=\"border-"
- "radius: 3px;\" />"
- msgstr ""
- #. Plugin Name of the plugin/theme
- msgid "Sakurairo_CSF"
- msgstr ""
- #. Plugin URI of the plugin/theme
- msgid "https://github.com/Fuukei/Sakurairo_CSF"
- msgstr ""
- #. Description of the plugin/theme
- msgid "A Simple and Lightweight WordPress Option Framework for Sakurairo"
- msgstr ""
- #. Author of the plugin/theme
- msgid "Codestar with Fuukei"
- msgstr ""
- #. Author URI of the plugin/theme
- msgid "https://github.com/Fuukei"
- msgstr ""
|