123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801 |
- #, fuzzy
- msgid ""
- msgstr ""
- "Project-Id-Version: Codestar Framework Modified by Fuukei\n"
- "POT-Creation-Date: 2023-04-17 13:59+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.2.2\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:169
- msgid "Error while saving the changes."
- msgstr ""
- #: classes/admin-options.class.php:229
- msgid "Settings successfully imported."
- msgstr ""
- #: classes/admin-options.class.php:241 classes/admin-options.class.php:257
- msgid "Default settings restored."
- msgstr ""
- #: classes/admin-options.class.php:328
- msgid "Settings saved."
- msgstr ""
- #: classes/admin-options.class.php:509
- msgid "You have unsaved changes, save your changes!"
- msgstr ""
- #: classes/admin-options.class.php:511
- msgid "show all settings"
- msgstr ""
- #: classes/admin-options.class.php:513 fields/icon/icon.php:57 fields/map/map.php:23
- msgid "Search..."
- msgstr ""
- #: classes/admin-options.class.php:516 classes/admin-options.class.php:639
- msgid "Save"
- msgstr ""
- #: classes/admin-options.class.php:516 classes/admin-options.class.php:639
- msgid "Saving..."
- msgstr ""
- #: classes/admin-options.class.php:517 classes/admin-options.class.php:640
- msgid "Reset Section"
- msgstr ""
- #: classes/admin-options.class.php:517 classes/admin-options.class.php:640
- msgid "Are you sure to reset this section options?"
- msgstr ""
- #: classes/admin-options.class.php:518 classes/admin-options.class.php:641
- msgid "Reset All"
- msgstr ""
- #: classes/admin-options.class.php:518 classes/admin-options.class.php:641
- #: fields/backup/backup.php:31
- msgid "Reset"
- msgstr ""
- #: classes/admin-options.class.php:518 classes/admin-options.class.php:641
- msgid "Are you sure you want to reset all settings to default values?"
- msgstr ""
- #: classes/admin-options.class.php:616 fields/button_set/button_set.php:56
- #: fields/checkbox/checkbox.php:82 fields/radio/radio.php:75
- #: fields/select/select.php:113 functions/actions.php:41
- msgid "No data available."
- msgstr ""
- #: classes/setup.class.php:588
- msgid "Are you sure?"
- msgstr ""
- #: classes/setup.class.php:589
- #, php-format
- msgid "Please enter %s or more characters"
- msgstr ""
- #: classes/setup.class.php:590
- msgid "Searching..."
- msgstr ""
- #: classes/setup.class.php:591
- msgid "No results found."
- msgstr ""
- #: classes/setup.class.php:692
- msgid "Oops! Not allowed."
- msgstr ""
- #: classes/setup.class.php:760 classes/setup.class.php:764
- 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:670
- msgid "Cover"
- msgstr ""
- #: fields/background/background.php:220 options/theme-options.php:671
- msgid "Contain"
- msgstr ""
- #: fields/background/background.php:221 options/theme-options.php:672
- #: options/theme-options.php:881
- 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/checkbox/checkbox.php:23
- msgid "Check/Uncheck All"
- 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:832
- #: options/theme-options.php:879 options/theme-options.php:1110
- #: options/theme-options.php:1290 options/theme-options.php:2945
- #: options/theme-options.php:2958
- 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:693
- 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://docs.fuukei.org/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:508
- #: options/theme-options.php:1797 options/theme-options.php:1950
- #: options/theme-options.php:1975
- 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:474
- #: options/theme-options.php:657 options/theme-options.php:800
- #: options/theme-options.php:808 options/theme-options.php:934
- #: options/theme-options.php:1503 options/theme-options.php:2140
- #: options/theme-options.php:2760
- msgid "Fill in the font name. For example: Noto Serif SC"
- 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:1468
- #: options/theme-options.php:1661 options/theme-options.php:2212
- 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://docs.fuukei.org/Sakurairo/Global/"
- "#%E5%A4%96%E8%A7%82%E8%AE%BE%E7%BD%AE\">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:1081
- #: options/theme-options.php:1090 options/theme-options.php:2736
- #: options/theme-options.php:2744 options/theme-options.php:3162
- #: options/theme-options.php:3170 options/theme-options.php:3178
- #: options/theme-options.php:3186 options/theme-options.php:3194
- 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:1402
- 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://docs.fuukei.org/Sakurairo/Global/"
- "#%E5%AD%97%E4%BD%93%E8%AE%BE%E7%BD%AE\">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:1511
- 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 Options"
- msgstr ""
- #: options/theme-options.php:361
- msgid "Font 1 Name"
- msgstr ""
- #: options/theme-options.php:366
- msgid "Font 1 Link"
- msgstr ""
- #: options/theme-options.php:371
- msgid "Font 2 Name"
- msgstr ""
- #: options/theme-options.php:376
- msgid "Font 2 Link"
- msgstr ""
- #: options/theme-options.php:390
- msgid "Google Fonts Api Link"
- msgstr ""
- #: options/theme-options.php:397
- msgid "Google Fonts Name"
- msgstr ""
- #: options/theme-options.php:398
- 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:406
- msgid "Navigation Menu Options"
- msgstr ""
- #: options/theme-options.php:413
- msgid ""
- "You can click <a href=\"https://docs.fuukei.org/Sakurairo/Global/"
- "#%E5%AF%BC%E8%88%AA%E8%8F%9C%E5%8D%95%E8%AE%BE%E7%BD%AE\">here</a> to learn how "
- "to set the options on this page"
- msgstr ""
- #: options/theme-options.php:419
- msgid "Nav Menu Style"
- msgstr ""
- #: options/theme-options.php:430
- msgid "Nav Menu Radius"
- msgstr ""
- #: options/theme-options.php:432 options/theme-options.php:527
- #: options/theme-options.php:628 options/theme-options.php:2224
- msgid "Slide to adjust, the recommended value is 15"
- msgstr ""
- #: options/theme-options.php:441
- msgid "Nav Menu Content Display Method"
- msgstr ""
- #: options/theme-options.php:442
- msgid "You can choose to unfold or fold the nav menu contents"
- msgstr ""
- #: options/theme-options.php:444
- msgid "Unfold"
- msgstr ""
- #: options/theme-options.php:445
- msgid "Fold"
- msgstr ""
- #: options/theme-options.php:453
- msgid "Nav Menu Animation Effects"
- msgstr ""
- #: options/theme-options.php:454
- 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:461
- msgid "Nav Menu Animation Time"
- msgstr ""
- #: options/theme-options.php:463 options/theme-options.php:1438
- msgid "Slide to adjust, the recommended value range is 1-2"
- msgstr ""
- #: options/theme-options.php:473
- msgid "Nav Menu Font"
- msgstr ""
- #: options/theme-options.php:481
- msgid "Nav Menu Search"
- msgstr ""
- #: options/theme-options.php:482
- msgid "It is on by default. Click to enter the search area"
- msgstr ""
- #: options/theme-options.php:489
- msgid "Search Area Background Image"
- msgstr ""
- #: options/theme-options.php:490
- msgid ""
- "Set the background image of your search area. Leave this option blank to display "
- "a white background"
- msgstr ""
- #: options/theme-options.php:498
- msgid "Nav Menu User Avatar"
- msgstr ""
- #: options/theme-options.php:499
- msgid "It is on by default. Click to enter the login interface"
- msgstr ""
- #: options/theme-options.php:506
- msgid "Nav Menu Unlisted User Avatar"
- msgstr ""
- #: options/theme-options.php:516
- msgid "Secondary Menu Prompt Arrow"
- msgstr ""
- #: options/theme-options.php:517
- msgid ""
- "After turning on, the menu prompt arrow will appear in the secondary menu of the "
- "navigation menu"
- msgstr ""
- #: options/theme-options.php:525
- msgid "Secondary Menu Radius"
- msgstr ""
- #: options/theme-options.php:536
- msgid "Mashiro Logo Style"
- msgstr ""
- #: options/theme-options.php:537
- msgid ""
- "After turning on, the Mashiro Logo will appear and replace the navigation menu "
- "logo position"
- msgstr ""
- #: options/theme-options.php:544
- msgid "Nav Menu Text Logo Options"
- msgstr ""
- #: options/theme-options.php:549
- msgid "Text A"
- msgstr ""
- #: options/theme-options.php:554
- msgid "Text B"
- msgstr ""
- #: options/theme-options.php:559
- msgid "Text C"
- msgstr ""
- #: options/theme-options.php:564
- msgid "Secondary Text"
- msgstr ""
- #: options/theme-options.php:570
- msgid "Font Name"
- msgstr ""
- #: options/theme-options.php:587
- msgid "Style Menu and Frontend Background Related Options"
- msgstr ""
- #: options/theme-options.php:594
- msgid ""
- "You can click <a href=\"https://docs.fuukei.org/Sakurairo/Global/"
- "#%E6%A0%B7%E5%BC%8F%E8%8F%9C%E5%8D%95%E5%92%8C%E5%89%8D%E5%8F%B0%E8%83%8C%E6%99%AF%E7%9B%B8%E5%85%B3%E8%AE%BE%E7%BD%AE\">here</"
- "a> to learn how to set the options on this page"
- msgstr ""
- #: options/theme-options.php:599
- msgid "Style Menu"
- msgstr ""
- #: options/theme-options.php:605
- msgid "Style Menu Display"
- msgstr ""
- #: options/theme-options.php:606
- 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:617
- msgid "Style Menu Button Radius"
- msgstr ""
- #: options/theme-options.php:618
- msgid "Slide to adjust, the recommended value is 10"
- msgstr ""
- #: options/theme-options.php:627
- msgid "Style Menu Options Interface Radius"
- msgstr ""
- #: options/theme-options.php:637
- msgid "Frontend Background Area Title"
- msgstr ""
- #: options/theme-options.php:639
- msgid ""
- "Default is \"Style\", you can change it to anything else, but of course it CANNOT "
- "be used as an ad! Not allowed!!!"
- msgstr ""
- #: options/theme-options.php:646
- msgid "Font Area Title"
- msgstr ""
- #: options/theme-options.php:648
- msgid ""
- "Default is \"Fonts\", you can change it to anything else, but of course it CANNOT "
- "be used as an ad! Not allowed!!!"
- msgstr ""
- #: options/theme-options.php:655
- msgid "Style Menu Font"
- msgstr ""
- #: options/theme-options.php:663
- msgid "Frontend Background"
- msgstr ""
- #: options/theme-options.php:674
- msgid "Frontend Background Scaling Method"
- msgstr ""
- #: options/theme-options.php:675
- msgid ""
- "You can choose two ways to scale the frontend background, the default is auto-"
- "scaling"
- msgstr ""
- #: options/theme-options.php:682
- msgid "Background Transparency Blur"
- msgstr ""
- #: options/theme-options.php:683
- msgid "After opening Background Transparency Blur"
- msgstr ""
- #: options/theme-options.php:690
- msgid "Frontend Background Options"
- msgstr ""
- #: options/theme-options.php:699 options/theme-options.php:715
- #: options/theme-options.php:731 options/theme-options.php:747
- #: options/theme-options.php:763
- msgid "Image"
- msgstr ""
- #: options/theme-options.php:704
- msgid "Heart Shaped"
- msgstr ""
- #: options/theme-options.php:710 options/theme-options.php:726
- #: options/theme-options.php:742 options/theme-options.php:758
- msgid "Switch"
- msgstr ""
- #: options/theme-options.php:720
- msgid "Star Shaped"
- msgstr ""
- #: options/theme-options.php:736
- msgid "Square Shaped"
- msgstr ""
- #: options/theme-options.php:752
- msgid "Lemon Shaped"
- msgstr ""
- #: options/theme-options.php:783
- msgid "Background Transparency in the Frontend"
- msgstr ""
- #: options/theme-options.php:784
- msgid "Slide to adjust, the recommended sliding value range is 0.6-0.8"
- msgstr ""
- #: options/theme-options.php:793
- msgid "Font Area"
- msgstr ""
- #: options/theme-options.php:799
- msgid "Global Default Font/Style Menu Font A"
- msgstr ""
- #: options/theme-options.php:806
- msgid "Style Menu Font B"
- msgstr ""
- #: options/theme-options.php:816
- msgid "Footer Options"
- msgstr ""
- #: options/theme-options.php:823
- msgid ""
- "You can click <a href=\"https://docs.fuukei.org/Sakurairo/Global/"
- "#%E9%A1%B5%E5%B0%BE%E8%AE%BE%E7%BD%AE\">here</a> to learn how to set the options "
- "on this page"
- msgstr ""
- #: options/theme-options.php:829
- msgid "Footer Online Music Player"
- msgstr ""
- #: options/theme-options.php:830
- 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:833
- msgid "Netease Cloud Music"
- msgstr ""
- #: options/theme-options.php:834
- msgid "Kugou Music(may not be available)"
- msgstr ""
- #: options/theme-options.php:835
- msgid "Baidu Music(not available on servers overseas)"
- msgstr ""
- #: options/theme-options.php:836
- msgid "QQ Music(may not be available)"
- msgstr ""
- #: options/theme-options.php:844
- msgid "Footer Online Music Player Proxy"
- msgstr ""
- #: options/theme-options.php:846
- msgid ""
- "Ex. http://127.0.0.1:8080. Reference: https://curl.se/libcurl/c/CURLOPT_PROXY.html"
- msgstr ""
- #: options/theme-options.php:853
- msgid "Footer Online Music Player Songlist ID"
- msgstr ""
- #: options/theme-options.php:855
- msgid ""
- "Fill in the song ID, e.g. https://music.163.com/#/playlist?id=5380675133 "
- "SongID:5380675133"
- msgstr ""
- #: options/theme-options.php:862
- msgid "Footer Online Music Player Mode"
- msgstr ""
- #: options/theme-options.php:864
- msgid "Select music player mode"
- msgstr ""
- #: options/theme-options.php:866
- msgid "List"
- msgstr ""
- #: options/theme-options.php:867
- msgid "Random"
- msgstr ""
- #: options/theme-options.php:875
- msgid "Footer Online Music Player Preload"
- msgstr ""
- #: options/theme-options.php:877
- msgid "Whether to preload songs"
- msgstr ""
- #: options/theme-options.php:880
- msgid "Preload Metadata"
- msgstr ""
- #: options/theme-options.php:889
- msgid "Default Volume of Footer Online Music Player"
- msgstr ""
- #: options/theme-options.php:891
- msgid "Slide to adjust, the recommended sliding value range is 0.4-0.6"
- msgstr ""
- #: options/theme-options.php:900
- msgid "Netease Cloud Music Cookies"
- msgstr ""
- #: options/theme-options.php:902
- 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:908
- msgid "Footer Widget Area"
- msgstr ""
- #: options/theme-options.php:909
- 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:916
- msgid "Footer Widget Area Background"
- msgstr ""
- #: options/theme-options.php:918
- msgid "The best picture size is 400px × 460px"
- msgstr ""
- #: options/theme-options.php:925
- msgid "Footer Info"
- msgstr ""
- #: options/theme-options.php:926
- msgid "Footer description text, supports HTML code"
- msgstr ""
- #: options/theme-options.php:933
- msgid "Footer Text Font"
- msgstr ""
- #: options/theme-options.php:941
- msgid "Footer Load Occupancy Query"
- msgstr ""
- #: options/theme-options.php:942
- 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:949
- msgid "Footer Upyun League Logo"
- msgstr ""
- #: options/theme-options.php:950
- msgid "Upyun Logo will appear at the end of the page after turning it on"
- msgstr ""
- #: options/theme-options.php:958
- msgid "Footer Addition"
- msgstr ""
- #: options/theme-options.php:959
- msgid ""
- "Add HTML code at the end of the page. Useful for adding customize JavaScript."
- msgstr ""
- #: options/theme-options.php:964
- msgid "Hitokoto"
- msgstr ""
- #: options/theme-options.php:970
- msgid "Footer Hitokoto"
- msgstr ""
- #: options/theme-options.php:971
- msgid "Hitokoto will appear at the end of the page after turning it on"
- msgstr ""
- #: options/theme-options.php:978
- msgid ""
- "<h4>Hitokoto API Setup Instructions</h4> <p>Fill in as the example:<code> "
- "[\"https://api.nmxc.ltd/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.nmxc.ltd/yiyan/\">https://api."
- "nmxc.ltd/yiyan/</a></p>"
- msgstr ""
- #: options/theme-options.php:987
- msgid "Hitokoto API address"
- msgstr ""
- #: options/theme-options.php:989
- msgid "Fill in the address in JavaScript array format"
- msgstr ""
- #: options/theme-options.php:998
- msgid "Cursor Options"
- msgstr ""
- #: options/theme-options.php:1005
- msgid ""
- "You can click <a href=\"https://docs.fuukei.org/Sakurairo/Global/"
- "#%E5%85%89%E6%A0%87%E8%AE%BE%E7%BD%AE\">here</a> to learn how to set the options "
- "on this page"
- msgstr ""
- #: options/theme-options.php:1011
- msgid "Standard Cursor Style"
- msgstr ""
- #: options/theme-options.php:1012
- msgid "Apply to global, fill in \".cur\" mouse file link"
- msgstr ""
- #: options/theme-options.php:1019
- msgid "Selected Cursor Style"
- msgstr ""
- #: options/theme-options.php:1020
- msgid "Apply to multiple styles, fill in \".cur\" file link"
- msgstr ""
- #: options/theme-options.php:1027
- msgid "Selected Control Unit Cursor Style"
- msgstr ""
- #: options/theme-options.php:1028
- msgid "Apply to selected control unit, fill in \".cur\" file link"
- msgstr ""
- #: options/theme-options.php:1035
- msgid "Selected Text Cursor Style"
- msgstr ""
- #: options/theme-options.php:1036
- msgid "Apply to selected text, fill in \".cur\" file link"
- msgstr ""
- #: options/theme-options.php:1043
- msgid "Work Status Cursor Style"
- msgstr ""
- #: options/theme-options.php:1044
- msgid "Apply to load control unit, fill in \".cur\" file link"
- msgstr ""
- #: options/theme-options.php:1053
- msgid "Additional Options"
- msgstr ""
- #: options/theme-options.php:1060
- msgid ""
- "You can click <a href=\"https://docs.fuukei.org/Sakurairo/Global/"
- "#%E9%A2%9D%E5%A4%96%E8%AE%BE%E7%BD%AE\">here</a> to learn how to set the options "
- "on this page"
- msgstr ""
- #: options/theme-options.php:1065
- msgid "Effects&Animations"
- msgstr ""
- #: options/theme-options.php:1071
- msgid "Preload Animation"
- msgstr ""
- #: options/theme-options.php:1072
- msgid ""
- "Preload animation before new pages load; To enable this option, ensure your page "
- "resources can load properly."
- msgstr ""
- #: options/theme-options.php:1079
- msgid "Preload Animation Color A"
- msgstr ""
- #: options/theme-options.php:1088
- msgid "Preload Animation Color B"
- msgstr ""
- #: options/theme-options.php:1096
- msgid "Preload Animation Blur Transition Effect"
- msgstr ""
- #: options/theme-options.php:1098
- msgid "Blur transition duration in milliseconds ms, off when set to 0."
- msgstr ""
- #: options/theme-options.php:1108
- msgid "Sakura Falling Effects"
- msgstr ""
- #: options/theme-options.php:1111
- msgid "Native Quantity"
- msgstr ""
- #: options/theme-options.php:1112
- msgid "Quarter Quantity"
- msgstr ""
- #: options/theme-options.php:1113
- msgid "Half Quantity"
- msgstr ""
- #: options/theme-options.php:1114
- msgid "Less Quantity"
- msgstr ""
- #: options/theme-options.php:1122
- msgid "Particles Effects"
- msgstr ""
- #: options/theme-options.php:1124
- 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:1132
- msgid "Particles JSON"
- msgstr ""
- #: options/theme-options.php:1134
- 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:1251
- msgid "Note Touch Effects"
- msgstr ""
- #: options/theme-options.php:1252
- 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:1258
- msgid "Feature"
- msgstr ""
- #: options/theme-options.php:1264
- msgid "PJAX Partial Refresh"
- msgstr ""
- #: options/theme-options.php:1265
- msgid "Enabled by default, clicking to a new page will not require reloading"
- msgstr ""
- #: options/theme-options.php:1272
- msgid "NProgress Loading Progress Bar"
- msgstr ""
- #: options/theme-options.php:1273
- msgid "Enabled by default, when loading page there will be a progress bar alert"
- msgstr ""
- #: options/theme-options.php:1280
- msgid "Global Smooth Scroll"
- msgstr ""
- #: options/theme-options.php:1281
- msgid "Enabled by default, page scrolling will be smoother"
- msgstr ""
- #: options/theme-options.php:1288
- msgid "Captcha Selection"
- msgstr ""
- #: options/theme-options.php:1291
- msgid "Theme Built in Captcha"
- msgstr ""
- #: options/theme-options.php:1292
- msgid "Vaptcha"
- msgstr ""
- #: options/theme-options.php:1300
- msgid "Vaptcha VID"
- msgstr ""
- #: options/theme-options.php:1302
- msgid "Fill in your Vaptcha VID"
- msgstr ""
- #: options/theme-options.php:1308
- msgid "Vaptcha KEY"
- msgstr ""
- #: options/theme-options.php:1310
- msgid "Fill in your Vaptcha KEY"
- msgstr ""
- #: options/theme-options.php:1316
- msgid "Vaptcha Scene"
- msgstr ""
- #: options/theme-options.php:1332
- msgid "Pagination Mode"
- msgstr ""
- #: options/theme-options.php:1334
- msgid "Ajax Load"
- msgstr ""
- #: options/theme-options.php:1335
- msgid "Page Up/Down"
- msgstr ""
- #: options/theme-options.php:1343
- msgid "Next Page Auto Load"
- msgstr ""
- #: options/theme-options.php:1346
- msgid "do not autoload"
- msgstr ""
- #: options/theme-options.php:1347
- msgid "0 Sec"
- msgstr ""
- #: options/theme-options.php:1348
- msgid "1 Sec"
- msgstr ""
- #: options/theme-options.php:1349
- msgid "2 Sec"
- msgstr ""
- #: options/theme-options.php:1350
- msgid "3 Sec"
- msgstr ""
- #: options/theme-options.php:1351
- msgid "4 Sec"
- msgstr ""
- #: options/theme-options.php:1352
- msgid "5 Sec"
- msgstr ""
- #: options/theme-options.php:1353
- msgid "6 Sec"
- msgstr ""
- #: options/theme-options.php:1354
- msgid "7 Sec"
- msgstr ""
- #: options/theme-options.php:1355
- msgid "8 Sec"
- msgstr ""
- #: options/theme-options.php:1356
- msgid "9 Sec"
- msgstr ""
- #: options/theme-options.php:1357
- msgid "10 Sec"
- msgstr ""
- #: options/theme-options.php:1365
- msgid "Placeholder SVG when loading the next page"
- msgstr ""
- #: options/theme-options.php:1366
- 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:1374
- msgid "HomePage Options"
- msgstr ""
- #: options/theme-options.php:1380
- msgid "Cover Options"
- msgstr ""
- #: options/theme-options.php:1387
- msgid ""
- "You can click <a href=\"https://docs.fuukei.org/Sakurairo/Homepage/"
- "#%E5%B0%81%E9%9D%A2%E8%AE%BE%E7%BD%AE\">here</a> to learn how to set the options "
- "on this page"
- msgstr ""
- #: options/theme-options.php:1393
- msgid "Cover Switch"
- msgstr ""
- #: options/theme-options.php:1394
- msgid "On by default, if off, all options below will be disabled"
- msgstr ""
- #: options/theme-options.php:1401
- msgid "Cover Full Screen"
- msgstr ""
- #: options/theme-options.php:1410
- msgid "Cover Arc Occlusion (Below)"
- msgstr ""
- #: options/theme-options.php:1411
- msgid "An arc occlusion will appear below the cover when turned on"
- msgstr ""
- #: options/theme-options.php:1418
- msgid "Cover Radius"
- msgstr ""
- #: options/theme-options.php:1419
- msgid "Slide to adjust, the recommended value range is 15-20"
- msgstr ""
- #: options/theme-options.php:1428
- msgid "Cover Animation"
- msgstr ""
- #: options/theme-options.php:1429
- msgid "On by default, if off, the cover will be displayed directly"
- msgstr ""
- #: options/theme-options.php:1436
- msgid "Cover Animation Time"
- msgstr ""
- #: options/theme-options.php:1448
- msgid "Cover Info Bar"
- msgstr ""
- #: options/theme-options.php:1449
- msgid ""
- "Enabled by default, show avatar, Mashiro effects text, signature bar, shuoshuo "
- "bar, social area"
- msgstr ""
- #: options/theme-options.php:1456
- msgid "Cover Info Bar Style"
- msgstr ""
- #: options/theme-options.php:1467
- msgid "Cover Info Bar Background Color"
- msgstr ""
- #: options/theme-options.php:1475
- msgid "Cover Info Bar Avatar Radius"
- msgstr ""
- #: options/theme-options.php:1476
- msgid "Slide to adjust, the recommended value is 100"
- msgstr ""
- #: options/theme-options.php:1484
- msgid "Cover Info Bar Rounded"
- msgstr ""
- #: options/theme-options.php:1485
- msgid "Slide to adjust, the recommended value range 10-20"
- msgstr ""
- #: options/theme-options.php:1494
- msgid "Cover Signature Field Text"
- msgstr ""
- #: options/theme-options.php:1495 options/theme-options.php:2676
- msgid "A self-descriptive quote"
- msgstr ""
- #: options/theme-options.php:1502
- msgid "Cover Signature Field Text Font"
- msgstr ""
- #: options/theme-options.php:1510
- msgid "Cover Signature Field Text Font Size"
- msgstr ""
- #: options/theme-options.php:1521
- msgid "Cover Signature Bar Typing Effects"
- msgstr ""
- #: options/theme-options.php:1522
- 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:1529
- msgid "Cover Signature Field Typing Effects Double Quotes"
- msgstr ""
- #: options/theme-options.php:1531
- msgid "Typing effects will be appended with double quotes when turned on"
- msgstr ""
- #: options/theme-options.php:1538
- msgid "Cover Signature Field Typing Effects Placeholder"
- msgstr ""
- #: options/theme-options.php:1547
- msgid "Typed.js initial option"
- msgstr ""
- #: options/theme-options.php:1555
- msgid "Cover Shuoshuo Bar"
- msgstr ""
- #: options/theme-options.php:1556
- msgid ""
- "When turned on, the Latest Shuoshuo text will be Cyclic displayed with info bar "
- msgstr ""
- #: options/theme-options.php:1563
- msgid "Cover Random Image Options"
- msgstr ""
- #: options/theme-options.php:1565
- msgid "External API"
- msgstr ""
- #: options/theme-options.php:1566
- msgid "Webp optimized"
- msgstr ""
- #: options/theme-options.php:1567
- msgid "Local"
- msgstr ""
- #: options/theme-options.php:1575
- msgid "Cover Random Image Multi-terminal Separation"
- msgstr ""
- #: options/theme-options.php:1576
- msgid ""
- "Enabled by default, desktop and mobile devices will use separate random image "
- "addresses"
- msgstr ""
- #: options/theme-options.php:1583
- msgid "Webp Optimization/External API Desktop Side Random Graphics Address"
- msgstr ""
- #: options/theme-options.php:1584 options/theme-options.php:1595
- msgid "Fill in an URL"
- msgstr ""
- #: options/theme-options.php:1593
- msgid "External API Mobile Devices Random Image Address"
- msgstr ""
- #: options/theme-options.php:1604
- msgid "Cover Random Background Image Cache"
- msgstr ""
- #: options/theme-options.php:1605
- 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:1612
- msgid "Cover and Frontend Background Integration"
- msgstr ""
- #: options/theme-options.php:1613
- 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:1620
- msgid "Cover Random Images Filter"
- msgstr ""
- #: options/theme-options.php:1622
- msgid "No filter"
- msgstr ""
- #: options/theme-options.php:1623
- msgid "Light filter"
- msgstr ""
- #: options/theme-options.php:1624
- msgid "Dimmed filter"
- msgstr ""
- #: options/theme-options.php:1625
- msgid "Grid filter"
- msgstr ""
- #: options/theme-options.php:1626
- msgid "Dot filter"
- msgstr ""
- #: options/theme-options.php:1634
- msgid "Cover Wave Effects"
- msgstr ""
- #: options/theme-options.php:1635
- 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:1642
- msgid "Cover Dropdown Arrow"
- msgstr ""
- #: options/theme-options.php:1643
- msgid "Enabled by default, show a dropdown arrow at bottom of home cover"
- msgstr ""
- #: options/theme-options.php:1650
- msgid "Cover Dropdown Arrow Display on Mobile Devices"
- msgstr ""
- #: options/theme-options.php:1652
- msgid ""
- "Drop down arrow will appear at the bottom of the mobile devices' home cover after "
- "turning it on"
- msgstr ""
- #: options/theme-options.php:1659
- msgid "Cover Dropdown Arrow Color"
- msgstr ""
- #: options/theme-options.php:1668
- msgid "Cover Dropdown Arrow Color (Dark Mode)"
- msgstr ""
- #: options/theme-options.php:1670
- msgid "Customize the colors, dark colors are recommended"
- msgstr ""
- #: options/theme-options.php:1677
- msgid "Cover Video"
- msgstr ""
- #: options/theme-options.php:1678
- msgid "Use a video instead of the images as the cover"
- msgstr ""
- #: options/theme-options.php:1685
- msgid "Cover Video Loop"
- msgstr ""
- #: options/theme-options.php:1687
- msgid "Video will loop automatically when enabled."
- msgstr ""
- #: options/theme-options.php:1694
- msgid "Cover Video Auto Resume"
- msgstr ""
- #: options/theme-options.php:1696
- msgid ""
- "Cover Video will resume automatically when coming back to homepage while Pjax "
- "enabled."
- msgstr ""
- #: options/theme-options.php:1703
- msgid "Cover Video URL Base Path"
- msgstr ""
- #: options/theme-options.php:1706
- 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:1712
- msgid "Cover Video File Name"
- msgstr ""
- #: options/theme-options.php:1714
- 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:1722
- msgid "Cover Social Area Options"
- msgstr ""
- #: options/theme-options.php:1729
- msgid ""
- "You can click <a href=\"https://docs.fuukei.org/Sakurairo/Homepage/"
- "#%E5%B0%81%E9%9D%A2%E7%A4%BE%E4%BA%A4%E5%8C%BA%E5%9F%9F%E8%AE%BE%E7%BD%AE\">here</"
- "a> to learn how to set the options on this page"
- msgstr ""
- #: options/theme-options.php:1734
- msgid "Related Options"
- msgstr ""
- #: options/theme-options.php:1740
- msgid "Cover Social Area"
- msgstr ""
- #: options/theme-options.php:1741
- msgid ""
- "Enabled by default, show cover random image toggle button and social network icons"
- msgstr ""
- #: options/theme-options.php:1748
- msgid "Social Icon"
- msgstr ""
- #: options/theme-options.php:1749
- msgid ""
- "Select your favorite icon pack. Icon pack references are detailed in the \"About "
- "Theme\" section"
- msgstr ""
- #: options/theme-options.php:1770
- msgid "Cover Social Area Rounded Corners"
- msgstr ""
- #: options/theme-options.php:1772
- msgid "Slide to adjust, the recommended value range is 10-20"
- msgstr ""
- #: options/theme-options.php:1781
- msgid "Switch Button of Random Images"
- msgstr ""
- #: options/theme-options.php:1783
- msgid "Enabled by default, show cover random image toggle button"
- msgstr ""
- #: options/theme-options.php:1789
- msgid "Social Network"
- msgstr ""
- #: options/theme-options.php:1795
- msgid "Wechat"
- msgstr ""
- #: options/theme-options.php:1804
- msgid "QQ"
- msgstr ""
- #: options/theme-options.php:1806
- msgid ""
- "Please note the format of filling out the form, e.g. tencent://message/?uin=123456"
- msgstr ""
- #: options/theme-options.php:1812
- msgid "Bilibili"
- msgstr ""
- #: options/theme-options.php:1814 options/theme-options.php:1822
- #: options/theme-options.php:1830 options/theme-options.php:1838
- #: options/theme-options.php:1846 options/theme-options.php:1854
- #: options/theme-options.php:1862 options/theme-options.php:1870
- #: options/theme-options.php:1878 options/theme-options.php:1886
- #: options/theme-options.php:1894 options/theme-options.php:1902
- #: options/theme-options.php:1910 options/theme-options.php:1918
- #: options/theme-options.php:1926 options/theme-options.php:1934
- #: options/theme-options.php:1959 options/theme-options.php:2256
- #: options/theme-options.php:2282 options/theme-options.php:2308
- #: options/theme-options.php:2416
- msgid "add URL"
- msgstr ""
- #: options/theme-options.php:1820
- msgid "NetEase Music"
- msgstr ""
- #: options/theme-options.php:1828
- msgid "Weibo"
- msgstr ""
- #: options/theme-options.php:1836
- msgid "Github"
- msgstr ""
- #: options/theme-options.php:1844
- msgid "Telegram"
- msgstr ""
- #: options/theme-options.php:1852
- msgid "Steam"
- msgstr ""
- #: options/theme-options.php:1860
- msgid "ZhiHu"
- msgstr ""
- #: options/theme-options.php:1868
- msgid "QZone"
- msgstr ""
- #: options/theme-options.php:1876
- msgid "Lofter"
- msgstr ""
- #: options/theme-options.php:1884
- msgid "Youku"
- msgstr ""
- #: options/theme-options.php:1892
- msgid "Linkedin"
- msgstr ""
- #: options/theme-options.php:1900
- msgid "Twitter"
- msgstr ""
- #: options/theme-options.php:1908
- msgid "Facebook"
- msgstr ""
- #: options/theme-options.php:1916
- msgid "CSDN"
- msgstr ""
- #: options/theme-options.php:1924
- msgid "JianShu"
- msgstr ""
- #: options/theme-options.php:1932
- msgid "Customized Social Network Ⅰ"
- msgstr ""
- #: options/theme-options.php:1940
- msgid "Customized Social Network Ⅰ Title"
- msgstr ""
- #: options/theme-options.php:1948
- msgid "Customized Social Network Ⅰ icon"
- msgstr ""
- #: options/theme-options.php:1957
- msgid "Customized Social Network Ⅱ"
- msgstr ""
- #: options/theme-options.php:1965
- msgid "Customized Social Network Ⅱ Title"
- msgstr ""
- #: options/theme-options.php:1973
- msgid "Customized Social Network Ⅱ icon"
- msgstr ""
- #: options/theme-options.php:1982
- msgid "Email Username"
- msgstr ""
- #: options/theme-options.php:1984
- 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:1990
- msgid "Email Domain"
- msgstr ""
- #: options/theme-options.php:1992
- msgid "name@domain.com fo domain.com"
- msgstr ""
- #: options/theme-options.php:2000
- msgid "Bulletin Board and Area Title Options"
- msgstr ""
- #: options/theme-options.php:2007
- msgid ""
- "You can click <a href=\"https://docs.fuukei.org/Sakurairo/Homepage/"
- "#%E5%85%AC%E5%91%8A%E6%A0%8F%E5%92%8C%E5%8C%BA%E5%9F%9F%E6%A0%87%E9%A2%98%E8%AE%BE%E7%BD%AE\">here</"
- "a> to learn how to set the options on this page"
- msgstr ""
- #: options/theme-options.php:2012 options/theme-options.php:2018
- msgid "Bulletin Board"
- msgstr ""
- #: options/theme-options.php:2019
- msgid "When enabled the bulletin board will be displayed below the front cover"
- msgstr ""
- #: options/theme-options.php:2026
- msgid "Bulletin Board Style"
- msgstr ""
- #: options/theme-options.php:2029
- msgid "Picture Background"
- msgstr ""
- #: options/theme-options.php:2030
- msgid "Color Background"
- msgstr ""
- #: options/theme-options.php:2038
- msgid "Bulletin Board \"Notice\" Icon"
- msgstr ""
- #: options/theme-options.php:2040
- msgid ""
- "The \"Notice\" icon will be displayed on the left side of the announcement bar"
- msgstr ""
- #: options/theme-options.php:2047
- msgid "Bulletin Board Background"
- msgstr ""
- #: options/theme-options.php:2052
- msgid "Best width 820px, best height 67px"
- msgstr ""
- #: options/theme-options.php:2060
- msgid "Bulletin Board Border Color"
- msgstr ""
- #: options/theme-options.php:2065
- msgid ""
- "Customize the colors, it is recommended to use a light color that corresponds "
- "with the theme color"
- msgstr ""
- #: options/theme-options.php:2072
- msgid "Bulletin Board Text"
- msgstr ""
- #: options/theme-options.php:2074
- msgid "Fill in the announcement text, the text beyond 142 bytes will be hidden"
- msgstr ""
- #: options/theme-options.php:2080
- msgid "Bulletin Board Alignment"
- msgstr ""
- #: options/theme-options.php:2093
- msgid "Bulletin Board Text Color"
- msgstr ""
- #: options/theme-options.php:2095 options/theme-options.php:2183
- #: options/theme-options.php:2369 options/theme-options.php:2829
- #: options/theme-options.php:2837 options/theme-options.php:2880
- #: options/theme-options.php:2888
- msgid ""
- "Customize the colors, suggest using a corresponding color with the background "
- "color"
- msgstr ""
- #: options/theme-options.php:2101
- msgid "Area Title"
- msgstr ""
- #: options/theme-options.php:2107
- msgid "Display Area Icon"
- msgstr ""
- #: options/theme-options.php:2108
- msgid ""
- "Default is \"fa-solid fa-laptop\", You can check the <a href=\"https://"
- "fontawesome.com/search?o=r&m=free\">FontAwesome Website</a> to see the icons that "
- "can be filled in"
- msgstr ""
- #: options/theme-options.php:2115
- msgid "Display Area Title"
- msgstr ""
- #: options/theme-options.php:2116
- 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:2123
- msgid "Post Area Icon"
- msgstr ""
- #: options/theme-options.php:2124
- msgid ""
- "Default is \"fa-regular fa-bookmark\", You can check the <a href=\"https://"
- "fontawesome.com/search?o=r&m=free\">FontAwesome Website</a> to see the icons that "
- "can be filled in"
- msgstr ""
- #: options/theme-options.php:2131
- msgid "Post Area Title"
- msgstr ""
- #: options/theme-options.php:2132
- 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:2139
- msgid "Area Title Font"
- msgstr ""
- #: options/theme-options.php:2147
- msgid "Area Title Alignment"
- msgstr ""
- #: options/theme-options.php:2161 options/theme-options.php:2232
- msgid "Display Area Options"
- msgstr ""
- #: options/theme-options.php:2168
- msgid ""
- "You can click <a href=\"https://docs.fuukei.org/Sakurairo/Homepage/"
- "#%E5%B1%95%E7%A4%BA%E5%8C%BA%E5%9F%9F%E8%AE%BE%E7%BD%AE\">here</a> to learn how "
- "to set the options on this page"
- msgstr ""
- #: options/theme-options.php:2174
- msgid "Display Area"
- msgstr ""
- #: options/theme-options.php:2175
- msgid "Enabled by default, display area is above article area"
- msgstr ""
- #: options/theme-options.php:2182
- msgid "Display Area Matching Color"
- msgstr ""
- #: options/theme-options.php:2190
- msgid "Display Area Style"
- msgstr ""
- #: options/theme-options.php:2201
- msgid "Display Area Compatibility Mode"
- msgstr ""
- #: options/theme-options.php:2203
- msgid ""
- "Enabled by default, this option avoids the problem of misaligned display areas"
- msgstr ""
- #: options/theme-options.php:2210
- msgid "Display Area Background Color"
- msgstr ""
- #: options/theme-options.php:2219
- msgid "Display Area Rounded Corners"
- msgstr ""
- #: options/theme-options.php:2235
- msgid "First Display Area"
- msgstr ""
- #: options/theme-options.php:2240 options/theme-options.php:2266
- #: options/theme-options.php:2292
- msgid "image"
- msgstr ""
- #: options/theme-options.php:2241 options/theme-options.php:2267
- #: options/theme-options.php:2293
- msgid "best width 260px, best height 160px"
- msgstr ""
- #: options/theme-options.php:2246 options/theme-options.php:2272
- #: options/theme-options.php:2298
- msgid "title"
- msgstr ""
- #: options/theme-options.php:2251 options/theme-options.php:2277
- #: options/theme-options.php:2303
- msgid "description"
- msgstr ""
- #: options/theme-options.php:2261
- msgid "Second Display Area"
- msgstr ""
- #: options/theme-options.php:2287
- msgid "Third Display Area"
- msgstr ""
- #: options/theme-options.php:2334
- msgid "Article Area Options"
- msgstr ""
- #: options/theme-options.php:2341
- msgid ""
- "You can click <a href=\"https://docs.fuukei.org/Sakurairo/Homepage/"
- "#%E6%96%87%E7%AB%A0%E5%8C%BA%E5%9F%9F%E8%AE%BE%E7%BD%AE\">here</a> to learn how "
- "to set the options on this page"
- msgstr ""
- #: options/theme-options.php:2347
- msgid "Article Area Display Style"
- msgstr ""
- #: options/theme-options.php:2358
- msgid "Article Area Matching Color"
- msgstr ""
- #: options/theme-options.php:2360
- msgid ""
- "Customize the colors, This option only supports filling in hexadecimal colors, "
- "suggest the same as the matching color"
- msgstr ""
- #: options/theme-options.php:2367
- msgid "Article Area Border Shadow Color"
- msgstr ""
- #: options/theme-options.php:2376
- msgid "Article Area Featured Image Display Shapes"
- msgstr ""
- #: options/theme-options.php:2378
- msgid "You can choose a circular or a rectangular display of the featured image"
- msgstr ""
- #: options/theme-options.php:2389
- msgid "Article Area Featured Image Alignment"
- msgstr ""
- #: options/theme-options.php:2391
- msgid "You can choose different directions to display the featured images"
- msgstr ""
- #: options/theme-options.php:2403
- msgid "Article Area Featured Image Options"
- msgstr ""
- #: options/theme-options.php:2405
- msgid "Cover Random Image"
- msgstr ""
- #: options/theme-options.php:2406
- msgid "External API Random Image"
- msgstr ""
- #: options/theme-options.php:2414
- msgid "Article Area Featured Image External API Random Image Address"
- msgstr ""
- #: options/theme-options.php:2424
- msgid "Article Area Title Font Size"
- msgstr ""
- #: options/theme-options.php:2425
- msgid "Slide to adjust, the recommended value range is 16-20"
- msgstr ""
- #: options/theme-options.php:2437
- msgid "Article Area Time Display Area Font Size"
- msgstr ""
- #: options/theme-options.php:2439
- msgid "Slide to adjust, the recommended values range is 10-14"
- msgstr ""
- #: options/theme-options.php:2450
- msgid "Article Area Author Info"
- msgstr ""
- #: options/theme-options.php:2451
- msgid ""
- "When turned on, author information will be added to the article metadata section."
- msgstr ""
- #: options/theme-options.php:2460
- msgid "Page Options"
- msgstr ""
- #: options/theme-options.php:2466
- msgid "Common Options"
- msgstr ""
- #: options/theme-options.php:2473
- msgid ""
- "You can click <a href=\"https://docs.fuukei.org/Sakurairo/Pages/"
- "#%E7%BB%BC%E5%90%88%E8%AE%BE%E7%BD%AE\">here</a> to learn how to set the options "
- "on this page"
- msgstr ""
- #: options/theme-options.php:2479
- msgid "Page Style"
- msgstr ""
- #: options/theme-options.php:2490
- msgid "Page Layout Style"
- msgstr ""
- #: options/theme-options.php:2492
- msgid "Default Style"
- msgstr ""
- #: options/theme-options.php:2493
- msgid "Github Style"
- msgstr ""
- #: options/theme-options.php:2501
- msgid "Page Decoration Image"
- msgstr ""
- #: options/theme-options.php:2502
- msgid ""
- "Enabled by default, show on article pages, standalone pages and category pages"
- msgstr ""
- #: options/theme-options.php:2509
- msgid "Page Title Animation"
- msgstr ""
- #: options/theme-options.php:2510
- msgid "Page title will have float-in animation when turned on"
- msgstr ""
- #: options/theme-options.php:2517
- msgid "Page Title Animation Time"
- msgstr ""
- #: options/theme-options.php:2519
- msgid "Slide to adjust, recommended value range is 1-2"
- msgstr ""
- #: options/theme-options.php:2529
- msgid "Page Clipboard Copyright Notice"
- msgstr ""
- #: options/theme-options.php:2530
- msgid ""
- "Enabled by default, users will have copyright notice text when copying text "
- "content over 30 bytes"
- msgstr ""
- #: options/theme-options.php:2537
- msgid "Page LazyLoad"
- msgstr ""
- #: options/theme-options.php:2538
- msgid ""
- "LazyLoad effect for page images, WordPress block editor already comes with "
- "similar effect, not recommended to turn on"
- msgstr ""
- #: options/theme-options.php:2545
- msgid "Page LazyLoad Placeholder SVG"
- msgstr ""
- #: options/theme-options.php:2547
- 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:2554
- msgid "Page Image Placeholder SVG"
- msgstr ""
- #: options/theme-options.php:2555
- 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:2564
- msgid "Article Page Options"
- msgstr ""
- #: options/theme-options.php:2571
- msgid ""
- "You can click <a href=\"https://docs.fuukei.org/Sakurairo/Pages/"
- "#%E6%96%87%E7%AB%A0%E9%A1%B5%E9%9D%A2%E8%AE%BE%E7%BD%AE\">here</a> to learn how "
- "to set the options on this page"
- msgstr ""
- #: options/theme-options.php:2577
- msgid "Article Page Title Font Size"
- msgstr ""
- #: options/theme-options.php:2578
- 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:2588
- msgid "Article Page Title Underline Animation"
- msgstr ""
- #: options/theme-options.php:2589
- msgid ""
- "Article title will have underline animation when this is enabled and article has "
- "a featured image set"
- msgstr ""
- #: options/theme-options.php:2596
- msgid "Article Page Auto Show Menu"
- msgstr ""
- #: options/theme-options.php:2597
- msgid "Enabled by default, the article page will automatically show the menu"
- msgstr ""
- #: options/theme-options.php:2603
- msgid "Article Expansion Area"
- msgstr ""
- #: options/theme-options.php:2609
- msgid "Article Page Function Bar"
- msgstr ""
- #: options/theme-options.php:2610
- msgid ""
- "Enabled by default, will be displayed on the article page with the features "
- "enabled below"
- msgstr ""
- #: options/theme-options.php:2617
- msgid "Article Lincenses"
- msgstr ""
- #: options/theme-options.php:2619
- msgid "Enabled by default, Article lincenses will appear on the function bar"
- msgstr ""
- #: options/theme-options.php:2626
- msgid "Article Page Appreciation Function (Alipay QR Code)"
- msgstr ""
- #: options/theme-options.php:2628
- msgid "Upload Alipay Receipt QR Code Image"
- msgstr ""
- #: options/theme-options.php:2635
- msgid "Article Page Appreciation Function (Wechat QR Code)"
- msgstr ""
- #: options/theme-options.php:2637
- msgid "Upload WeChat Receipt QR Code Image"
- msgstr ""
- #: options/theme-options.php:2644
- msgid "Article Page Author Avatar"
- msgstr ""
- #: options/theme-options.php:2646
- msgid "Enabled by default, Author avatar will appear on the function bar"
- msgstr ""
- #: options/theme-options.php:2653
- msgid "Article Page Author Name"
- msgstr ""
- #: options/theme-options.php:2655
- msgid "Author name will appear on the function bar when enabled"
- msgstr ""
- #: options/theme-options.php:2662
- msgid "Article Page Author Signature"
- msgstr ""
- #: options/theme-options.php:2664
- msgid "Enabled by default, Author signature will appear on the function bar"
- msgstr ""
- #: options/theme-options.php:2671
- msgid "Article Page Author Info Signature Text"
- msgstr ""
- #: options/theme-options.php:2683
- msgid "Article Last Update Time"
- msgstr ""
- #: options/theme-options.php:2685
- msgid "Article last update time will appear on the function bar when enabled"
- msgstr ""
- #: options/theme-options.php:2692
- msgid "Article Tag"
- msgstr ""
- #: options/theme-options.php:2694
- msgid "Enabled by default, Article tag will appear on the function bar"
- msgstr ""
- #: options/theme-options.php:2701
- msgid "Article Page Prev/Next Article Switcher"
- msgstr ""
- #: options/theme-options.php:2702
- msgid ""
- "Enabled by default, the previous and next article switch will appear on the "
- "article pages"
- msgstr ""
- #: options/theme-options.php:2711
- msgid "Template Page Options"
- msgstr ""
- #: options/theme-options.php:2718
- msgid ""
- "You can click <a href=\"https://docs.fuukei.org/Sakurairo/Pages/"
- "#%E6%A8%A1%E6%9D%BF%E9%A1%B5%E9%9D%A2%E8%AE%BE%E7%BD%AE\">here</a> to learn how "
- "to set the options on this page"
- msgstr ""
- #: options/theme-options.php:2724
- msgid "Template Page Title Font Size"
- msgstr ""
- #: options/theme-options.php:2725
- 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:2735
- msgid "Ideas Template Background ColorⅠ"
- msgstr ""
- #: options/theme-options.php:2743
- msgid "Ideas Template Background Color II"
- msgstr ""
- #: options/theme-options.php:2751
- msgid "Ideas Template Tip Arrow"
- msgstr ""
- #: options/theme-options.php:2752
- msgid "After turning on the alert arrow will appear on the left side of the comment"
- msgstr ""
- #: options/theme-options.php:2759
- msgid "Ideas Template Font"
- msgstr ""
- #: options/theme-options.php:2767
- msgid "Bangumi Template Source"
- msgstr ""
- #: options/theme-options.php:2778
- msgid "My Anime List Username"
- msgstr ""
- #: options/theme-options.php:2780
- msgid "Username on https://myanimelist.net/"
- msgstr ""
- #: options/theme-options.php:2787
- msgid "My Anime List Sort"
- msgstr ""
- #: options/theme-options.php:2790
- msgid "Status and Last Updated"
- msgstr ""
- #: options/theme-options.php:2791
- msgid "Last Updated"
- msgstr ""
- #: options/theme-options.php:2792
- msgid "Status"
- msgstr ""
- #: options/theme-options.php:2800
- msgid "Bilibili Account UID"
- msgstr ""
- #: options/theme-options.php:2801
- msgid ""
- "Fill in your account ID, e.g. https://space.bilibili.com/13972644/, just the "
- "number part \"13972644\""
- msgstr ""
- #: options/theme-options.php:2808
- msgid "Bilibili Account Cookies"
- msgstr ""
- #: options/theme-options.php:2809
- 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:2816
- msgid "Friend Link Template Unit Alignment"
- msgstr ""
- #: options/theme-options.php:2828
- msgid "Friend Link Template Unit Matching Color"
- msgstr ""
- #: options/theme-options.php:2836
- msgid "Friend Link Template Unit Border Shadow Color"
- msgstr ""
- #: options/theme-options.php:2844
- msgid "Login Template Registration Function"
- msgstr ""
- #: options/theme-options.php:2845
- msgid "Login template will allow registration when enabled"
- msgstr ""
- #: options/theme-options.php:2854
- msgid "Comment-related Options"
- msgstr ""
- #: options/theme-options.php:2861
- msgid ""
- "You can click <a href=\"https://docs.fuukei.org/Sakurairo/Pages/"
- "#%E8%AF%84%E8%AE%BA%E7%9B%B8%E5%85%B3%E8%AE%BE%E7%BD%AE\">here</a> to learn how "
- "to set the options on this page"
- msgstr ""
- #: options/theme-options.php:2867
- msgid "Page Comment Area Display"
- msgstr ""
- #: options/theme-options.php:2868
- msgid "You can choose to expand or shirink the content of the comment area"
- msgstr ""
- #: options/theme-options.php:2870
- msgid "Expand"
- msgstr ""
- #: options/theme-options.php:2871
- msgid "Shrink"
- msgstr ""
- #: options/theme-options.php:2879
- msgid "Page Comment Area Matching Color"
- msgstr ""
- #: options/theme-options.php:2887
- msgid "Page Comment Area Shadow Color"
- msgstr ""
- #: options/theme-options.php:2895
- msgid "Page Comment Area Bilibili Emoji Pack"
- msgstr ""
- #: options/theme-options.php:2896
- msgid "Default on, bilibili emotions are displayed below the comment box"
- msgstr ""
- #: options/theme-options.php:2903
- msgid "Page Comment Area Bottom Right Background Image"
- msgstr ""
- #: options/theme-options.php:2904
- msgid "If this option is blank, there will be no image, no best recommendation here"
- msgstr ""
- #: options/theme-options.php:2911
- msgid "Page Comment Area UA Info"
- msgstr ""
- #: options/theme-options.php:2912
- msgid ""
- "When enabled, the page comment area will display the user’s browser, operating "
- "system information"
- msgstr ""
- #: options/theme-options.php:2919
- msgid "Page Comment Area Location Information"
- msgstr ""
- #: options/theme-options.php:2920
- msgid ""
- "When enabled, the page comment area will show the user’s location information"
- msgstr ""
- #: options/theme-options.php:2927
- msgid "Private Comment Function"
- msgstr ""
- #: options/theme-options.php:2928
- msgid ""
- "When enabled, users are allowed to set their comments to be invisible to others"
- msgstr ""
- #: options/theme-options.php:2935
- msgid "Page Comment Area Bot Verification"
- msgstr ""
- #: options/theme-options.php:2936
- msgid "After turning on user comments need to be verified before posting"
- msgstr ""
- #: options/theme-options.php:2943
- msgid "QQ Avatar Link Encryption"
- msgstr ""
- #: options/theme-options.php:2946
- msgid "Redirect (low security)"
- msgstr ""
- #: options/theme-options.php:2947
- msgid "Get avatar data in the backend (medium security)"
- msgstr ""
- #: options/theme-options.php:2948
- msgid "Parse avatar interface in the backend (high security, slow)"
- msgstr ""
- #: options/theme-options.php:2956
- msgid "Page Comment Area Upload Image Interface"
- msgstr ""
- #: options/theme-options.php:2970
- msgid "Imgur Client ID"
- msgstr ""
- #: options/theme-options.php:2972
- msgid ""
- "Fill in Client ID here, to register please visit https://api.imgur.com/oauth2/"
- "addclient"
- msgstr ""
- #: options/theme-options.php:2978
- msgid "Imgur Upload Proxy"
- msgstr ""
- #: options/theme-options.php:2980
- 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:2987
- msgid "SM.MS Secret Token"
- msgstr ""
- #: options/theme-options.php:2989
- msgid "Fill in your Key here, to get it please visit https://sm.ms/home/apitoken"
- msgstr ""
- #: options/theme-options.php:2995
- msgid "Chevereto API v1 Key"
- msgstr ""
- #: options/theme-options.php:2997
- msgid ""
- "Fill in the Key here, to get please visit your Chevereto home page address/"
- "dashboard/settings/api"
- msgstr ""
- #: options/theme-options.php:3003
- msgid "Chevereto Address"
- msgstr ""
- #: options/theme-options.php:3005
- 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:3011
- msgid "Lsky Pro v1 Token"
- msgstr ""
- #: options/theme-options.php:3013
- 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:3019
- msgid "Lsky Pro Address"
- msgstr ""
- #: options/theme-options.php:3021
- 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:3027
- msgid "Comment Image Proxy"
- msgstr ""
- #: options/theme-options.php:3028
- msgid "Proxy for the image displayed on the frontend"
- msgstr ""
- #: options/theme-options.php:3035
- msgid "Mail Template Featured Image"
- msgstr ""
- #: options/theme-options.php:3036
- msgid "Set the background image of your reply email"
- msgstr ""
- #: options/theme-options.php:3044
- msgid "Mail Template Sending Address Prefix"
- msgstr ""
- #: options/theme-options.php:3045
- 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:3052
- msgid "User Mail Reply Notification"
- msgstr ""
- #: options/theme-options.php:3053
- 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:3060
- msgid "Admin Email Reply Notification"
- msgstr ""
- #: options/theme-options.php:3061
- msgid ""
- "Use email notifications when admin comments receive a reply after turning it on"
- msgstr ""
- #: options/theme-options.php:3070
- msgid "Other Options"
- msgstr ""
- #: options/theme-options.php:3076
- msgid "Login Screen and Dashboard Related Options"
- msgstr ""
- #: options/theme-options.php:3083
- msgid ""
- "You can click <a href=\"https://docs.fuukei.org/Sakurairo/Others/"
- "#%E7%99%BB%E5%BD%95%E7%95%8C%E9%9D%A2%E5%92%8C%E4%BB%AA%E8%A1%A8%E7%9B%98%E7%9B%B8%E5%85%B3%E8%AE%BE%E7%BD%AE\">here</"
- "a> to learn how to set the options on this page"
- msgstr ""
- #: options/theme-options.php:3088
- msgid "Login Screen"
- msgstr ""
- #: options/theme-options.php:3094
- msgid "Login Screen Background Image"
- msgstr ""
- #: options/theme-options.php:3095
- msgid ""
- "Set your login screen background image, leave this option blank to show the "
- "default"
- msgstr ""
- #: options/theme-options.php:3103
- msgid "Login Screen Background Blur"
- msgstr ""
- #: options/theme-options.php:3104
- msgid "Login screen background image will be blurred when enabled"
- msgstr ""
- #: options/theme-options.php:3111
- msgid "Login Screen Logo"
- msgstr ""
- #: options/theme-options.php:3112
- msgid "Set your login screen Logo"
- msgstr ""
- #: options/theme-options.php:3120
- msgid "Jump after login"
- msgstr ""
- #: options/theme-options.php:3121
- msgid "Jump to backend for admins and home for users after turning on."
- msgstr ""
- #: options/theme-options.php:3128
- msgid "Login Screen Language Option"
- msgstr ""
- #: options/theme-options.php:3129
- msgid "Login screen language option will be display when enabled"
- msgstr ""
- #: options/theme-options.php:3135
- msgid "Dashboard"
- msgstr ""
- #: options/theme-options.php:3141
- msgid "Dashboard Background Image"
- msgstr ""
- #: options/theme-options.php:3142
- msgid ""
- "Set your dashboard background image, leave this option blank to show white "
- "background"
- msgstr ""
- #: options/theme-options.php:3150
- msgid "Dashboard Options Menu Style"
- msgstr ""
- #: options/theme-options.php:3161
- msgid "Dashboard Primary Menu Color"
- msgstr ""
- #: options/theme-options.php:3169
- msgid "Dashboard Secondary Menu Color"
- msgstr ""
- #: options/theme-options.php:3177
- msgid "Dashboard Emphasis Color"
- msgstr ""
- #: options/theme-options.php:3185
- msgid "Dashboard Button Color"
- msgstr ""
- #: options/theme-options.php:3193
- msgid "Dashboard Text Color"
- msgstr ""
- #: options/theme-options.php:3202
- msgid "ChatGPT Options"
- msgstr ""
- #: options/theme-options.php:3209
- msgid ""
- "You can click <a href=\"https://docs.fuukei.org/Sakurairo/Others/"
- "#ChatGPT%E8%AE%BE%E7%BD%AE\">here</a> to learn how to set the options on this page"
- msgstr ""
- #: options/theme-options.php:3215
- msgid "ChatGPT Base URL"
- msgstr ""
- #: options/theme-options.php:3216
- msgid "Fill in the ChatGPT Base URL, The default is http://sxy.gay/"
- msgstr ""
- #: options/theme-options.php:3223
- msgid "ChatGPT API keys"
- msgstr ""
- #: options/theme-options.php:3224
- msgid ""
- "Fill in Your ChatGPT API keys, You can go to <a href=\"https://platform.openai."
- "com/account/api-keys\">OpenAI Website</a> to get your API Keys"
- msgstr ""
- #: options/theme-options.php:3230
- msgid "ChatGPT Article Summarize"
- msgstr ""
- #: options/theme-options.php:3231
- msgid "After turning on ChatGPT will automatically generate article abstracts"
- msgstr ""
- #: options/theme-options.php:3237
- msgid ""
- "Each update of your post will trigger a request to generate a summary. Due to "
- "current API limitations, if your article exceeds 4097 Token, the system will only "
- "send the unexceeded portion to generate a summary"
- msgstr ""
- #: options/theme-options.php:3244
- msgid "ChatGPT Article Summarize Init Prompt"
- msgstr ""
- #: options/theme-options.php:3246
- msgid ""
- "Fill in the Init Prompt, Please make changes if you know how to configure it "
- "correctly. Init Prompt will be passed to ChatGPT as \"system\" role"
- msgstr ""
- #: options/theme-options.php:3257
- msgid "ChatGPT Article Summarize Ask Prompt"
- msgstr ""
- #: options/theme-options.php:3259
- msgid ""
- "Fill in the Ask Prompt, Use preset value when option is empty, Please make "
- "changes if you know how to configure it correctly"
- msgstr ""
- #: options/theme-options.php:3267
- msgid "Low Use Options"
- msgstr ""
- #: options/theme-options.php:3274
- msgid ""
- "You can click <a href=\"https://docs.fuukei.org/Sakurairo/Others/"
- "#%E4%BD%8E%E4%BD%BF%E7%94%A8%E8%AE%BE%E7%BD%AE\">here</a> to learn how to set the "
- "options on this page"
- msgstr ""
- #: options/theme-options.php:3280
- msgid "Statistics API"
- msgstr ""
- #: options/theme-options.php:3281
- msgid ""
- "You can choose WP-Statistics plugin statistics or theme built-in statistics to "
- "display"
- msgstr ""
- #: options/theme-options.php:3283
- msgid "Theme Built in Statistics"
- msgstr ""
- #: options/theme-options.php:3284
- msgid "WP-Statistics Plugin Statistics"
- msgstr ""
- #: options/theme-options.php:3292
- msgid "Statistics display format"
- msgstr ""
- #: options/theme-options.php:3293
- msgid "You can choose from four different data display formats"
- msgstr ""
- #: options/theme-options.php:3295
- msgid "23333 Visits"
- msgstr ""
- #: options/theme-options.php:3296
- msgid "23,333 Visits"
- msgstr ""
- #: options/theme-options.php:3297
- msgid "23 333 Visits"
- msgstr ""
- #: options/theme-options.php:3298
- msgid "23K Visits"
- msgstr ""
- #: options/theme-options.php:3306
- msgid "Live Search"
- msgstr ""
- #: options/theme-options.php:3307
- 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:3314
- msgid "Live Search Comment Support"
- msgstr ""
- #: options/theme-options.php:3316
- msgid ""
- "Enable to search for comments in live search (not recommended if site has too "
- "many comments)"
- msgstr ""
- #: options/theme-options.php:3323
- msgid "Google Analytics Id"
- msgstr ""
- #: options/theme-options.php:3324
- msgid "If you already have a plugin to handle it, please keep here empty."
- msgstr ""
- #: options/theme-options.php:3330
- msgid "Custom CSS Styles"
- msgstr ""
- #: options/theme-options.php:3331
- msgid "Fill in the CSS code without writing style tag"
- msgstr ""
- #: options/theme-options.php:3338
- msgid "Code inserted in the header"
- msgstr ""
- #: options/theme-options.php:3339
- msgid "Insert HTML code right before </head>."
- msgstr ""
- #: options/theme-options.php:3345
- msgid "Timezone Fix"
- msgstr ""
- #: options/theme-options.php:3346
- 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:3355
- msgid "Gravatar Service Proxy"
- msgstr ""
- #: options/theme-options.php:3356
- msgid ""
- "You can select multiple proxy as the Gravatar Service Proxy. By default, Geekzu "
- "is used as the Gravatar Service Proxy."
- msgstr ""
- #: options/theme-options.php:3358
- msgid "Geekzu"
- msgstr ""
- #: options/theme-options.php:3359
- msgid "Cravatar Service"
- msgstr ""
- #: options/theme-options.php:3360
- msgid "Loli Net"
- msgstr ""
- #: options/theme-options.php:3361
- msgid "Official"
- msgstr ""
- #: options/theme-options.php:3362
- msgid "Official CN"
- msgstr ""
- #: options/theme-options.php:3369
- msgid "Lightbox"
- msgstr ""
- #: options/theme-options.php:3375
- msgid "BaguetteBox Lightbox Effect"
- msgstr ""
- #: options/theme-options.php:3376
- msgid "BaguetteBox will be used as the image lightbox effect when turned on"
- msgstr ""
- #: options/theme-options.php:3383
- msgid "FancyBox Lightbox Effect"
- msgstr ""
- #: options/theme-options.php:3384
- msgid ""
- "FancyBox will be used as an image lightbox effect after turning on, additional JQ "
- "libraries will be loaded"
- msgstr ""
- #: options/theme-options.php:3392
- msgid "LightGallery Lightbox Effect"
- msgstr ""
- #: options/theme-options.php:3393
- msgid "LightGallery will be used as an image lightbox effect after turning on."
- msgstr ""
- #: options/theme-options.php:3399
- 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:3410
- 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:3418
- msgid "LightGallery Lightbox Effect Options"
- msgstr ""
- #: options/theme-options.php:3429
- msgid "Code Highlighting"
- msgstr ""
- #: options/theme-options.php:3434
- 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:3442
- msgid "Code Highlight Method"
- msgstr ""
- #: options/theme-options.php:3446
- msgid "Custom Program"
- msgstr ""
- #: options/theme-options.php:3454
- msgid "Prism.js: Add Line Number Display for All Code Blocks"
- msgstr ""
- #: options/theme-options.php:3458
- msgid ""
- "See the <a href=\"https://prismjs.com/plugins/line-numbers/\">plugin description "
- "documentation</a>"
- msgstr ""
- #: options/theme-options.php:3464
- msgid "Prism.js: Autoload Address"
- msgstr ""
- #: options/theme-options.php:3468
- msgid "Leave blank to use default values"
- msgstr ""
- #: options/theme-options.php:3475
- msgid "Prism.js: Code Highlight Theme"
- msgstr ""
- #: options/theme-options.php:3476 options/theme-options.php:3487
- msgid "Relative to autoload address. Leave blank to use default values"
- msgstr ""
- #: options/theme-options.php:3486
- msgid "Prism.js: Code Highlight Theme (Dark Mode)"
- msgstr ""
- #: options/theme-options.php:3497
- msgid ""
- "The following Options are not recommended to be modified blindly, please use them "
- "under the guidance of others"
- msgstr ""
- #: options/theme-options.php:3503
- msgid "Image CDN"
- msgstr ""
- #: options/theme-options.php:3504
- 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:3511
- msgid "Articles Categories (Do not display)"
- msgstr ""
- #: options/theme-options.php:3512 options/theme-options.php:3519
- msgid "Fill in category ID, seperate in English\" , \" when more than one"
- msgstr ""
- #: options/theme-options.php:3518
- msgid "Image Display Category"
- msgstr ""
- #: options/theme-options.php:3525
- msgid "Specify Login Address"
- msgstr ""
- #: options/theme-options.php:3526
- 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:3532
- msgid "Specify Registration Address"
- msgstr ""
- #: options/theme-options.php:3533
- 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:3539
- msgid "Version Control"
- msgstr ""
- #: options/theme-options.php:3540
- msgid "Used to update front-end cookies and browser cache, can use any string"
- msgstr ""
- #: options/theme-options.php:3546
- msgid "Backup&Recovery"
- msgstr ""
- #: options/theme-options.php:3548
- msgid "Backup or Recovery your theme options"
- msgstr ""
- #: options/theme-options.php:3559
- msgid "About Theme"
- msgstr ""
- #: options/theme-options.php:3565
- msgid "Version Info"
- msgstr ""
- #: options/theme-options.php:3570
- msgid ""
- "<img src=\"https://s.nmxc.ltd/sakurairo_vision/@2.6/series/headlogo.webp\" "
- "alt=\"Theme Information\" />"
- msgstr ""
- #: options/theme-options.php:3576
- #, php-format
- msgid ""
- "Theme Sakurairo Version %s | Internal Version %s | <a href=\"https://github.com/"
- "mirai-mamori/Sakurairo\">Project Address</a>"
- msgstr ""
- #: options/theme-options.php:3581
- msgid "Update Related"
- msgstr ""
- #: options/theme-options.php:3587
- msgid "Theme Update Source"
- msgstr ""
- #: options/theme-options.php:3593
- 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:3600
- msgid "Theme Update Test Channel Disclaimer"
- msgstr ""
- #: options/theme-options.php:3606
- 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:3612
- msgid "Theme Update Channel"
- msgstr ""
- #: options/theme-options.php:3619
- msgid ""
- "You can toggle the update channel here to participate in the testing of the new "
- "version"
- msgstr ""
- #: options/theme-options.php:3621
- msgid "Stable Channel"
- msgstr ""
- #: options/theme-options.php:3622
- msgid "Beta Channel"
- msgstr ""
- #: options/theme-options.php:3623
- msgid "Preview Channel"
- msgstr ""
- #: options/theme-options.php:3630
- msgid "Resource Control"
- msgstr ""
- #: options/theme-options.php:3636
- msgid "Provide Critical Frontend Resource locally"
- msgstr ""
- #: options/theme-options.php:3637
- 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:3644
- msgid "Provide Other Frontend Resource locally"
- msgstr ""
- #: options/theme-options.php:3645
- msgid "Less important frontend resource in the theme's folder."
- msgstr ""
- #: options/theme-options.php:3652
- msgid "Provide 3rd-party library from public CDN"
- msgstr ""
- #: options/theme-options.php:3653
- 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:3660
- msgid "Public CDN Basepath"
- msgstr ""
- #: options/theme-options.php:3671
- msgid "Vision Resource Basepath"
- msgstr ""
- #: options/theme-options.php:3672
- 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:3678
- msgid "Theme Sponsors"
- msgstr ""
- #: options/theme-options.php:3683
- msgid ""
- "<img src=\"https://news.maho.cc/sponsors.php\" alt=\"sponsors\" width=\"65%\" "
- "height=\"65%\" />"
- msgstr ""
- #: options/theme-options.php:3688
- msgid "Theme Contributors"
- msgstr ""
- #: options/theme-options.php:3693
- msgid ""
- "<img src=\"https://opencollective.com/fuukei/contributors.svg\" alt=\"Theme "
- "Contributors\" width=\"100%\" height=\"100%\" />"
- msgstr ""
- #: options/theme-options.php:3698
- msgid "Privacy information"
- msgstr ""
- #: options/theme-options.php:3703
- msgid ""
- "<p>The theme respects your privacy</p>\n"
- " <p>However, when you use a service provider pre-populated by the theme to "
- "provide relevant services in mainland China, the service provider may collect "
- "data about your visitors and compile statistics</p>\n"
- " <p>You can reduce the amount of information sent to third parties by "
- "localising the theme-related resources, which are pre-configured with options for "
- "you to modify</p>"
- msgstr ""
- #: options/theme-options.php:3711
- msgid "Send Theme Version to Fuukei"
- msgstr ""
- #: options/theme-options.php:3712
- msgid ""
- "The theme will only send time and version information to Fuukei officials and the "
- "data will be cleaned regularly and used only to count version updates."
- msgstr ""
- #: options/theme-options.php:3718
- msgid "Reference Information"
- msgstr ""
- #: options/theme-options.php:3723
- 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 Hyacm</p>"
- msgstr ""
- #: options/theme-options.php:3730
- msgid "Dependency Information"
- msgstr ""
- #: options/theme-options.php:3735
- 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>\n"
- " <p>ChatGPT-related Capabilities Relies on HaoZi-Team Open Source <a "
- "href=\"https://github.com/HaoZi-Team/ChatGPT-PHP\">ChatGPT PHP</a> Project</p>"
- msgstr ""
- #: options/theme-options.php:3742
- 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 ""
|