sakurairo_csf.pot 88 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801
  1. #, fuzzy
  2. msgid ""
  3. msgstr ""
  4. "Project-Id-Version: Codestar Framework Modified by Fuukei\n"
  5. "POT-Creation-Date: 2023-04-17 13:59+0800\n"
  6. "PO-Revision-Date: 2021-06-26 16:15+0800\n"
  7. "Last-Translator: \n"
  8. "Language-Team: \n"
  9. "MIME-Version: 1.0\n"
  10. "Content-Type: text/plain; charset=UTF-8\n"
  11. "Content-Transfer-Encoding: 8bit\n"
  12. "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
  13. "X-Generator: Poedit 3.2.2\n"
  14. "X-Poedit-Basepath: ..\n"
  15. "X-Poedit-Flags-xgettext: --add-comments=translators:\n"
  16. "X-Poedit-WPHeader: option-framework.php\n"
  17. "X-Poedit-SourceCharset: UTF-8\n"
  18. "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
  19. "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
  20. "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
  21. "X-Poedit-SearchPath-0: .\n"
  22. "X-Poedit-SearchPathExcluded-0: *.min.js\n"
  23. #: classes/admin-options.class.php:169
  24. msgid "Error while saving the changes."
  25. msgstr ""
  26. #: classes/admin-options.class.php:229
  27. msgid "Settings successfully imported."
  28. msgstr ""
  29. #: classes/admin-options.class.php:241 classes/admin-options.class.php:257
  30. msgid "Default settings restored."
  31. msgstr ""
  32. #: classes/admin-options.class.php:328
  33. msgid "Settings saved."
  34. msgstr ""
  35. #: classes/admin-options.class.php:509
  36. msgid "You have unsaved changes, save your changes!"
  37. msgstr ""
  38. #: classes/admin-options.class.php:511
  39. msgid "show all settings"
  40. msgstr ""
  41. #: classes/admin-options.class.php:513 fields/icon/icon.php:57 fields/map/map.php:23
  42. msgid "Search..."
  43. msgstr ""
  44. #: classes/admin-options.class.php:516 classes/admin-options.class.php:639
  45. msgid "Save"
  46. msgstr ""
  47. #: classes/admin-options.class.php:516 classes/admin-options.class.php:639
  48. msgid "Saving..."
  49. msgstr ""
  50. #: classes/admin-options.class.php:517 classes/admin-options.class.php:640
  51. msgid "Reset Section"
  52. msgstr ""
  53. #: classes/admin-options.class.php:517 classes/admin-options.class.php:640
  54. msgid "Are you sure to reset this section options?"
  55. msgstr ""
  56. #: classes/admin-options.class.php:518 classes/admin-options.class.php:641
  57. msgid "Reset All"
  58. msgstr ""
  59. #: classes/admin-options.class.php:518 classes/admin-options.class.php:641
  60. #: fields/backup/backup.php:31
  61. msgid "Reset"
  62. msgstr ""
  63. #: classes/admin-options.class.php:518 classes/admin-options.class.php:641
  64. msgid "Are you sure you want to reset all settings to default values?"
  65. msgstr ""
  66. #: classes/admin-options.class.php:616 fields/button_set/button_set.php:56
  67. #: fields/checkbox/checkbox.php:82 fields/radio/radio.php:75
  68. #: fields/select/select.php:113 functions/actions.php:41
  69. msgid "No data available."
  70. msgstr ""
  71. #: classes/setup.class.php:588
  72. msgid "Are you sure?"
  73. msgstr ""
  74. #: classes/setup.class.php:589
  75. #, php-format
  76. msgid "Please enter %s or more characters"
  77. msgstr ""
  78. #: classes/setup.class.php:590
  79. msgid "Searching..."
  80. msgstr ""
  81. #: classes/setup.class.php:591
  82. msgid "No results found."
  83. msgstr ""
  84. #: classes/setup.class.php:692
  85. msgid "Oops! Not allowed."
  86. msgstr ""
  87. #: classes/setup.class.php:760 classes/setup.class.php:764
  88. msgid "Field not found!"
  89. msgstr ""
  90. #: fields/background/background.php:36 fields/media/media.php:59
  91. msgid "Not selected"
  92. msgstr ""
  93. #: fields/background/background.php:72 fields/date/date.php:31
  94. #: fields/datetime/datetime.php:36
  95. msgid "From"
  96. msgstr ""
  97. #: fields/background/background.php:90 fields/date/date.php:32
  98. #: fields/datetime/datetime.php:37
  99. msgid "To"
  100. msgstr ""
  101. #: fields/background/background.php:108
  102. msgid "Direction"
  103. msgstr ""
  104. #: fields/background/background.php:114
  105. msgid "Gradient Direction"
  106. msgstr ""
  107. #: fields/background/background.php:115
  108. msgid "⇓ top to bottom"
  109. msgstr ""
  110. #: fields/background/background.php:116
  111. msgid "⇒ left to right"
  112. msgstr ""
  113. #: fields/background/background.php:117
  114. msgid "⇘ corner top to right"
  115. msgstr ""
  116. #: fields/background/background.php:118
  117. msgid "⇙ corner top to left"
  118. msgstr ""
  119. #: fields/background/background.php:161
  120. msgid "Background Position"
  121. msgstr ""
  122. #: fields/background/background.php:162
  123. msgid "Left Top"
  124. msgstr ""
  125. #: fields/background/background.php:163
  126. msgid "Left Center"
  127. msgstr ""
  128. #: fields/background/background.php:164
  129. msgid "Left Bottom"
  130. msgstr ""
  131. #: fields/background/background.php:165
  132. msgid "Center Top"
  133. msgstr ""
  134. #: fields/background/background.php:166
  135. msgid "Center Center"
  136. msgstr ""
  137. #: fields/background/background.php:167
  138. msgid "Center Bottom"
  139. msgstr ""
  140. #: fields/background/background.php:168
  141. msgid "Right Top"
  142. msgstr ""
  143. #: fields/background/background.php:169
  144. msgid "Right Center"
  145. msgstr ""
  146. #: fields/background/background.php:170
  147. msgid "Right Bottom"
  148. msgstr ""
  149. #: fields/background/background.php:184
  150. msgid "Background Repeat"
  151. msgstr ""
  152. #: fields/background/background.php:185
  153. msgid "Repeat"
  154. msgstr ""
  155. #: fields/background/background.php:186
  156. msgid "No Repeat"
  157. msgstr ""
  158. #: fields/background/background.php:187
  159. msgid "Repeat Horizontally"
  160. msgstr ""
  161. #: fields/background/background.php:188
  162. msgid "Repeat Vertically"
  163. msgstr ""
  164. #: fields/background/background.php:202
  165. msgid "Background Attachment"
  166. msgstr ""
  167. #: fields/background/background.php:203
  168. msgid "Scroll"
  169. msgstr ""
  170. #: fields/background/background.php:204
  171. msgid "Fixed"
  172. msgstr ""
  173. #: fields/background/background.php:218
  174. msgid "Background Size"
  175. msgstr ""
  176. #: fields/background/background.php:219 options/theme-options.php:670
  177. msgid "Cover"
  178. msgstr ""
  179. #: fields/background/background.php:220 options/theme-options.php:671
  180. msgid "Contain"
  181. msgstr ""
  182. #: fields/background/background.php:221 options/theme-options.php:672
  183. #: options/theme-options.php:881
  184. msgid "Auto"
  185. msgstr ""
  186. #: fields/background/background.php:235
  187. msgid "Background Origin"
  188. msgstr ""
  189. #: fields/background/background.php:236 fields/background/background.php:254
  190. msgid "Padding Box"
  191. msgstr ""
  192. #: fields/background/background.php:237 fields/background/background.php:253
  193. msgid "Border Box"
  194. msgstr ""
  195. #: fields/background/background.php:238 fields/background/background.php:255
  196. msgid "Content Box"
  197. msgstr ""
  198. #: fields/background/background.php:252
  199. msgid "Background Clip"
  200. msgstr ""
  201. #: fields/background/background.php:269
  202. msgid "Background Blend Mode"
  203. msgstr ""
  204. #: fields/background/background.php:270 fields/link_color/link_color.php:36
  205. #: fields/typography/typography.php:186
  206. msgid "Normal"
  207. msgstr ""
  208. #: fields/background/background.php:271
  209. msgid "Multiply"
  210. msgstr ""
  211. #: fields/background/background.php:272
  212. msgid "Screen"
  213. msgstr ""
  214. #: fields/background/background.php:273
  215. msgid "Overlay"
  216. msgstr ""
  217. #: fields/background/background.php:274
  218. msgid "Darken"
  219. msgstr ""
  220. #: fields/background/background.php:275
  221. msgid "Lighten"
  222. msgstr ""
  223. #: fields/background/background.php:276
  224. msgid "Color Dodge"
  225. msgstr ""
  226. #: fields/background/background.php:277
  227. msgid "Saturation"
  228. msgstr ""
  229. #: fields/background/background.php:278 options/theme-options.php:109
  230. msgid "Color"
  231. msgstr ""
  232. #: fields/background/background.php:279
  233. msgid "Luminosity"
  234. msgstr ""
  235. #: fields/backup/backup.php:26
  236. msgid "Import"
  237. msgstr ""
  238. #: fields/backup/backup.php:29
  239. msgid "Export & Download"
  240. msgstr ""
  241. #: fields/border/border.php:25 fields/spacing/spacing.php:25
  242. msgid "top"
  243. msgstr ""
  244. #: fields/border/border.php:26 fields/spacing/spacing.php:26
  245. msgid "right"
  246. msgstr ""
  247. #: fields/border/border.php:27 fields/spacing/spacing.php:27
  248. msgid "bottom"
  249. msgstr ""
  250. #: fields/border/border.php:28 fields/spacing/spacing.php:28
  251. msgid "left"
  252. msgstr ""
  253. #: fields/border/border.php:29 fields/spacing/spacing.php:29
  254. msgid "all"
  255. msgstr ""
  256. #: fields/border/border.php:51 fields/typography/typography.php:214
  257. msgid "Solid"
  258. msgstr ""
  259. #: fields/border/border.php:52 fields/typography/typography.php:217
  260. msgid "Dashed"
  261. msgstr ""
  262. #: fields/border/border.php:53 fields/typography/typography.php:216
  263. msgid "Dotted"
  264. msgstr ""
  265. #: fields/border/border.php:54 fields/typography/typography.php:215
  266. msgid "Double"
  267. msgstr ""
  268. #: fields/border/border.php:55
  269. msgid "Inset"
  270. msgstr ""
  271. #: fields/border/border.php:56
  272. msgid "Outset"
  273. msgstr ""
  274. #: fields/border/border.php:57
  275. msgid "Groove"
  276. msgstr ""
  277. #: fields/border/border.php:58
  278. msgid "ridge"
  279. msgstr ""
  280. #: fields/border/border.php:59 fields/typography/typography.php:199
  281. #: fields/typography/typography.php:213
  282. msgid "None"
  283. msgstr ""
  284. #: fields/checkbox/checkbox.php:23
  285. msgid "Check/Uncheck All"
  286. msgstr ""
  287. #: fields/dimensions/dimensions.php:22
  288. msgid "width"
  289. msgstr ""
  290. #: fields/dimensions/dimensions.php:23
  291. msgid "height"
  292. msgstr ""
  293. #: fields/gallery/gallery.php:20
  294. msgid "Add Gallery"
  295. msgstr ""
  296. #: fields/gallery/gallery.php:21
  297. msgid "Edit Gallery"
  298. msgstr ""
  299. #: fields/gallery/gallery.php:22
  300. msgid "Clear"
  301. msgstr ""
  302. #: fields/group/group.php:23
  303. msgid "Add New"
  304. msgstr ""
  305. #: fields/group/group.php:41 fields/repeater/repeater.php:27
  306. msgid "Error: Field ID conflict."
  307. msgstr ""
  308. #: fields/group/group.php:52 fields/group/group.php:107
  309. #: fields/repeater/repeater.php:48 fields/repeater/repeater.php:76
  310. msgid "Are you sure to delete this item?"
  311. msgstr ""
  312. #: fields/group/group.php:141 fields/repeater/repeater.php:89
  313. msgid "You cannot add more."
  314. msgstr ""
  315. #: fields/group/group.php:142 fields/repeater/repeater.php:90
  316. msgid "You cannot remove more."
  317. msgstr ""
  318. #: fields/icon/icon.php:20 fields/icon/icon.php:53
  319. msgid "Add Icon"
  320. msgstr ""
  321. #: fields/icon/icon.php:21
  322. msgid "Remove Icon"
  323. msgstr ""
  324. #: fields/link/link.php:20
  325. msgid "Add Link"
  326. msgstr ""
  327. #: fields/link/link.php:21
  328. msgid "Edit Link"
  329. msgstr ""
  330. #: fields/link/link.php:22
  331. msgid "Remove Link"
  332. msgstr ""
  333. #: fields/link_color/link_color.php:37
  334. msgid "Hover"
  335. msgstr ""
  336. #: fields/link_color/link_color.php:38
  337. msgid "Active"
  338. msgstr ""
  339. #: fields/link_color/link_color.php:39
  340. msgid "Visited"
  341. msgstr ""
  342. #: fields/link_color/link_color.php:40
  343. msgid "Focus"
  344. msgstr ""
  345. #: fields/map/map.php:24
  346. msgid "Latitude"
  347. msgstr ""
  348. #: fields/map/map.php:25
  349. msgid "Longitude"
  350. msgstr ""
  351. #: fields/media/media.php:25 fields/upload/upload.php:24
  352. msgid "Upload"
  353. msgstr ""
  354. #: fields/media/media.php:26 fields/upload/upload.php:25
  355. msgid "Remove"
  356. msgstr ""
  357. #: fields/sorter/sorter.php:21
  358. msgid "Enabled"
  359. msgstr ""
  360. #: fields/sorter/sorter.php:22
  361. msgid "Disabled"
  362. msgstr ""
  363. #: fields/switcher/switcher.php:20
  364. msgid "On"
  365. msgstr ""
  366. #: fields/switcher/switcher.php:21 options/theme-options.php:832
  367. #: options/theme-options.php:879 options/theme-options.php:1110
  368. #: options/theme-options.php:1290 options/theme-options.php:2945
  369. #: options/theme-options.php:2958
  370. msgid "Off"
  371. msgstr ""
  372. #: fields/typography/typography.php:96
  373. msgid "Font Family"
  374. msgstr ""
  375. #: fields/typography/typography.php:97
  376. msgid "Select a font"
  377. msgstr ""
  378. #: fields/typography/typography.php:105
  379. msgid "Backup Font Family"
  380. msgstr ""
  381. #: fields/typography/typography.php:119 fields/typography/typography.php:132
  382. #: fields/typography/typography.php:145 fields/typography/typography.php:160
  383. #: fields/typography/typography.php:176 fields/typography/typography.php:189
  384. #: fields/typography/typography.php:203 fields/typography/typography.php:221
  385. #: options/theme-options.php:693
  386. msgid "Default"
  387. msgstr ""
  388. #: fields/typography/typography.php:130
  389. msgid "Font Style"
  390. msgstr ""
  391. #: fields/typography/typography.php:144 fields/typography/typography.php:145
  392. msgid "Load Extra Styles"
  393. msgstr ""
  394. #: fields/typography/typography.php:158
  395. msgid "Subset"
  396. msgstr ""
  397. #: fields/typography/typography.php:168
  398. msgid "Text Align"
  399. msgstr ""
  400. #: fields/typography/typography.php:170
  401. msgid "Inherit"
  402. msgstr ""
  403. #: fields/typography/typography.php:171
  404. msgid "Left"
  405. msgstr ""
  406. #: fields/typography/typography.php:172
  407. msgid "Center"
  408. msgstr ""
  409. #: fields/typography/typography.php:173
  410. msgid "Right"
  411. msgstr ""
  412. #: fields/typography/typography.php:174
  413. msgid "Justify"
  414. msgstr ""
  415. #: fields/typography/typography.php:175
  416. msgid "Initial"
  417. msgstr ""
  418. #: fields/typography/typography.php:184
  419. msgid "Font Variant"
  420. msgstr ""
  421. #: fields/typography/typography.php:187
  422. msgid "Small Caps"
  423. msgstr ""
  424. #: fields/typography/typography.php:188
  425. msgid "All Small Caps"
  426. msgstr ""
  427. #: fields/typography/typography.php:197
  428. msgid "Text Transform"
  429. msgstr ""
  430. #: fields/typography/typography.php:200
  431. msgid "Capitalize"
  432. msgstr ""
  433. #: fields/typography/typography.php:201
  434. msgid "Uppercase"
  435. msgstr ""
  436. #: fields/typography/typography.php:202
  437. msgid "Lowercase"
  438. msgstr ""
  439. #: fields/typography/typography.php:211
  440. msgid "Text Decoration"
  441. msgstr ""
  442. #: fields/typography/typography.php:218
  443. msgid "Wavy"
  444. msgstr ""
  445. #: fields/typography/typography.php:219
  446. msgid "Overline"
  447. msgstr ""
  448. #: fields/typography/typography.php:220
  449. msgid "Line-through"
  450. msgstr ""
  451. #: fields/typography/typography.php:233
  452. msgid "Font Size"
  453. msgstr ""
  454. #: fields/typography/typography.php:245
  455. msgid "Line Height"
  456. msgstr ""
  457. #: fields/typography/typography.php:257
  458. msgid "Letter Spacing"
  459. msgstr ""
  460. #: fields/typography/typography.php:269
  461. msgid "Word Spacing"
  462. msgstr ""
  463. #: fields/typography/typography.php:284
  464. msgid "Font Color"
  465. msgstr ""
  466. #: fields/typography/typography.php:295
  467. msgid "Custom Style"
  468. msgstr ""
  469. #: fields/typography/typography.php:362
  470. msgid "Custom Web Fonts"
  471. msgstr ""
  472. #: fields/typography/typography.php:368
  473. msgid "Safe Web Fonts"
  474. msgstr ""
  475. #: fields/typography/typography.php:388
  476. msgid "Google Web Fonts"
  477. msgstr ""
  478. #: functions/actions.php:16 functions/actions.php:68 functions/actions.php:106
  479. #: functions/actions.php:141 functions/actions.php:170
  480. msgid "Error: Invalid nonce verification."
  481. msgstr ""
  482. #: functions/actions.php:72 functions/actions.php:110
  483. msgid "Error: Invalid key."
  484. msgstr ""
  485. #: functions/actions.php:114
  486. msgid "Error: The response is not a valid JSON response."
  487. msgstr ""
  488. #: functions/actions.php:174
  489. msgid "Error: Invalid term ID."
  490. msgstr ""
  491. #: functions/actions.php:180
  492. msgid "Error: You do not have permission to do that."
  493. msgstr ""
  494. #: functions/validate.php:14 functions/validate.php:86
  495. msgid "Please enter a valid email address."
  496. msgstr ""
  497. #: functions/validate.php:32 functions/validate.php:106
  498. msgid "Please enter a valid number."
  499. msgstr ""
  500. #: functions/validate.php:50 functions/validate.php:126
  501. msgid "This field is required."
  502. msgstr ""
  503. #: functions/validate.php:68 functions/validate.php:146
  504. msgid "Please enter a valid URL."
  505. msgstr ""
  506. #: options/theme-options.php:15
  507. msgid "iro-Options"
  508. msgstr ""
  509. #: options/theme-options.php:20
  510. msgid "Hello!"
  511. msgstr ""
  512. #: options/theme-options.php:26
  513. msgid "News+"
  514. msgstr ""
  515. #: options/theme-options.php:31
  516. msgid ""
  517. "<img src=\"https://news.maho.cc/sakurairo.php\" alt=\"News_Plus\" width=\"100%\" "
  518. "height=\"100%\" />"
  519. msgstr ""
  520. #: options/theme-options.php:39
  521. msgid "Preliminary Options"
  522. msgstr ""
  523. #: options/theme-options.php:46
  524. msgid ""
  525. "You can click <a href=\"https://docs.fuukei.org/Sakurairo/Preliminary/\">here</a> "
  526. "to learn how to set the options on this page"
  527. msgstr ""
  528. #: options/theme-options.php:52
  529. msgid "Site Name"
  530. msgstr ""
  531. #: options/theme-options.php:53
  532. msgid "For example: Sakurairo Blog"
  533. msgstr ""
  534. #: options/theme-options.php:59
  535. msgid "Author Name"
  536. msgstr ""
  537. #: options/theme-options.php:60
  538. msgid "For example: Fuukei"
  539. msgstr ""
  540. #: options/theme-options.php:66
  541. msgid "Personal Avatar"
  542. msgstr ""
  543. #: options/theme-options.php:67 options/theme-options.php:508
  544. #: options/theme-options.php:1797 options/theme-options.php:1950
  545. #: options/theme-options.php:1975
  546. msgid "The best length-width ratio of is 1:1"
  547. msgstr ""
  548. #: options/theme-options.php:74
  549. msgid "Mashiro Special Effects Text"
  550. msgstr ""
  551. #: options/theme-options.php:75
  552. msgid ""
  553. "After turned on, the personal avatar will be replaced by the text as the home "
  554. "page display content"
  555. msgstr ""
  556. #: options/theme-options.php:82
  557. msgid "Mashiro Special Effects Text Options"
  558. msgstr ""
  559. #: options/theme-options.php:88
  560. msgid "Text"
  561. msgstr ""
  562. #: options/theme-options.php:89
  563. msgid ""
  564. "The text content should not be too long, and the recommended length is 16 bytes."
  565. msgstr ""
  566. #: options/theme-options.php:94
  567. msgid "Font"
  568. msgstr ""
  569. #: options/theme-options.php:95 options/theme-options.php:474
  570. #: options/theme-options.php:657 options/theme-options.php:800
  571. #: options/theme-options.php:808 options/theme-options.php:934
  572. #: options/theme-options.php:1503 options/theme-options.php:2140
  573. #: options/theme-options.php:2760
  574. msgid "Fill in the font name. For example: Noto Serif SC"
  575. msgstr ""
  576. #: options/theme-options.php:100
  577. msgid "Size"
  578. msgstr ""
  579. #: options/theme-options.php:101
  580. msgid "Slide to adjust, the recommended value range is 70-90"
  581. msgstr ""
  582. #: options/theme-options.php:110 options/theme-options.php:1468
  583. #: options/theme-options.php:1661 options/theme-options.php:2212
  584. msgid "Customize the colors, light colors are recommended"
  585. msgstr ""
  586. #: options/theme-options.php:123
  587. msgid "Navigation Menu Logo"
  588. msgstr ""
  589. #: options/theme-options.php:124
  590. msgid ""
  591. "The best size is 40px, and the nav menu text logo will not be displayed after "
  592. "filling in"
  593. msgstr ""
  594. #: options/theme-options.php:131
  595. msgid "Site Icon"
  596. msgstr ""
  597. #: options/theme-options.php:132
  598. msgid ""
  599. "Fill in the address, which decides the icon next to the title above the browser"
  600. msgstr ""
  601. #: options/theme-options.php:139
  602. msgid "Custom Site Keywords and Descriptions"
  603. msgstr ""
  604. #: options/theme-options.php:140
  605. msgid "After turning on, you can customize the site keywords and descriptions"
  606. msgstr ""
  607. #: options/theme-options.php:147
  608. msgid "Site Keywords"
  609. msgstr ""
  610. #: options/theme-options.php:149
  611. msgid ""
  612. "The keywords should be separated with half width comma \",\" and it's better to "
  613. "set within 5 keywords"
  614. msgstr ""
  615. #: options/theme-options.php:155
  616. msgid "Site Descriptions"
  617. msgstr ""
  618. #: options/theme-options.php:157
  619. msgid ""
  620. "Use concise words to describe the site, it is recommended to write within 120 "
  621. "words"
  622. msgstr ""
  623. #: options/theme-options.php:165
  624. msgid "Global Options"
  625. msgstr ""
  626. #: options/theme-options.php:171
  627. msgid "Appearance Options"
  628. msgstr ""
  629. #: options/theme-options.php:178
  630. msgid ""
  631. "You can click <a href=\"https://docs.fuukei.org/Sakurairo/Global/"
  632. "#%E5%A4%96%E8%A7%82%E8%AE%BE%E7%BD%AE\">here</a> to learn how to set the options "
  633. "on this page"
  634. msgstr ""
  635. #: options/theme-options.php:183
  636. msgid "Color Schemes"
  637. msgstr ""
  638. #: options/theme-options.php:189
  639. msgid "Theme Color"
  640. msgstr ""
  641. #: options/theme-options.php:190 options/theme-options.php:198
  642. #: options/theme-options.php:211 options/theme-options.php:1081
  643. #: options/theme-options.php:1090 options/theme-options.php:2736
  644. #: options/theme-options.php:2744 options/theme-options.php:3162
  645. #: options/theme-options.php:3170 options/theme-options.php:3178
  646. #: options/theme-options.php:3186 options/theme-options.php:3194
  647. msgid "Customize the colors"
  648. msgstr ""
  649. #: options/theme-options.php:197
  650. msgid "Matching Color"
  651. msgstr ""
  652. #: options/theme-options.php:204
  653. msgid "Dark Mode"
  654. msgstr ""
  655. #: options/theme-options.php:210
  656. msgid "Dark Mode Theme Color"
  657. msgstr ""
  658. #: options/theme-options.php:217
  659. msgid "Automatically Switch to Dark Mode"
  660. msgstr ""
  661. #: options/theme-options.php:218 options/theme-options.php:1402
  662. msgid "Default on"
  663. msgstr ""
  664. #: options/theme-options.php:224
  665. msgid ""
  666. "<p><strong>Client local time:</strong>Dark mode will switch on automatically from "
  667. "22:00 to 7:00</p><p><strong>Follow client settings:</strong>Follow client browser "
  668. "settings</p><p><strong>Always on:</strong>Always on, except being configured by "
  669. "the client</p>"
  670. msgstr ""
  671. #: options/theme-options.php:233
  672. msgid "Automatic Switch Strategy of Dark Mode"
  673. msgstr ""
  674. #: options/theme-options.php:236
  675. msgid "Client local time"
  676. msgstr ""
  677. #: options/theme-options.php:237
  678. msgid "Follow client settings"
  679. msgstr ""
  680. #: options/theme-options.php:238
  681. msgid "Always on"
  682. msgstr ""
  683. #: options/theme-options.php:246
  684. msgid "Dark Mode Image Brightness"
  685. msgstr ""
  686. #: options/theme-options.php:247 options/theme-options.php:258
  687. msgid "Slide to adjust, the recommended value range is 0.6-0.8"
  688. msgstr ""
  689. #: options/theme-options.php:257
  690. msgid "Dark Mode Component Transparency"
  691. msgstr ""
  692. #: options/theme-options.php:267
  693. msgid "Dark mode Background Transparency"
  694. msgstr ""
  695. #: options/theme-options.php:268
  696. msgid ""
  697. "Slide to adjust, the recommended value range is 0.6-0.8. In order to ensure the "
  698. "best appearance, please keep the display of the frontend background image"
  699. msgstr ""
  700. #: options/theme-options.php:277
  701. msgid "Other Appearance Related"
  702. msgstr ""
  703. #: options/theme-options.php:283
  704. msgid "Commemorate Mode"
  705. msgstr ""
  706. #: options/theme-options.php:284
  707. msgid "After turning on, a black and white filter will be added to the global theme"
  708. msgstr ""
  709. #: options/theme-options.php:291
  710. msgid "Occupying SVG while Loading Control Units"
  711. msgstr ""
  712. #: options/theme-options.php:292
  713. msgid "Fill in the address, which is the SVG displayed when loading control units"
  714. msgstr ""
  715. #: options/theme-options.php:301
  716. msgid "Font Options"
  717. msgstr ""
  718. #: options/theme-options.php:308
  719. msgid ""
  720. "You can click <a href=\"https://docs.fuukei.org/Sakurairo/Global/"
  721. "#%E5%AD%97%E4%BD%93%E8%AE%BE%E7%BD%AE\">here</a> to learn how to set the options "
  722. "on this page"
  723. msgstr ""
  724. #: options/theme-options.php:313
  725. msgid "Global"
  726. msgstr ""
  727. #: options/theme-options.php:319
  728. msgid "Non-Emphasis Text Weight"
  729. msgstr ""
  730. #: options/theme-options.php:320
  731. msgid "Slide to adjust, the recommended value range is 300-500"
  732. msgstr ""
  733. #: options/theme-options.php:330
  734. msgid "Text Font Size"
  735. msgstr ""
  736. #: options/theme-options.php:331 options/theme-options.php:1511
  737. msgid "Slide to adjust, the recommended value range is 15-18"
  738. msgstr ""
  739. #: options/theme-options.php:341
  740. msgid "External Fonts"
  741. msgstr ""
  742. #: options/theme-options.php:347
  743. msgid "Reference External Fonts"
  744. msgstr ""
  745. #: options/theme-options.php:348
  746. msgid ""
  747. "After turning on, you can use external fonts as the default font or other "
  748. "component fonts, but it may affect performance"
  749. msgstr ""
  750. #: options/theme-options.php:355
  751. msgid "External Font Options"
  752. msgstr ""
  753. #: options/theme-options.php:361
  754. msgid "Font 1 Name"
  755. msgstr ""
  756. #: options/theme-options.php:366
  757. msgid "Font 1 Link"
  758. msgstr ""
  759. #: options/theme-options.php:371
  760. msgid "Font 2 Name"
  761. msgstr ""
  762. #: options/theme-options.php:376
  763. msgid "Font 2 Link"
  764. msgstr ""
  765. #: options/theme-options.php:390
  766. msgid "Google Fonts Api Link"
  767. msgstr ""
  768. #: options/theme-options.php:397
  769. msgid "Google Fonts Name"
  770. msgstr ""
  771. #: options/theme-options.php:398
  772. msgid ""
  773. "Please make sure that the added fonts can be referenced in Google Fonts library. "
  774. "Fill in the font names. The added fonts must be preceded by \"|\". If multiple "
  775. "fonts are referenced, use \"|\" as the separator. If the font name has spaces, "
  776. "use a plus sign instead. For example: | zcool + xiaowei| Ma + Shan + Zheng"
  777. msgstr ""
  778. #: options/theme-options.php:406
  779. msgid "Navigation Menu Options"
  780. msgstr ""
  781. #: options/theme-options.php:413
  782. msgid ""
  783. "You can click <a href=\"https://docs.fuukei.org/Sakurairo/Global/"
  784. "#%E5%AF%BC%E8%88%AA%E8%8F%9C%E5%8D%95%E8%AE%BE%E7%BD%AE\">here</a> to learn how "
  785. "to set the options on this page"
  786. msgstr ""
  787. #: options/theme-options.php:419
  788. msgid "Nav Menu Style"
  789. msgstr ""
  790. #: options/theme-options.php:430
  791. msgid "Nav Menu Radius"
  792. msgstr ""
  793. #: options/theme-options.php:432 options/theme-options.php:527
  794. #: options/theme-options.php:628 options/theme-options.php:2224
  795. msgid "Slide to adjust, the recommended value is 15"
  796. msgstr ""
  797. #: options/theme-options.php:441
  798. msgid "Nav Menu Content Display Method"
  799. msgstr ""
  800. #: options/theme-options.php:442
  801. msgid "You can choose to unfold or fold the nav menu contents"
  802. msgstr ""
  803. #: options/theme-options.php:444
  804. msgid "Unfold"
  805. msgstr ""
  806. #: options/theme-options.php:445
  807. msgid "Fold"
  808. msgstr ""
  809. #: options/theme-options.php:453
  810. msgid "Nav Menu Animation Effects"
  811. msgstr ""
  812. #: options/theme-options.php:454
  813. msgid ""
  814. "It is on by default. If it is off, the nav menu content will be displayed "
  815. "directly without effects"
  816. msgstr ""
  817. #: options/theme-options.php:461
  818. msgid "Nav Menu Animation Time"
  819. msgstr ""
  820. #: options/theme-options.php:463 options/theme-options.php:1438
  821. msgid "Slide to adjust, the recommended value range is 1-2"
  822. msgstr ""
  823. #: options/theme-options.php:473
  824. msgid "Nav Menu Font"
  825. msgstr ""
  826. #: options/theme-options.php:481
  827. msgid "Nav Menu Search"
  828. msgstr ""
  829. #: options/theme-options.php:482
  830. msgid "It is on by default. Click to enter the search area"
  831. msgstr ""
  832. #: options/theme-options.php:489
  833. msgid "Search Area Background Image"
  834. msgstr ""
  835. #: options/theme-options.php:490
  836. msgid ""
  837. "Set the background image of your search area. Leave this option blank to display "
  838. "a white background"
  839. msgstr ""
  840. #: options/theme-options.php:498
  841. msgid "Nav Menu User Avatar"
  842. msgstr ""
  843. #: options/theme-options.php:499
  844. msgid "It is on by default. Click to enter the login interface"
  845. msgstr ""
  846. #: options/theme-options.php:506
  847. msgid "Nav Menu Unlisted User Avatar"
  848. msgstr ""
  849. #: options/theme-options.php:516
  850. msgid "Secondary Menu Prompt Arrow"
  851. msgstr ""
  852. #: options/theme-options.php:517
  853. msgid ""
  854. "After turning on, the menu prompt arrow will appear in the secondary menu of the "
  855. "navigation menu"
  856. msgstr ""
  857. #: options/theme-options.php:525
  858. msgid "Secondary Menu Radius"
  859. msgstr ""
  860. #: options/theme-options.php:536
  861. msgid "Mashiro Logo Style"
  862. msgstr ""
  863. #: options/theme-options.php:537
  864. msgid ""
  865. "After turning on, the Mashiro Logo will appear and replace the navigation menu "
  866. "logo position"
  867. msgstr ""
  868. #: options/theme-options.php:544
  869. msgid "Nav Menu Text Logo Options"
  870. msgstr ""
  871. #: options/theme-options.php:549
  872. msgid "Text A"
  873. msgstr ""
  874. #: options/theme-options.php:554
  875. msgid "Text B"
  876. msgstr ""
  877. #: options/theme-options.php:559
  878. msgid "Text C"
  879. msgstr ""
  880. #: options/theme-options.php:564
  881. msgid "Secondary Text"
  882. msgstr ""
  883. #: options/theme-options.php:570
  884. msgid "Font Name"
  885. msgstr ""
  886. #: options/theme-options.php:587
  887. msgid "Style Menu and Frontend Background Related Options"
  888. msgstr ""
  889. #: options/theme-options.php:594
  890. msgid ""
  891. "You can click <a href=\"https://docs.fuukei.org/Sakurairo/Global/"
  892. "#%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</"
  893. "a> to learn how to set the options on this page"
  894. msgstr ""
  895. #: options/theme-options.php:599
  896. msgid "Style Menu"
  897. msgstr ""
  898. #: options/theme-options.php:605
  899. msgid "Style Menu Display"
  900. msgstr ""
  901. #: options/theme-options.php:606
  902. msgid ""
  903. "You can choose to display the style menu simply or in full. The full display will "
  904. "show the font toggle function and text hints"
  905. msgstr ""
  906. #: options/theme-options.php:617
  907. msgid "Style Menu Button Radius"
  908. msgstr ""
  909. #: options/theme-options.php:618
  910. msgid "Slide to adjust, the recommended value is 10"
  911. msgstr ""
  912. #: options/theme-options.php:627
  913. msgid "Style Menu Options Interface Radius"
  914. msgstr ""
  915. #: options/theme-options.php:637
  916. msgid "Frontend Background Area Title"
  917. msgstr ""
  918. #: options/theme-options.php:639
  919. msgid ""
  920. "Default is \"Style\", you can change it to anything else, but of course it CANNOT "
  921. "be used as an ad! Not allowed!!!"
  922. msgstr ""
  923. #: options/theme-options.php:646
  924. msgid "Font Area Title"
  925. msgstr ""
  926. #: options/theme-options.php:648
  927. msgid ""
  928. "Default is \"Fonts\", you can change it to anything else, but of course it CANNOT "
  929. "be used as an ad! Not allowed!!!"
  930. msgstr ""
  931. #: options/theme-options.php:655
  932. msgid "Style Menu Font"
  933. msgstr ""
  934. #: options/theme-options.php:663
  935. msgid "Frontend Background"
  936. msgstr ""
  937. #: options/theme-options.php:674
  938. msgid "Frontend Background Scaling Method"
  939. msgstr ""
  940. #: options/theme-options.php:675
  941. msgid ""
  942. "You can choose two ways to scale the frontend background, the default is auto-"
  943. "scaling"
  944. msgstr ""
  945. #: options/theme-options.php:682
  946. msgid "Background Transparency Blur"
  947. msgstr ""
  948. #: options/theme-options.php:683
  949. msgid "After opening Background Transparency Blur"
  950. msgstr ""
  951. #: options/theme-options.php:690
  952. msgid "Frontend Background Options"
  953. msgstr ""
  954. #: options/theme-options.php:699 options/theme-options.php:715
  955. #: options/theme-options.php:731 options/theme-options.php:747
  956. #: options/theme-options.php:763
  957. msgid "Image"
  958. msgstr ""
  959. #: options/theme-options.php:704
  960. msgid "Heart Shaped"
  961. msgstr ""
  962. #: options/theme-options.php:710 options/theme-options.php:726
  963. #: options/theme-options.php:742 options/theme-options.php:758
  964. msgid "Switch"
  965. msgstr ""
  966. #: options/theme-options.php:720
  967. msgid "Star Shaped"
  968. msgstr ""
  969. #: options/theme-options.php:736
  970. msgid "Square Shaped"
  971. msgstr ""
  972. #: options/theme-options.php:752
  973. msgid "Lemon Shaped"
  974. msgstr ""
  975. #: options/theme-options.php:783
  976. msgid "Background Transparency in the Frontend"
  977. msgstr ""
  978. #: options/theme-options.php:784
  979. msgid "Slide to adjust, the recommended sliding value range is 0.6-0.8"
  980. msgstr ""
  981. #: options/theme-options.php:793
  982. msgid "Font Area"
  983. msgstr ""
  984. #: options/theme-options.php:799
  985. msgid "Global Default Font/Style Menu Font A"
  986. msgstr ""
  987. #: options/theme-options.php:806
  988. msgid "Style Menu Font B"
  989. msgstr ""
  990. #: options/theme-options.php:816
  991. msgid "Footer Options"
  992. msgstr ""
  993. #: options/theme-options.php:823
  994. msgid ""
  995. "You can click <a href=\"https://docs.fuukei.org/Sakurairo/Global/"
  996. "#%E9%A1%B5%E5%B0%BE%E8%AE%BE%E7%BD%AE\">here</a> to learn how to set the options "
  997. "on this page"
  998. msgstr ""
  999. #: options/theme-options.php:829
  1000. msgid "Footer Online Music Player"
  1001. msgstr ""
  1002. #: options/theme-options.php:830
  1003. msgid ""
  1004. "A button will appear at the bottom left corner of the footer after turning on, "
  1005. "click it and the footer online player will be displayed"
  1006. msgstr ""
  1007. #: options/theme-options.php:833
  1008. msgid "Netease Cloud Music"
  1009. msgstr ""
  1010. #: options/theme-options.php:834
  1011. msgid "Kugou Music(may not be available)"
  1012. msgstr ""
  1013. #: options/theme-options.php:835
  1014. msgid "Baidu Music(not available on servers overseas)"
  1015. msgstr ""
  1016. #: options/theme-options.php:836
  1017. msgid "QQ Music(may not be available)"
  1018. msgstr ""
  1019. #: options/theme-options.php:844
  1020. msgid "Footer Online Music Player Proxy"
  1021. msgstr ""
  1022. #: options/theme-options.php:846
  1023. msgid ""
  1024. "Ex. http://127.0.0.1:8080. Reference: https://curl.se/libcurl/c/CURLOPT_PROXY.html"
  1025. msgstr ""
  1026. #: options/theme-options.php:853
  1027. msgid "Footer Online Music Player Songlist ID"
  1028. msgstr ""
  1029. #: options/theme-options.php:855
  1030. msgid ""
  1031. "Fill in the song ID, e.g. https://music.163.com/#/playlist?id=5380675133 "
  1032. "SongID:5380675133"
  1033. msgstr ""
  1034. #: options/theme-options.php:862
  1035. msgid "Footer Online Music Player Mode"
  1036. msgstr ""
  1037. #: options/theme-options.php:864
  1038. msgid "Select music player mode"
  1039. msgstr ""
  1040. #: options/theme-options.php:866
  1041. msgid "List"
  1042. msgstr ""
  1043. #: options/theme-options.php:867
  1044. msgid "Random"
  1045. msgstr ""
  1046. #: options/theme-options.php:875
  1047. msgid "Footer Online Music Player Preload"
  1048. msgstr ""
  1049. #: options/theme-options.php:877
  1050. msgid "Whether to preload songs"
  1051. msgstr ""
  1052. #: options/theme-options.php:880
  1053. msgid "Preload Metadata"
  1054. msgstr ""
  1055. #: options/theme-options.php:889
  1056. msgid "Default Volume of Footer Online Music Player"
  1057. msgstr ""
  1058. #: options/theme-options.php:891
  1059. msgid "Slide to adjust, the recommended sliding value range is 0.4-0.6"
  1060. msgstr ""
  1061. #: options/theme-options.php:900
  1062. msgid "Netease Cloud Music Cookies"
  1063. msgstr ""
  1064. #: options/theme-options.php:902
  1065. msgid ""
  1066. "If you want to play VIP music on Netease Cloud Music Platform, please fill in "
  1067. "your account cookies in this option."
  1068. msgstr ""
  1069. #: options/theme-options.php:908
  1070. msgid "Footer Widget Area"
  1071. msgstr ""
  1072. #: options/theme-options.php:909
  1073. msgid ""
  1074. "After turning it on, a button will appear in the bottom of the left corner of the "
  1075. "footer, when you click the button the footer widget area will be displayed, if "
  1076. "you have the footer online player turned on it will be displayed together"
  1077. msgstr ""
  1078. #: options/theme-options.php:916
  1079. msgid "Footer Widget Area Background"
  1080. msgstr ""
  1081. #: options/theme-options.php:918
  1082. msgid "The best picture size is 400px × 460px"
  1083. msgstr ""
  1084. #: options/theme-options.php:925
  1085. msgid "Footer Info"
  1086. msgstr ""
  1087. #: options/theme-options.php:926
  1088. msgid "Footer description text, supports HTML code"
  1089. msgstr ""
  1090. #: options/theme-options.php:933
  1091. msgid "Footer Text Font"
  1092. msgstr ""
  1093. #: options/theme-options.php:941
  1094. msgid "Footer Load Occupancy Query"
  1095. msgstr ""
  1096. #: options/theme-options.php:942
  1097. msgid ""
  1098. "Load occupancy information will appear at the end of the page after turning it "
  1099. "on. Not recommended in production environment."
  1100. msgstr ""
  1101. #: options/theme-options.php:949
  1102. msgid "Footer Upyun League Logo"
  1103. msgstr ""
  1104. #: options/theme-options.php:950
  1105. msgid "Upyun Logo will appear at the end of the page after turning it on"
  1106. msgstr ""
  1107. #: options/theme-options.php:958
  1108. msgid "Footer Addition"
  1109. msgstr ""
  1110. #: options/theme-options.php:959
  1111. msgid ""
  1112. "Add HTML code at the end of the page. Useful for adding customize JavaScript."
  1113. msgstr ""
  1114. #: options/theme-options.php:964
  1115. msgid "Hitokoto"
  1116. msgstr ""
  1117. #: options/theme-options.php:970
  1118. msgid "Footer Hitokoto"
  1119. msgstr ""
  1120. #: options/theme-options.php:971
  1121. msgid "Hitokoto will appear at the end of the page after turning it on"
  1122. msgstr ""
  1123. #: options/theme-options.php:978
  1124. msgid ""
  1125. "<h4>Hitokoto API Setup Instructions</h4> <p>Fill in as the example:<code> "
  1126. "[\"https://api.nmxc.ltd/yiyan/\", \"https://v1.hitokoto.cn/\"]</code>, where the "
  1127. "first API will be used first and the next ones will be the backup. </p> "
  1128. "<p><strong>Official API:</strong> See the <a href=\"https://developer.hitokoto.cn/"
  1129. "sentence/\"> documentation</a> for how to use it, and the parameter \"return "
  1130. "code\" should not be anything except JSON. <a href=\"https://v1.hitokoto.cn/"
  1131. "\">https://v1.hitokoto.cn/</a></p> <p><strong>Maho API:</strong> An reverse proxy "
  1132. "mirror of the official API. <a href=\"https://api.nmxc.ltd/yiyan/\">https://api."
  1133. "nmxc.ltd/yiyan/</a></p>"
  1134. msgstr ""
  1135. #: options/theme-options.php:987
  1136. msgid "Hitokoto API address"
  1137. msgstr ""
  1138. #: options/theme-options.php:989
  1139. msgid "Fill in the address in JavaScript array format"
  1140. msgstr ""
  1141. #: options/theme-options.php:998
  1142. msgid "Cursor Options"
  1143. msgstr ""
  1144. #: options/theme-options.php:1005
  1145. msgid ""
  1146. "You can click <a href=\"https://docs.fuukei.org/Sakurairo/Global/"
  1147. "#%E5%85%89%E6%A0%87%E8%AE%BE%E7%BD%AE\">here</a> to learn how to set the options "
  1148. "on this page"
  1149. msgstr ""
  1150. #: options/theme-options.php:1011
  1151. msgid "Standard Cursor Style"
  1152. msgstr ""
  1153. #: options/theme-options.php:1012
  1154. msgid "Apply to global, fill in \".cur\" mouse file link"
  1155. msgstr ""
  1156. #: options/theme-options.php:1019
  1157. msgid "Selected Cursor Style"
  1158. msgstr ""
  1159. #: options/theme-options.php:1020
  1160. msgid "Apply to multiple styles, fill in \".cur\" file link"
  1161. msgstr ""
  1162. #: options/theme-options.php:1027
  1163. msgid "Selected Control Unit Cursor Style"
  1164. msgstr ""
  1165. #: options/theme-options.php:1028
  1166. msgid "Apply to selected control unit, fill in \".cur\" file link"
  1167. msgstr ""
  1168. #: options/theme-options.php:1035
  1169. msgid "Selected Text Cursor Style"
  1170. msgstr ""
  1171. #: options/theme-options.php:1036
  1172. msgid "Apply to selected text, fill in \".cur\" file link"
  1173. msgstr ""
  1174. #: options/theme-options.php:1043
  1175. msgid "Work Status Cursor Style"
  1176. msgstr ""
  1177. #: options/theme-options.php:1044
  1178. msgid "Apply to load control unit, fill in \".cur\" file link"
  1179. msgstr ""
  1180. #: options/theme-options.php:1053
  1181. msgid "Additional Options"
  1182. msgstr ""
  1183. #: options/theme-options.php:1060
  1184. msgid ""
  1185. "You can click <a href=\"https://docs.fuukei.org/Sakurairo/Global/"
  1186. "#%E9%A2%9D%E5%A4%96%E8%AE%BE%E7%BD%AE\">here</a> to learn how to set the options "
  1187. "on this page"
  1188. msgstr ""
  1189. #: options/theme-options.php:1065
  1190. msgid "Effects&Animations"
  1191. msgstr ""
  1192. #: options/theme-options.php:1071
  1193. msgid "Preload Animation"
  1194. msgstr ""
  1195. #: options/theme-options.php:1072
  1196. msgid ""
  1197. "Preload animation before new pages load; To enable this option, ensure your page "
  1198. "resources can load properly."
  1199. msgstr ""
  1200. #: options/theme-options.php:1079
  1201. msgid "Preload Animation Color A"
  1202. msgstr ""
  1203. #: options/theme-options.php:1088
  1204. msgid "Preload Animation Color B"
  1205. msgstr ""
  1206. #: options/theme-options.php:1096
  1207. msgid "Preload Animation Blur Transition Effect"
  1208. msgstr ""
  1209. #: options/theme-options.php:1098
  1210. msgid "Blur transition duration in milliseconds ms, off when set to 0."
  1211. msgstr ""
  1212. #: options/theme-options.php:1108
  1213. msgid "Sakura Falling Effects"
  1214. msgstr ""
  1215. #: options/theme-options.php:1111
  1216. msgid "Native Quantity"
  1217. msgstr ""
  1218. #: options/theme-options.php:1112
  1219. msgid "Quarter Quantity"
  1220. msgstr ""
  1221. #: options/theme-options.php:1113
  1222. msgid "Half Quantity"
  1223. msgstr ""
  1224. #: options/theme-options.php:1114
  1225. msgid "Less Quantity"
  1226. msgstr ""
  1227. #: options/theme-options.php:1122
  1228. msgid "Particles Effects"
  1229. msgstr ""
  1230. #: options/theme-options.php:1124
  1231. msgid ""
  1232. "Particles effects will appear in the global background. Please open the Cover-and-"
  1233. "Frontend-Background-Integration Options to get the best experience"
  1234. msgstr ""
  1235. #: options/theme-options.php:1132
  1236. msgid "Particles JSON"
  1237. msgstr ""
  1238. #: options/theme-options.php:1134
  1239. msgid ""
  1240. "You can go to the <a href=\"https://vincentgarreau.com/particles.js/\">Project "
  1241. "Address</a> to generate your unique Particles Effects"
  1242. msgstr ""
  1243. #: options/theme-options.php:1251
  1244. msgid "Note Touch Effects"
  1245. msgstr ""
  1246. #: options/theme-options.php:1252
  1247. msgid ""
  1248. "After turning on, there will be a note sound alert when the back to top button "
  1249. "and Mashiro style logo touch"
  1250. msgstr ""
  1251. #: options/theme-options.php:1258
  1252. msgid "Feature"
  1253. msgstr ""
  1254. #: options/theme-options.php:1264
  1255. msgid "PJAX Partial Refresh"
  1256. msgstr ""
  1257. #: options/theme-options.php:1265
  1258. msgid "Enabled by default, clicking to a new page will not require reloading"
  1259. msgstr ""
  1260. #: options/theme-options.php:1272
  1261. msgid "NProgress Loading Progress Bar"
  1262. msgstr ""
  1263. #: options/theme-options.php:1273
  1264. msgid "Enabled by default, when loading page there will be a progress bar alert"
  1265. msgstr ""
  1266. #: options/theme-options.php:1280
  1267. msgid "Global Smooth Scroll"
  1268. msgstr ""
  1269. #: options/theme-options.php:1281
  1270. msgid "Enabled by default, page scrolling will be smoother"
  1271. msgstr ""
  1272. #: options/theme-options.php:1288
  1273. msgid "Captcha Selection"
  1274. msgstr ""
  1275. #: options/theme-options.php:1291
  1276. msgid "Theme Built in Captcha"
  1277. msgstr ""
  1278. #: options/theme-options.php:1292
  1279. msgid "Vaptcha"
  1280. msgstr ""
  1281. #: options/theme-options.php:1300
  1282. msgid "Vaptcha VID"
  1283. msgstr ""
  1284. #: options/theme-options.php:1302
  1285. msgid "Fill in your Vaptcha VID"
  1286. msgstr ""
  1287. #: options/theme-options.php:1308
  1288. msgid "Vaptcha KEY"
  1289. msgstr ""
  1290. #: options/theme-options.php:1310
  1291. msgid "Fill in your Vaptcha KEY"
  1292. msgstr ""
  1293. #: options/theme-options.php:1316
  1294. msgid "Vaptcha Scene"
  1295. msgstr ""
  1296. #: options/theme-options.php:1332
  1297. msgid "Pagination Mode"
  1298. msgstr ""
  1299. #: options/theme-options.php:1334
  1300. msgid "Ajax Load"
  1301. msgstr ""
  1302. #: options/theme-options.php:1335
  1303. msgid "Page Up/Down"
  1304. msgstr ""
  1305. #: options/theme-options.php:1343
  1306. msgid "Next Page Auto Load"
  1307. msgstr ""
  1308. #: options/theme-options.php:1346
  1309. msgid "do not autoload"
  1310. msgstr ""
  1311. #: options/theme-options.php:1347
  1312. msgid "0 Sec"
  1313. msgstr ""
  1314. #: options/theme-options.php:1348
  1315. msgid "1 Sec"
  1316. msgstr ""
  1317. #: options/theme-options.php:1349
  1318. msgid "2 Sec"
  1319. msgstr ""
  1320. #: options/theme-options.php:1350
  1321. msgid "3 Sec"
  1322. msgstr ""
  1323. #: options/theme-options.php:1351
  1324. msgid "4 Sec"
  1325. msgstr ""
  1326. #: options/theme-options.php:1352
  1327. msgid "5 Sec"
  1328. msgstr ""
  1329. #: options/theme-options.php:1353
  1330. msgid "6 Sec"
  1331. msgstr ""
  1332. #: options/theme-options.php:1354
  1333. msgid "7 Sec"
  1334. msgstr ""
  1335. #: options/theme-options.php:1355
  1336. msgid "8 Sec"
  1337. msgstr ""
  1338. #: options/theme-options.php:1356
  1339. msgid "9 Sec"
  1340. msgstr ""
  1341. #: options/theme-options.php:1357
  1342. msgid "10 Sec"
  1343. msgstr ""
  1344. #: options/theme-options.php:1365
  1345. msgid "Placeholder SVG when loading the next page"
  1346. msgstr ""
  1347. #: options/theme-options.php:1366
  1348. msgid ""
  1349. "Fill in the address, this is the SVG that will be displayed as a placeholder when "
  1350. "the next page is loading"
  1351. msgstr ""
  1352. #: options/theme-options.php:1374
  1353. msgid "HomePage Options"
  1354. msgstr ""
  1355. #: options/theme-options.php:1380
  1356. msgid "Cover Options"
  1357. msgstr ""
  1358. #: options/theme-options.php:1387
  1359. msgid ""
  1360. "You can click <a href=\"https://docs.fuukei.org/Sakurairo/Homepage/"
  1361. "#%E5%B0%81%E9%9D%A2%E8%AE%BE%E7%BD%AE\">here</a> to learn how to set the options "
  1362. "on this page"
  1363. msgstr ""
  1364. #: options/theme-options.php:1393
  1365. msgid "Cover Switch"
  1366. msgstr ""
  1367. #: options/theme-options.php:1394
  1368. msgid "On by default, if off, all options below will be disabled"
  1369. msgstr ""
  1370. #: options/theme-options.php:1401
  1371. msgid "Cover Full Screen"
  1372. msgstr ""
  1373. #: options/theme-options.php:1410
  1374. msgid "Cover Arc Occlusion (Below)"
  1375. msgstr ""
  1376. #: options/theme-options.php:1411
  1377. msgid "An arc occlusion will appear below the cover when turned on"
  1378. msgstr ""
  1379. #: options/theme-options.php:1418
  1380. msgid "Cover Radius"
  1381. msgstr ""
  1382. #: options/theme-options.php:1419
  1383. msgid "Slide to adjust, the recommended value range is 15-20"
  1384. msgstr ""
  1385. #: options/theme-options.php:1428
  1386. msgid "Cover Animation"
  1387. msgstr ""
  1388. #: options/theme-options.php:1429
  1389. msgid "On by default, if off, the cover will be displayed directly"
  1390. msgstr ""
  1391. #: options/theme-options.php:1436
  1392. msgid "Cover Animation Time"
  1393. msgstr ""
  1394. #: options/theme-options.php:1448
  1395. msgid "Cover Info Bar"
  1396. msgstr ""
  1397. #: options/theme-options.php:1449
  1398. msgid ""
  1399. "Enabled by default, show avatar, Mashiro effects text, signature bar, shuoshuo "
  1400. "bar, social area"
  1401. msgstr ""
  1402. #: options/theme-options.php:1456
  1403. msgid "Cover Info Bar Style"
  1404. msgstr ""
  1405. #: options/theme-options.php:1467
  1406. msgid "Cover Info Bar Background Color"
  1407. msgstr ""
  1408. #: options/theme-options.php:1475
  1409. msgid "Cover Info Bar Avatar Radius"
  1410. msgstr ""
  1411. #: options/theme-options.php:1476
  1412. msgid "Slide to adjust, the recommended value is 100"
  1413. msgstr ""
  1414. #: options/theme-options.php:1484
  1415. msgid "Cover Info Bar Rounded"
  1416. msgstr ""
  1417. #: options/theme-options.php:1485
  1418. msgid "Slide to adjust, the recommended value range 10-20"
  1419. msgstr ""
  1420. #: options/theme-options.php:1494
  1421. msgid "Cover Signature Field Text"
  1422. msgstr ""
  1423. #: options/theme-options.php:1495 options/theme-options.php:2676
  1424. msgid "A self-descriptive quote"
  1425. msgstr ""
  1426. #: options/theme-options.php:1502
  1427. msgid "Cover Signature Field Text Font"
  1428. msgstr ""
  1429. #: options/theme-options.php:1510
  1430. msgid "Cover Signature Field Text Font Size"
  1431. msgstr ""
  1432. #: options/theme-options.php:1521
  1433. msgid "Cover Signature Bar Typing Effects"
  1434. msgstr ""
  1435. #: options/theme-options.php:1522
  1436. msgid ""
  1437. "When turned on, the signature bar text will have an additional paragraph of text "
  1438. "and will be rendered with typing effects"
  1439. msgstr ""
  1440. #: options/theme-options.php:1529
  1441. msgid "Cover Signature Field Typing Effects Double Quotes"
  1442. msgstr ""
  1443. #: options/theme-options.php:1531
  1444. msgid "Typing effects will be appended with double quotes when turned on"
  1445. msgstr ""
  1446. #: options/theme-options.php:1538
  1447. msgid "Cover Signature Field Typing Effects Placeholder"
  1448. msgstr ""
  1449. #: options/theme-options.php:1547
  1450. msgid "Typed.js initial option"
  1451. msgstr ""
  1452. #: options/theme-options.php:1555
  1453. msgid "Cover Shuoshuo Bar"
  1454. msgstr ""
  1455. #: options/theme-options.php:1556
  1456. msgid ""
  1457. "When turned on, the Latest Shuoshuo text will be Cyclic displayed with info bar "
  1458. msgstr ""
  1459. #: options/theme-options.php:1563
  1460. msgid "Cover Random Image Options"
  1461. msgstr ""
  1462. #: options/theme-options.php:1565
  1463. msgid "External API"
  1464. msgstr ""
  1465. #: options/theme-options.php:1566
  1466. msgid "Webp optimized"
  1467. msgstr ""
  1468. #: options/theme-options.php:1567
  1469. msgid "Local"
  1470. msgstr ""
  1471. #: options/theme-options.php:1575
  1472. msgid "Cover Random Image Multi-terminal Separation"
  1473. msgstr ""
  1474. #: options/theme-options.php:1576
  1475. msgid ""
  1476. "Enabled by default, desktop and mobile devices will use separate random image "
  1477. "addresses"
  1478. msgstr ""
  1479. #: options/theme-options.php:1583
  1480. msgid "Webp Optimization/External API Desktop Side Random Graphics Address"
  1481. msgstr ""
  1482. #: options/theme-options.php:1584 options/theme-options.php:1595
  1483. msgid "Fill in an URL"
  1484. msgstr ""
  1485. #: options/theme-options.php:1593
  1486. msgid "External API Mobile Devices Random Image Address"
  1487. msgstr ""
  1488. #: options/theme-options.php:1604
  1489. msgid "Cover Random Background Image Cache"
  1490. msgstr ""
  1491. #: options/theme-options.php:1605
  1492. msgid ""
  1493. "Enabled by default, this feature will cache a cover image locally, which can "
  1494. "improve the loading speed of the first cover after entering the homepage. Note: "
  1495. "This feature needs the cover APIs that accept cross-domain requests."
  1496. msgstr ""
  1497. #: options/theme-options.php:1612
  1498. msgid "Cover and Frontend Background Integration"
  1499. msgstr ""
  1500. #: options/theme-options.php:1613
  1501. msgid ""
  1502. "When enabled, the background of the cover will be set to transparent, while the "
  1503. "frontend background will use the cover's random image API"
  1504. msgstr ""
  1505. #: options/theme-options.php:1620
  1506. msgid "Cover Random Images Filter"
  1507. msgstr ""
  1508. #: options/theme-options.php:1622
  1509. msgid "No filter"
  1510. msgstr ""
  1511. #: options/theme-options.php:1623
  1512. msgid "Light filter"
  1513. msgstr ""
  1514. #: options/theme-options.php:1624
  1515. msgid "Dimmed filter"
  1516. msgstr ""
  1517. #: options/theme-options.php:1625
  1518. msgid "Grid filter"
  1519. msgstr ""
  1520. #: options/theme-options.php:1626
  1521. msgid "Dot filter"
  1522. msgstr ""
  1523. #: options/theme-options.php:1634
  1524. msgid "Cover Wave Effects"
  1525. msgstr ""
  1526. #: options/theme-options.php:1635
  1527. msgid ""
  1528. "Wave effect will appear at the bottom of the cover of the home page after turning "
  1529. "on, and it will be forced off in the dark mode"
  1530. msgstr ""
  1531. #: options/theme-options.php:1642
  1532. msgid "Cover Dropdown Arrow"
  1533. msgstr ""
  1534. #: options/theme-options.php:1643
  1535. msgid "Enabled by default, show a dropdown arrow at bottom of home cover"
  1536. msgstr ""
  1537. #: options/theme-options.php:1650
  1538. msgid "Cover Dropdown Arrow Display on Mobile Devices"
  1539. msgstr ""
  1540. #: options/theme-options.php:1652
  1541. msgid ""
  1542. "Drop down arrow will appear at the bottom of the mobile devices' home cover after "
  1543. "turning it on"
  1544. msgstr ""
  1545. #: options/theme-options.php:1659
  1546. msgid "Cover Dropdown Arrow Color"
  1547. msgstr ""
  1548. #: options/theme-options.php:1668
  1549. msgid "Cover Dropdown Arrow Color (Dark Mode)"
  1550. msgstr ""
  1551. #: options/theme-options.php:1670
  1552. msgid "Customize the colors, dark colors are recommended"
  1553. msgstr ""
  1554. #: options/theme-options.php:1677
  1555. msgid "Cover Video"
  1556. msgstr ""
  1557. #: options/theme-options.php:1678
  1558. msgid "Use a video instead of the images as the cover"
  1559. msgstr ""
  1560. #: options/theme-options.php:1685
  1561. msgid "Cover Video Loop"
  1562. msgstr ""
  1563. #: options/theme-options.php:1687
  1564. msgid "Video will loop automatically when enabled."
  1565. msgstr ""
  1566. #: options/theme-options.php:1694
  1567. msgid "Cover Video Auto Resume"
  1568. msgstr ""
  1569. #: options/theme-options.php:1696
  1570. msgid ""
  1571. "Cover Video will resume automatically when coming back to homepage while Pjax "
  1572. "enabled."
  1573. msgstr ""
  1574. #: options/theme-options.php:1703
  1575. msgid "Cover Video URL Base Path"
  1576. msgstr ""
  1577. #: options/theme-options.php:1706
  1578. msgid ""
  1579. "Fill in the base path your video located at. For example: https://localhost. Your "
  1580. "site's URL is used as default. Please pay attention to the protocol name of the "
  1581. "URL."
  1582. msgstr ""
  1583. #: options/theme-options.php:1712
  1584. msgid "Cover Video File Name"
  1585. msgstr ""
  1586. #: options/theme-options.php:1714
  1587. msgid ""
  1588. "For example: abc.mp4. Multiple videos should be separated by English commas like "
  1589. "\"abc.mp4,efg.mp4,\" Random play is on by default."
  1590. msgstr ""
  1591. #: options/theme-options.php:1722
  1592. msgid "Cover Social Area Options"
  1593. msgstr ""
  1594. #: options/theme-options.php:1729
  1595. msgid ""
  1596. "You can click <a href=\"https://docs.fuukei.org/Sakurairo/Homepage/"
  1597. "#%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</"
  1598. "a> to learn how to set the options on this page"
  1599. msgstr ""
  1600. #: options/theme-options.php:1734
  1601. msgid "Related Options"
  1602. msgstr ""
  1603. #: options/theme-options.php:1740
  1604. msgid "Cover Social Area"
  1605. msgstr ""
  1606. #: options/theme-options.php:1741
  1607. msgid ""
  1608. "Enabled by default, show cover random image toggle button and social network icons"
  1609. msgstr ""
  1610. #: options/theme-options.php:1748
  1611. msgid "Social Icon"
  1612. msgstr ""
  1613. #: options/theme-options.php:1749
  1614. msgid ""
  1615. "Select your favorite icon pack. Icon pack references are detailed in the \"About "
  1616. "Theme\" section"
  1617. msgstr ""
  1618. #: options/theme-options.php:1770
  1619. msgid "Cover Social Area Rounded Corners"
  1620. msgstr ""
  1621. #: options/theme-options.php:1772
  1622. msgid "Slide to adjust, the recommended value range is 10-20"
  1623. msgstr ""
  1624. #: options/theme-options.php:1781
  1625. msgid "Switch Button of Random Images"
  1626. msgstr ""
  1627. #: options/theme-options.php:1783
  1628. msgid "Enabled by default, show cover random image toggle button"
  1629. msgstr ""
  1630. #: options/theme-options.php:1789
  1631. msgid "Social Network"
  1632. msgstr ""
  1633. #: options/theme-options.php:1795
  1634. msgid "Wechat"
  1635. msgstr ""
  1636. #: options/theme-options.php:1804
  1637. msgid "QQ"
  1638. msgstr ""
  1639. #: options/theme-options.php:1806
  1640. msgid ""
  1641. "Please note the format of filling out the form, e.g. tencent://message/?uin=123456"
  1642. msgstr ""
  1643. #: options/theme-options.php:1812
  1644. msgid "Bilibili"
  1645. msgstr ""
  1646. #: options/theme-options.php:1814 options/theme-options.php:1822
  1647. #: options/theme-options.php:1830 options/theme-options.php:1838
  1648. #: options/theme-options.php:1846 options/theme-options.php:1854
  1649. #: options/theme-options.php:1862 options/theme-options.php:1870
  1650. #: options/theme-options.php:1878 options/theme-options.php:1886
  1651. #: options/theme-options.php:1894 options/theme-options.php:1902
  1652. #: options/theme-options.php:1910 options/theme-options.php:1918
  1653. #: options/theme-options.php:1926 options/theme-options.php:1934
  1654. #: options/theme-options.php:1959 options/theme-options.php:2256
  1655. #: options/theme-options.php:2282 options/theme-options.php:2308
  1656. #: options/theme-options.php:2416
  1657. msgid "add URL"
  1658. msgstr ""
  1659. #: options/theme-options.php:1820
  1660. msgid "NetEase Music"
  1661. msgstr ""
  1662. #: options/theme-options.php:1828
  1663. msgid "Weibo"
  1664. msgstr ""
  1665. #: options/theme-options.php:1836
  1666. msgid "Github"
  1667. msgstr ""
  1668. #: options/theme-options.php:1844
  1669. msgid "Telegram"
  1670. msgstr ""
  1671. #: options/theme-options.php:1852
  1672. msgid "Steam"
  1673. msgstr ""
  1674. #: options/theme-options.php:1860
  1675. msgid "ZhiHu"
  1676. msgstr ""
  1677. #: options/theme-options.php:1868
  1678. msgid "QZone"
  1679. msgstr ""
  1680. #: options/theme-options.php:1876
  1681. msgid "Lofter"
  1682. msgstr ""
  1683. #: options/theme-options.php:1884
  1684. msgid "Youku"
  1685. msgstr ""
  1686. #: options/theme-options.php:1892
  1687. msgid "Linkedin"
  1688. msgstr ""
  1689. #: options/theme-options.php:1900
  1690. msgid "Twitter"
  1691. msgstr ""
  1692. #: options/theme-options.php:1908
  1693. msgid "Facebook"
  1694. msgstr ""
  1695. #: options/theme-options.php:1916
  1696. msgid "CSDN"
  1697. msgstr ""
  1698. #: options/theme-options.php:1924
  1699. msgid "JianShu"
  1700. msgstr ""
  1701. #: options/theme-options.php:1932
  1702. msgid "Customized Social Network Ⅰ"
  1703. msgstr ""
  1704. #: options/theme-options.php:1940
  1705. msgid "Customized Social Network Ⅰ Title"
  1706. msgstr ""
  1707. #: options/theme-options.php:1948
  1708. msgid "Customized Social Network Ⅰ icon"
  1709. msgstr ""
  1710. #: options/theme-options.php:1957
  1711. msgid "Customized Social Network Ⅱ"
  1712. msgstr ""
  1713. #: options/theme-options.php:1965
  1714. msgid "Customized Social Network Ⅱ Title"
  1715. msgstr ""
  1716. #: options/theme-options.php:1973
  1717. msgid "Customized Social Network Ⅱ icon"
  1718. msgstr ""
  1719. #: options/theme-options.php:1982
  1720. msgid "Email Username"
  1721. msgstr ""
  1722. #: options/theme-options.php:1984
  1723. msgid ""
  1724. "name@domain.com fo name, the full address can be known only when there is a js "
  1725. "runtime in the frontend, you can fill in with confidence"
  1726. msgstr ""
  1727. #: options/theme-options.php:1990
  1728. msgid "Email Domain"
  1729. msgstr ""
  1730. #: options/theme-options.php:1992
  1731. msgid "name@domain.com fo domain.com"
  1732. msgstr ""
  1733. #: options/theme-options.php:2000
  1734. msgid "Bulletin Board and Area Title Options"
  1735. msgstr ""
  1736. #: options/theme-options.php:2007
  1737. msgid ""
  1738. "You can click <a href=\"https://docs.fuukei.org/Sakurairo/Homepage/"
  1739. "#%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</"
  1740. "a> to learn how to set the options on this page"
  1741. msgstr ""
  1742. #: options/theme-options.php:2012 options/theme-options.php:2018
  1743. msgid "Bulletin Board"
  1744. msgstr ""
  1745. #: options/theme-options.php:2019
  1746. msgid "When enabled the bulletin board will be displayed below the front cover"
  1747. msgstr ""
  1748. #: options/theme-options.php:2026
  1749. msgid "Bulletin Board Style"
  1750. msgstr ""
  1751. #: options/theme-options.php:2029
  1752. msgid "Picture Background"
  1753. msgstr ""
  1754. #: options/theme-options.php:2030
  1755. msgid "Color Background"
  1756. msgstr ""
  1757. #: options/theme-options.php:2038
  1758. msgid "Bulletin Board \"Notice\" Icon"
  1759. msgstr ""
  1760. #: options/theme-options.php:2040
  1761. msgid ""
  1762. "The \"Notice\" icon will be displayed on the left side of the announcement bar"
  1763. msgstr ""
  1764. #: options/theme-options.php:2047
  1765. msgid "Bulletin Board Background"
  1766. msgstr ""
  1767. #: options/theme-options.php:2052
  1768. msgid "Best width 820px, best height 67px"
  1769. msgstr ""
  1770. #: options/theme-options.php:2060
  1771. msgid "Bulletin Board Border Color"
  1772. msgstr ""
  1773. #: options/theme-options.php:2065
  1774. msgid ""
  1775. "Customize the colors, it is recommended to use a light color that corresponds "
  1776. "with the theme color"
  1777. msgstr ""
  1778. #: options/theme-options.php:2072
  1779. msgid "Bulletin Board Text"
  1780. msgstr ""
  1781. #: options/theme-options.php:2074
  1782. msgid "Fill in the announcement text, the text beyond 142 bytes will be hidden"
  1783. msgstr ""
  1784. #: options/theme-options.php:2080
  1785. msgid "Bulletin Board Alignment"
  1786. msgstr ""
  1787. #: options/theme-options.php:2093
  1788. msgid "Bulletin Board Text Color"
  1789. msgstr ""
  1790. #: options/theme-options.php:2095 options/theme-options.php:2183
  1791. #: options/theme-options.php:2369 options/theme-options.php:2829
  1792. #: options/theme-options.php:2837 options/theme-options.php:2880
  1793. #: options/theme-options.php:2888
  1794. msgid ""
  1795. "Customize the colors, suggest using a corresponding color with the background "
  1796. "color"
  1797. msgstr ""
  1798. #: options/theme-options.php:2101
  1799. msgid "Area Title"
  1800. msgstr ""
  1801. #: options/theme-options.php:2107
  1802. msgid "Display Area Icon"
  1803. msgstr ""
  1804. #: options/theme-options.php:2108
  1805. msgid ""
  1806. "Default is \"fa-solid fa-laptop\", You can check the <a href=\"https://"
  1807. "fontawesome.com/search?o=r&m=free\">FontAwesome Website</a> to see the icons that "
  1808. "can be filled in"
  1809. msgstr ""
  1810. #: options/theme-options.php:2115
  1811. msgid "Display Area Title"
  1812. msgstr ""
  1813. #: options/theme-options.php:2116
  1814. msgid ""
  1815. "Default is \"Display\", you can change it to anything else, but of course it "
  1816. "CANNOT be used as an ad! Not allowed!!!"
  1817. msgstr ""
  1818. #: options/theme-options.php:2123
  1819. msgid "Post Area Icon"
  1820. msgstr ""
  1821. #: options/theme-options.php:2124
  1822. msgid ""
  1823. "Default is \"fa-regular fa-bookmark\", You can check the <a href=\"https://"
  1824. "fontawesome.com/search?o=r&m=free\">FontAwesome Website</a> to see the icons that "
  1825. "can be filled in"
  1826. msgstr ""
  1827. #: options/theme-options.php:2131
  1828. msgid "Post Area Title"
  1829. msgstr ""
  1830. #: options/theme-options.php:2132
  1831. msgid ""
  1832. "Default is \"Article\", you can change it to anything else, but of course it "
  1833. "CANNOT be used as an ad! Not allowed!!!"
  1834. msgstr ""
  1835. #: options/theme-options.php:2139
  1836. msgid "Area Title Font"
  1837. msgstr ""
  1838. #: options/theme-options.php:2147
  1839. msgid "Area Title Alignment"
  1840. msgstr ""
  1841. #: options/theme-options.php:2161 options/theme-options.php:2232
  1842. msgid "Display Area Options"
  1843. msgstr ""
  1844. #: options/theme-options.php:2168
  1845. msgid ""
  1846. "You can click <a href=\"https://docs.fuukei.org/Sakurairo/Homepage/"
  1847. "#%E5%B1%95%E7%A4%BA%E5%8C%BA%E5%9F%9F%E8%AE%BE%E7%BD%AE\">here</a> to learn how "
  1848. "to set the options on this page"
  1849. msgstr ""
  1850. #: options/theme-options.php:2174
  1851. msgid "Display Area"
  1852. msgstr ""
  1853. #: options/theme-options.php:2175
  1854. msgid "Enabled by default, display area is above article area"
  1855. msgstr ""
  1856. #: options/theme-options.php:2182
  1857. msgid "Display Area Matching Color"
  1858. msgstr ""
  1859. #: options/theme-options.php:2190
  1860. msgid "Display Area Style"
  1861. msgstr ""
  1862. #: options/theme-options.php:2201
  1863. msgid "Display Area Compatibility Mode"
  1864. msgstr ""
  1865. #: options/theme-options.php:2203
  1866. msgid ""
  1867. "Enabled by default, this option avoids the problem of misaligned display areas"
  1868. msgstr ""
  1869. #: options/theme-options.php:2210
  1870. msgid "Display Area Background Color"
  1871. msgstr ""
  1872. #: options/theme-options.php:2219
  1873. msgid "Display Area Rounded Corners"
  1874. msgstr ""
  1875. #: options/theme-options.php:2235
  1876. msgid "First Display Area"
  1877. msgstr ""
  1878. #: options/theme-options.php:2240 options/theme-options.php:2266
  1879. #: options/theme-options.php:2292
  1880. msgid "image"
  1881. msgstr ""
  1882. #: options/theme-options.php:2241 options/theme-options.php:2267
  1883. #: options/theme-options.php:2293
  1884. msgid "best width 260px, best height 160px"
  1885. msgstr ""
  1886. #: options/theme-options.php:2246 options/theme-options.php:2272
  1887. #: options/theme-options.php:2298
  1888. msgid "title"
  1889. msgstr ""
  1890. #: options/theme-options.php:2251 options/theme-options.php:2277
  1891. #: options/theme-options.php:2303
  1892. msgid "description"
  1893. msgstr ""
  1894. #: options/theme-options.php:2261
  1895. msgid "Second Display Area"
  1896. msgstr ""
  1897. #: options/theme-options.php:2287
  1898. msgid "Third Display Area"
  1899. msgstr ""
  1900. #: options/theme-options.php:2334
  1901. msgid "Article Area Options"
  1902. msgstr ""
  1903. #: options/theme-options.php:2341
  1904. msgid ""
  1905. "You can click <a href=\"https://docs.fuukei.org/Sakurairo/Homepage/"
  1906. "#%E6%96%87%E7%AB%A0%E5%8C%BA%E5%9F%9F%E8%AE%BE%E7%BD%AE\">here</a> to learn how "
  1907. "to set the options on this page"
  1908. msgstr ""
  1909. #: options/theme-options.php:2347
  1910. msgid "Article Area Display Style"
  1911. msgstr ""
  1912. #: options/theme-options.php:2358
  1913. msgid "Article Area Matching Color"
  1914. msgstr ""
  1915. #: options/theme-options.php:2360
  1916. msgid ""
  1917. "Customize the colors, This option only supports filling in hexadecimal colors, "
  1918. "suggest the same as the matching color"
  1919. msgstr ""
  1920. #: options/theme-options.php:2367
  1921. msgid "Article Area Border Shadow Color"
  1922. msgstr ""
  1923. #: options/theme-options.php:2376
  1924. msgid "Article Area Featured Image Display Shapes"
  1925. msgstr ""
  1926. #: options/theme-options.php:2378
  1927. msgid "You can choose a circular or a rectangular display of the featured image"
  1928. msgstr ""
  1929. #: options/theme-options.php:2389
  1930. msgid "Article Area Featured Image Alignment"
  1931. msgstr ""
  1932. #: options/theme-options.php:2391
  1933. msgid "You can choose different directions to display the featured images"
  1934. msgstr ""
  1935. #: options/theme-options.php:2403
  1936. msgid "Article Area Featured Image Options"
  1937. msgstr ""
  1938. #: options/theme-options.php:2405
  1939. msgid "Cover Random Image"
  1940. msgstr ""
  1941. #: options/theme-options.php:2406
  1942. msgid "External API Random Image"
  1943. msgstr ""
  1944. #: options/theme-options.php:2414
  1945. msgid "Article Area Featured Image External API Random Image Address"
  1946. msgstr ""
  1947. #: options/theme-options.php:2424
  1948. msgid "Article Area Title Font Size"
  1949. msgstr ""
  1950. #: options/theme-options.php:2425
  1951. msgid "Slide to adjust, the recommended value range is 16-20"
  1952. msgstr ""
  1953. #: options/theme-options.php:2437
  1954. msgid "Article Area Time Display Area Font Size"
  1955. msgstr ""
  1956. #: options/theme-options.php:2439
  1957. msgid "Slide to adjust, the recommended values range is 10-14"
  1958. msgstr ""
  1959. #: options/theme-options.php:2450
  1960. msgid "Article Area Author Info"
  1961. msgstr ""
  1962. #: options/theme-options.php:2451
  1963. msgid ""
  1964. "When turned on, author information will be added to the article metadata section."
  1965. msgstr ""
  1966. #: options/theme-options.php:2460
  1967. msgid "Page Options"
  1968. msgstr ""
  1969. #: options/theme-options.php:2466
  1970. msgid "Common Options"
  1971. msgstr ""
  1972. #: options/theme-options.php:2473
  1973. msgid ""
  1974. "You can click <a href=\"https://docs.fuukei.org/Sakurairo/Pages/"
  1975. "#%E7%BB%BC%E5%90%88%E8%AE%BE%E7%BD%AE\">here</a> to learn how to set the options "
  1976. "on this page"
  1977. msgstr ""
  1978. #: options/theme-options.php:2479
  1979. msgid "Page Style"
  1980. msgstr ""
  1981. #: options/theme-options.php:2490
  1982. msgid "Page Layout Style"
  1983. msgstr ""
  1984. #: options/theme-options.php:2492
  1985. msgid "Default Style"
  1986. msgstr ""
  1987. #: options/theme-options.php:2493
  1988. msgid "Github Style"
  1989. msgstr ""
  1990. #: options/theme-options.php:2501
  1991. msgid "Page Decoration Image"
  1992. msgstr ""
  1993. #: options/theme-options.php:2502
  1994. msgid ""
  1995. "Enabled by default, show on article pages, standalone pages and category pages"
  1996. msgstr ""
  1997. #: options/theme-options.php:2509
  1998. msgid "Page Title Animation"
  1999. msgstr ""
  2000. #: options/theme-options.php:2510
  2001. msgid "Page title will have float-in animation when turned on"
  2002. msgstr ""
  2003. #: options/theme-options.php:2517
  2004. msgid "Page Title Animation Time"
  2005. msgstr ""
  2006. #: options/theme-options.php:2519
  2007. msgid "Slide to adjust, recommended value range is 1-2"
  2008. msgstr ""
  2009. #: options/theme-options.php:2529
  2010. msgid "Page Clipboard Copyright Notice"
  2011. msgstr ""
  2012. #: options/theme-options.php:2530
  2013. msgid ""
  2014. "Enabled by default, users will have copyright notice text when copying text "
  2015. "content over 30 bytes"
  2016. msgstr ""
  2017. #: options/theme-options.php:2537
  2018. msgid "Page LazyLoad"
  2019. msgstr ""
  2020. #: options/theme-options.php:2538
  2021. msgid ""
  2022. "LazyLoad effect for page images, WordPress block editor already comes with "
  2023. "similar effect, not recommended to turn on"
  2024. msgstr ""
  2025. #: options/theme-options.php:2545
  2026. msgid "Page LazyLoad Placeholder SVG"
  2027. msgstr ""
  2028. #: options/theme-options.php:2547
  2029. msgid ""
  2030. "Fill in the address, this is the placeholder image that will be displayed when "
  2031. "the page LazyLoad is being loaded"
  2032. msgstr ""
  2033. #: options/theme-options.php:2554
  2034. msgid "Page Image Placeholder SVG"
  2035. msgstr ""
  2036. #: options/theme-options.php:2555
  2037. msgid ""
  2038. "Fill address, this is the SVG that will be displayed as a placeholder when the "
  2039. "page image is being loaded"
  2040. msgstr ""
  2041. #: options/theme-options.php:2564
  2042. msgid "Article Page Options"
  2043. msgstr ""
  2044. #: options/theme-options.php:2571
  2045. msgid ""
  2046. "You can click <a href=\"https://docs.fuukei.org/Sakurairo/Pages/"
  2047. "#%E6%96%87%E7%AB%A0%E9%A1%B5%E9%9D%A2%E8%AE%BE%E7%BD%AE\">here</a> to learn how "
  2048. "to set the options on this page"
  2049. msgstr ""
  2050. #: options/theme-options.php:2577
  2051. msgid "Article Page Title Font Size"
  2052. msgstr ""
  2053. #: options/theme-options.php:2578
  2054. msgid ""
  2055. "Slide to adjust, recommended value range is 28-36. This option is only available "
  2056. "for article pages that have a featured image set"
  2057. msgstr ""
  2058. #: options/theme-options.php:2588
  2059. msgid "Article Page Title Underline Animation"
  2060. msgstr ""
  2061. #: options/theme-options.php:2589
  2062. msgid ""
  2063. "Article title will have underline animation when this is enabled and article has "
  2064. "a featured image set"
  2065. msgstr ""
  2066. #: options/theme-options.php:2596
  2067. msgid "Article Page Auto Show Menu"
  2068. msgstr ""
  2069. #: options/theme-options.php:2597
  2070. msgid "Enabled by default, the article page will automatically show the menu"
  2071. msgstr ""
  2072. #: options/theme-options.php:2603
  2073. msgid "Article Expansion Area"
  2074. msgstr ""
  2075. #: options/theme-options.php:2609
  2076. msgid "Article Page Function Bar"
  2077. msgstr ""
  2078. #: options/theme-options.php:2610
  2079. msgid ""
  2080. "Enabled by default, will be displayed on the article page with the features "
  2081. "enabled below"
  2082. msgstr ""
  2083. #: options/theme-options.php:2617
  2084. msgid "Article Lincenses"
  2085. msgstr ""
  2086. #: options/theme-options.php:2619
  2087. msgid "Enabled by default, Article lincenses will appear on the function bar"
  2088. msgstr ""
  2089. #: options/theme-options.php:2626
  2090. msgid "Article Page Appreciation Function (Alipay QR Code)"
  2091. msgstr ""
  2092. #: options/theme-options.php:2628
  2093. msgid "Upload Alipay Receipt QR Code Image"
  2094. msgstr ""
  2095. #: options/theme-options.php:2635
  2096. msgid "Article Page Appreciation Function (Wechat QR Code)"
  2097. msgstr ""
  2098. #: options/theme-options.php:2637
  2099. msgid "Upload WeChat Receipt QR Code Image"
  2100. msgstr ""
  2101. #: options/theme-options.php:2644
  2102. msgid "Article Page Author Avatar"
  2103. msgstr ""
  2104. #: options/theme-options.php:2646
  2105. msgid "Enabled by default, Author avatar will appear on the function bar"
  2106. msgstr ""
  2107. #: options/theme-options.php:2653
  2108. msgid "Article Page Author Name"
  2109. msgstr ""
  2110. #: options/theme-options.php:2655
  2111. msgid "Author name will appear on the function bar when enabled"
  2112. msgstr ""
  2113. #: options/theme-options.php:2662
  2114. msgid "Article Page Author Signature"
  2115. msgstr ""
  2116. #: options/theme-options.php:2664
  2117. msgid "Enabled by default, Author signature will appear on the function bar"
  2118. msgstr ""
  2119. #: options/theme-options.php:2671
  2120. msgid "Article Page Author Info Signature Text"
  2121. msgstr ""
  2122. #: options/theme-options.php:2683
  2123. msgid "Article Last Update Time"
  2124. msgstr ""
  2125. #: options/theme-options.php:2685
  2126. msgid "Article last update time will appear on the function bar when enabled"
  2127. msgstr ""
  2128. #: options/theme-options.php:2692
  2129. msgid "Article Tag"
  2130. msgstr ""
  2131. #: options/theme-options.php:2694
  2132. msgid "Enabled by default, Article tag will appear on the function bar"
  2133. msgstr ""
  2134. #: options/theme-options.php:2701
  2135. msgid "Article Page Prev/Next Article Switcher"
  2136. msgstr ""
  2137. #: options/theme-options.php:2702
  2138. msgid ""
  2139. "Enabled by default, the previous and next article switch will appear on the "
  2140. "article pages"
  2141. msgstr ""
  2142. #: options/theme-options.php:2711
  2143. msgid "Template Page Options"
  2144. msgstr ""
  2145. #: options/theme-options.php:2718
  2146. msgid ""
  2147. "You can click <a href=\"https://docs.fuukei.org/Sakurairo/Pages/"
  2148. "#%E6%A8%A1%E6%9D%BF%E9%A1%B5%E9%9D%A2%E8%AE%BE%E7%BD%AE\">here</a> to learn how "
  2149. "to set the options on this page"
  2150. msgstr ""
  2151. #: options/theme-options.php:2724
  2152. msgid "Template Page Title Font Size"
  2153. msgstr ""
  2154. #: options/theme-options.php:2725
  2155. msgid ""
  2156. "Slide to adjust, recommended value range is 36-48. This option is only available "
  2157. "for template pages with featured images already set"
  2158. msgstr ""
  2159. #: options/theme-options.php:2735
  2160. msgid "Ideas Template Background ColorⅠ"
  2161. msgstr ""
  2162. #: options/theme-options.php:2743
  2163. msgid "Ideas Template Background Color II"
  2164. msgstr ""
  2165. #: options/theme-options.php:2751
  2166. msgid "Ideas Template Tip Arrow"
  2167. msgstr ""
  2168. #: options/theme-options.php:2752
  2169. msgid "After turning on the alert arrow will appear on the left side of the comment"
  2170. msgstr ""
  2171. #: options/theme-options.php:2759
  2172. msgid "Ideas Template Font"
  2173. msgstr ""
  2174. #: options/theme-options.php:2767
  2175. msgid "Bangumi Template Source"
  2176. msgstr ""
  2177. #: options/theme-options.php:2778
  2178. msgid "My Anime List Username"
  2179. msgstr ""
  2180. #: options/theme-options.php:2780
  2181. msgid "Username on https://myanimelist.net/"
  2182. msgstr ""
  2183. #: options/theme-options.php:2787
  2184. msgid "My Anime List Sort"
  2185. msgstr ""
  2186. #: options/theme-options.php:2790
  2187. msgid "Status and Last Updated"
  2188. msgstr ""
  2189. #: options/theme-options.php:2791
  2190. msgid "Last Updated"
  2191. msgstr ""
  2192. #: options/theme-options.php:2792
  2193. msgid "Status"
  2194. msgstr ""
  2195. #: options/theme-options.php:2800
  2196. msgid "Bilibili Account UID"
  2197. msgstr ""
  2198. #: options/theme-options.php:2801
  2199. msgid ""
  2200. "Fill in your account ID, e.g. https://space.bilibili.com/13972644/, just the "
  2201. "number part \"13972644\""
  2202. msgstr ""
  2203. #: options/theme-options.php:2808
  2204. msgid "Bilibili Account Cookies"
  2205. msgstr ""
  2206. #: options/theme-options.php:2809
  2207. msgid ""
  2208. "Fill in your account cookies, F12 to open your browser web panel, go to your "
  2209. "bilibili homepage to get cookies. If left empty, it will not show the progress of "
  2210. "catching up bangumis"
  2211. msgstr ""
  2212. #: options/theme-options.php:2816
  2213. msgid "Friend Link Template Unit Alignment"
  2214. msgstr ""
  2215. #: options/theme-options.php:2828
  2216. msgid "Friend Link Template Unit Matching Color"
  2217. msgstr ""
  2218. #: options/theme-options.php:2836
  2219. msgid "Friend Link Template Unit Border Shadow Color"
  2220. msgstr ""
  2221. #: options/theme-options.php:2844
  2222. msgid "Login Template Registration Function"
  2223. msgstr ""
  2224. #: options/theme-options.php:2845
  2225. msgid "Login template will allow registration when enabled"
  2226. msgstr ""
  2227. #: options/theme-options.php:2854
  2228. msgid "Comment-related Options"
  2229. msgstr ""
  2230. #: options/theme-options.php:2861
  2231. msgid ""
  2232. "You can click <a href=\"https://docs.fuukei.org/Sakurairo/Pages/"
  2233. "#%E8%AF%84%E8%AE%BA%E7%9B%B8%E5%85%B3%E8%AE%BE%E7%BD%AE\">here</a> to learn how "
  2234. "to set the options on this page"
  2235. msgstr ""
  2236. #: options/theme-options.php:2867
  2237. msgid "Page Comment Area Display"
  2238. msgstr ""
  2239. #: options/theme-options.php:2868
  2240. msgid "You can choose to expand or shirink the content of the comment area"
  2241. msgstr ""
  2242. #: options/theme-options.php:2870
  2243. msgid "Expand"
  2244. msgstr ""
  2245. #: options/theme-options.php:2871
  2246. msgid "Shrink"
  2247. msgstr ""
  2248. #: options/theme-options.php:2879
  2249. msgid "Page Comment Area Matching Color"
  2250. msgstr ""
  2251. #: options/theme-options.php:2887
  2252. msgid "Page Comment Area Shadow Color"
  2253. msgstr ""
  2254. #: options/theme-options.php:2895
  2255. msgid "Page Comment Area Bilibili Emoji Pack"
  2256. msgstr ""
  2257. #: options/theme-options.php:2896
  2258. msgid "Default on, bilibili emotions are displayed below the comment box"
  2259. msgstr ""
  2260. #: options/theme-options.php:2903
  2261. msgid "Page Comment Area Bottom Right Background Image"
  2262. msgstr ""
  2263. #: options/theme-options.php:2904
  2264. msgid "If this option is blank, there will be no image, no best recommendation here"
  2265. msgstr ""
  2266. #: options/theme-options.php:2911
  2267. msgid "Page Comment Area UA Info"
  2268. msgstr ""
  2269. #: options/theme-options.php:2912
  2270. msgid ""
  2271. "When enabled, the page comment area will display the user’s browser, operating "
  2272. "system information"
  2273. msgstr ""
  2274. #: options/theme-options.php:2919
  2275. msgid "Page Comment Area Location Information"
  2276. msgstr ""
  2277. #: options/theme-options.php:2920
  2278. msgid ""
  2279. "When enabled, the page comment area will show the user’s location information"
  2280. msgstr ""
  2281. #: options/theme-options.php:2927
  2282. msgid "Private Comment Function"
  2283. msgstr ""
  2284. #: options/theme-options.php:2928
  2285. msgid ""
  2286. "When enabled, users are allowed to set their comments to be invisible to others"
  2287. msgstr ""
  2288. #: options/theme-options.php:2935
  2289. msgid "Page Comment Area Bot Verification"
  2290. msgstr ""
  2291. #: options/theme-options.php:2936
  2292. msgid "After turning on user comments need to be verified before posting"
  2293. msgstr ""
  2294. #: options/theme-options.php:2943
  2295. msgid "QQ Avatar Link Encryption"
  2296. msgstr ""
  2297. #: options/theme-options.php:2946
  2298. msgid "Redirect (low security)"
  2299. msgstr ""
  2300. #: options/theme-options.php:2947
  2301. msgid "Get avatar data in the backend (medium security)"
  2302. msgstr ""
  2303. #: options/theme-options.php:2948
  2304. msgid "Parse avatar interface in the backend (high security, slow)"
  2305. msgstr ""
  2306. #: options/theme-options.php:2956
  2307. msgid "Page Comment Area Upload Image Interface"
  2308. msgstr ""
  2309. #: options/theme-options.php:2970
  2310. msgid "Imgur Client ID"
  2311. msgstr ""
  2312. #: options/theme-options.php:2972
  2313. msgid ""
  2314. "Fill in Client ID here, to register please visit https://api.imgur.com/oauth2/"
  2315. "addclient"
  2316. msgstr ""
  2317. #: options/theme-options.php:2978
  2318. msgid "Imgur Upload Proxy"
  2319. msgstr ""
  2320. #: options/theme-options.php:2980
  2321. msgid ""
  2322. "The proxy used by the backend when uploading images to Imgur. You can refer to "
  2323. "the tutorial: https://2heng.xin/2018/06/06/javascript-upload-images-with-imgur-"
  2324. "api/"
  2325. msgstr ""
  2326. #: options/theme-options.php:2987
  2327. msgid "SM.MS Secret Token"
  2328. msgstr ""
  2329. #: options/theme-options.php:2989
  2330. msgid "Fill in your Key here, to get it please visit https://sm.ms/home/apitoken"
  2331. msgstr ""
  2332. #: options/theme-options.php:2995
  2333. msgid "Chevereto API v1 Key"
  2334. msgstr ""
  2335. #: options/theme-options.php:2997
  2336. msgid ""
  2337. "Fill in the Key here, to get please visit your Chevereto home page address/"
  2338. "dashboard/settings/api"
  2339. msgstr ""
  2340. #: options/theme-options.php:3003
  2341. msgid "Chevereto Address"
  2342. msgstr ""
  2343. #: options/theme-options.php:3005
  2344. msgid ""
  2345. "Your Chevereto home page address. Please note that there is no \"/\" at the end, "
  2346. "e.g. https://your.cherverto.com"
  2347. msgstr ""
  2348. #: options/theme-options.php:3011
  2349. msgid "Lsky Pro v1 Token"
  2350. msgstr ""
  2351. #: options/theme-options.php:3013
  2352. msgid ""
  2353. "Fill in the Token here, Please note that there is no \"Bearer \" at first, to get "
  2354. "please visit your Lsky Pro home page address/api"
  2355. msgstr ""
  2356. #: options/theme-options.php:3019
  2357. msgid "Lsky Pro Address"
  2358. msgstr ""
  2359. #: options/theme-options.php:3021
  2360. msgid ""
  2361. "Your Lsky Pro home page address. Please note that there is no \"/\" at the end, e."
  2362. "g. https://your.lskypro.com"
  2363. msgstr ""
  2364. #: options/theme-options.php:3027
  2365. msgid "Comment Image Proxy"
  2366. msgstr ""
  2367. #: options/theme-options.php:3028
  2368. msgid "Proxy for the image displayed on the frontend"
  2369. msgstr ""
  2370. #: options/theme-options.php:3035
  2371. msgid "Mail Template Featured Image"
  2372. msgstr ""
  2373. #: options/theme-options.php:3036
  2374. msgid "Set the background image of your reply email"
  2375. msgstr ""
  2376. #: options/theme-options.php:3044
  2377. msgid "Mail Template Sending Address Prefix"
  2378. msgstr ""
  2379. #: options/theme-options.php:3045
  2380. msgid ""
  2381. "Used to send system mail. The sender address will be displayed in the user's "
  2382. "mailbox, don't use Non-English Characters. The default system mail address is "
  2383. "bibi@your domain"
  2384. msgstr ""
  2385. #: options/theme-options.php:3052
  2386. msgid "User Mail Reply Notification"
  2387. msgstr ""
  2388. #: options/theme-options.php:3053
  2389. msgid ""
  2390. "By default WordPress will use email notifications to notify users when their "
  2391. "comments receive a reply. After turning it on users are allowed to set whether to "
  2392. "use email notifications when their comments receive a reply"
  2393. msgstr ""
  2394. #: options/theme-options.php:3060
  2395. msgid "Admin Email Reply Notification"
  2396. msgstr ""
  2397. #: options/theme-options.php:3061
  2398. msgid ""
  2399. "Use email notifications when admin comments receive a reply after turning it on"
  2400. msgstr ""
  2401. #: options/theme-options.php:3070
  2402. msgid "Other Options"
  2403. msgstr ""
  2404. #: options/theme-options.php:3076
  2405. msgid "Login Screen and Dashboard Related Options"
  2406. msgstr ""
  2407. #: options/theme-options.php:3083
  2408. msgid ""
  2409. "You can click <a href=\"https://docs.fuukei.org/Sakurairo/Others/"
  2410. "#%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</"
  2411. "a> to learn how to set the options on this page"
  2412. msgstr ""
  2413. #: options/theme-options.php:3088
  2414. msgid "Login Screen"
  2415. msgstr ""
  2416. #: options/theme-options.php:3094
  2417. msgid "Login Screen Background Image"
  2418. msgstr ""
  2419. #: options/theme-options.php:3095
  2420. msgid ""
  2421. "Set your login screen background image, leave this option blank to show the "
  2422. "default"
  2423. msgstr ""
  2424. #: options/theme-options.php:3103
  2425. msgid "Login Screen Background Blur"
  2426. msgstr ""
  2427. #: options/theme-options.php:3104
  2428. msgid "Login screen background image will be blurred when enabled"
  2429. msgstr ""
  2430. #: options/theme-options.php:3111
  2431. msgid "Login Screen Logo"
  2432. msgstr ""
  2433. #: options/theme-options.php:3112
  2434. msgid "Set your login screen Logo"
  2435. msgstr ""
  2436. #: options/theme-options.php:3120
  2437. msgid "Jump after login"
  2438. msgstr ""
  2439. #: options/theme-options.php:3121
  2440. msgid "Jump to backend for admins and home for users after turning on."
  2441. msgstr ""
  2442. #: options/theme-options.php:3128
  2443. msgid "Login Screen Language Option"
  2444. msgstr ""
  2445. #: options/theme-options.php:3129
  2446. msgid "Login screen language option will be display when enabled"
  2447. msgstr ""
  2448. #: options/theme-options.php:3135
  2449. msgid "Dashboard"
  2450. msgstr ""
  2451. #: options/theme-options.php:3141
  2452. msgid "Dashboard Background Image"
  2453. msgstr ""
  2454. #: options/theme-options.php:3142
  2455. msgid ""
  2456. "Set your dashboard background image, leave this option blank to show white "
  2457. "background"
  2458. msgstr ""
  2459. #: options/theme-options.php:3150
  2460. msgid "Dashboard Options Menu Style"
  2461. msgstr ""
  2462. #: options/theme-options.php:3161
  2463. msgid "Dashboard Primary Menu Color"
  2464. msgstr ""
  2465. #: options/theme-options.php:3169
  2466. msgid "Dashboard Secondary Menu Color"
  2467. msgstr ""
  2468. #: options/theme-options.php:3177
  2469. msgid "Dashboard Emphasis Color"
  2470. msgstr ""
  2471. #: options/theme-options.php:3185
  2472. msgid "Dashboard Button Color"
  2473. msgstr ""
  2474. #: options/theme-options.php:3193
  2475. msgid "Dashboard Text Color"
  2476. msgstr ""
  2477. #: options/theme-options.php:3202
  2478. msgid "ChatGPT Options"
  2479. msgstr ""
  2480. #: options/theme-options.php:3209
  2481. msgid ""
  2482. "You can click <a href=\"https://docs.fuukei.org/Sakurairo/Others/"
  2483. "#ChatGPT%E8%AE%BE%E7%BD%AE\">here</a> to learn how to set the options on this page"
  2484. msgstr ""
  2485. #: options/theme-options.php:3215
  2486. msgid "ChatGPT Base URL"
  2487. msgstr ""
  2488. #: options/theme-options.php:3216
  2489. msgid "Fill in the ChatGPT Base URL, The default is http://sxy.gay/"
  2490. msgstr ""
  2491. #: options/theme-options.php:3223
  2492. msgid "ChatGPT API keys"
  2493. msgstr ""
  2494. #: options/theme-options.php:3224
  2495. msgid ""
  2496. "Fill in Your ChatGPT API keys, You can go to <a href=\"https://platform.openai."
  2497. "com/account/api-keys\">OpenAI Website</a> to get your API Keys"
  2498. msgstr ""
  2499. #: options/theme-options.php:3230
  2500. msgid "ChatGPT Article Summarize"
  2501. msgstr ""
  2502. #: options/theme-options.php:3231
  2503. msgid "After turning on ChatGPT will automatically generate article abstracts"
  2504. msgstr ""
  2505. #: options/theme-options.php:3237
  2506. msgid ""
  2507. "Each update of your post will trigger a request to generate a summary. Due to "
  2508. "current API limitations, if your article exceeds 4097 Token, the system will only "
  2509. "send the unexceeded portion to generate a summary"
  2510. msgstr ""
  2511. #: options/theme-options.php:3244
  2512. msgid "ChatGPT Article Summarize Init Prompt"
  2513. msgstr ""
  2514. #: options/theme-options.php:3246
  2515. msgid ""
  2516. "Fill in the Init Prompt, Please make changes if you know how to configure it "
  2517. "correctly. Init Prompt will be passed to ChatGPT as \"system\" role"
  2518. msgstr ""
  2519. #: options/theme-options.php:3257
  2520. msgid "ChatGPT Article Summarize Ask Prompt"
  2521. msgstr ""
  2522. #: options/theme-options.php:3259
  2523. msgid ""
  2524. "Fill in the Ask Prompt, Use preset value when option is empty, Please make "
  2525. "changes if you know how to configure it correctly"
  2526. msgstr ""
  2527. #: options/theme-options.php:3267
  2528. msgid "Low Use Options"
  2529. msgstr ""
  2530. #: options/theme-options.php:3274
  2531. msgid ""
  2532. "You can click <a href=\"https://docs.fuukei.org/Sakurairo/Others/"
  2533. "#%E4%BD%8E%E4%BD%BF%E7%94%A8%E8%AE%BE%E7%BD%AE\">here</a> to learn how to set the "
  2534. "options on this page"
  2535. msgstr ""
  2536. #: options/theme-options.php:3280
  2537. msgid "Statistics API"
  2538. msgstr ""
  2539. #: options/theme-options.php:3281
  2540. msgid ""
  2541. "You can choose WP-Statistics plugin statistics or theme built-in statistics to "
  2542. "display"
  2543. msgstr ""
  2544. #: options/theme-options.php:3283
  2545. msgid "Theme Built in Statistics"
  2546. msgstr ""
  2547. #: options/theme-options.php:3284
  2548. msgid "WP-Statistics Plugin Statistics"
  2549. msgstr ""
  2550. #: options/theme-options.php:3292
  2551. msgid "Statistics display format"
  2552. msgstr ""
  2553. #: options/theme-options.php:3293
  2554. msgid "You can choose from four different data display formats"
  2555. msgstr ""
  2556. #: options/theme-options.php:3295
  2557. msgid "23333 Visits"
  2558. msgstr ""
  2559. #: options/theme-options.php:3296
  2560. msgid "23,333 Visits"
  2561. msgstr ""
  2562. #: options/theme-options.php:3297
  2563. msgid "23 333 Visits"
  2564. msgstr ""
  2565. #: options/theme-options.php:3298
  2566. msgid "23K Visits"
  2567. msgstr ""
  2568. #: options/theme-options.php:3306
  2569. msgid "Live Search"
  2570. msgstr ""
  2571. #: options/theme-options.php:3307
  2572. msgid ""
  2573. "After turning on the live search in the frontend, call Rest API to update the "
  2574. "cache once an hour. You can set the cache time manually in api.php"
  2575. msgstr ""
  2576. #: options/theme-options.php:3314
  2577. msgid "Live Search Comment Support"
  2578. msgstr ""
  2579. #: options/theme-options.php:3316
  2580. msgid ""
  2581. "Enable to search for comments in live search (not recommended if site has too "
  2582. "many comments)"
  2583. msgstr ""
  2584. #: options/theme-options.php:3323
  2585. msgid "Google Analytics Id"
  2586. msgstr ""
  2587. #: options/theme-options.php:3324
  2588. msgid "If you already have a plugin to handle it, please keep here empty."
  2589. msgstr ""
  2590. #: options/theme-options.php:3330
  2591. msgid "Custom CSS Styles"
  2592. msgstr ""
  2593. #: options/theme-options.php:3331
  2594. msgid "Fill in the CSS code without writing style tag"
  2595. msgstr ""
  2596. #: options/theme-options.php:3338
  2597. msgid "Code inserted in the header"
  2598. msgstr ""
  2599. #: options/theme-options.php:3339
  2600. msgid "Insert HTML code right before </head>."
  2601. msgstr ""
  2602. #: options/theme-options.php:3345
  2603. msgid "Timezone Fix"
  2604. msgstr ""
  2605. #: options/theme-options.php:3346
  2606. msgid ""
  2607. "Slide to adjust. If the comment has a time difference problem, adjust it here, "
  2608. "fill in an integer. Calculation method: actual time = time of display error - the "
  2609. "integer you entered (in hours)"
  2610. msgstr ""
  2611. #: options/theme-options.php:3355
  2612. msgid "Gravatar Service Proxy"
  2613. msgstr ""
  2614. #: options/theme-options.php:3356
  2615. msgid ""
  2616. "You can select multiple proxy as the Gravatar Service Proxy. By default, Geekzu "
  2617. "is used as the Gravatar Service Proxy."
  2618. msgstr ""
  2619. #: options/theme-options.php:3358
  2620. msgid "Geekzu"
  2621. msgstr ""
  2622. #: options/theme-options.php:3359
  2623. msgid "Cravatar Service"
  2624. msgstr ""
  2625. #: options/theme-options.php:3360
  2626. msgid "Loli Net"
  2627. msgstr ""
  2628. #: options/theme-options.php:3361
  2629. msgid "Official"
  2630. msgstr ""
  2631. #: options/theme-options.php:3362
  2632. msgid "Official CN"
  2633. msgstr ""
  2634. #: options/theme-options.php:3369
  2635. msgid "Lightbox"
  2636. msgstr ""
  2637. #: options/theme-options.php:3375
  2638. msgid "BaguetteBox Lightbox Effect"
  2639. msgstr ""
  2640. #: options/theme-options.php:3376
  2641. msgid "BaguetteBox will be used as the image lightbox effect when turned on"
  2642. msgstr ""
  2643. #: options/theme-options.php:3383
  2644. msgid "FancyBox Lightbox Effect"
  2645. msgstr ""
  2646. #: options/theme-options.php:3384
  2647. msgid ""
  2648. "FancyBox will be used as an image lightbox effect after turning on, additional JQ "
  2649. "libraries will be loaded"
  2650. msgstr ""
  2651. #: options/theme-options.php:3392
  2652. msgid "LightGallery Lightbox Effect"
  2653. msgstr ""
  2654. #: options/theme-options.php:3393
  2655. msgid "LightGallery will be used as an image lightbox effect after turning on."
  2656. msgstr ""
  2657. #: options/theme-options.php:3399
  2658. msgid ""
  2659. "<strong>Attension: Please read <a href=\"https://github.com/sachinchoolur/"
  2660. "lightGallery#license\">License Instruction</a> before use.</strong><br/"
  2661. "><strong><a href=\"https://www.lightgalleryjs.com/demos/thumbnails/\">Demos</a></"
  2662. "strong> | <strong><a href=\"https://www.lightgalleryjs.com/docs/settings/"
  2663. "\">Reference</a></strong> | <strong><a href=\"https://fastly.jsdelivr.net/npm/"
  2664. "lightgallery@latest/plugins/\">Plugin List</a></strong> <br/> Please write "
  2665. "settings in JavaScript. An example has been provided as default setting.<br/> It "
  2666. "should be captiable for Most User using WordPress Guttenberg Editor.<br/>Submit "
  2667. "new discussion on Github for assistance. https://github.com/mirai-mamori/"
  2668. "Sakurairo/discussions"
  2669. msgstr ""
  2670. #: options/theme-options.php:3410
  2671. msgid ""
  2672. "Start from Sakurairo v2.4.0, plugins names in LightGallery option follow the form "
  2673. "cite in official document (eg. lgHash instead of \"hash\")"
  2674. msgstr ""
  2675. #: options/theme-options.php:3418
  2676. msgid "LightGallery Lightbox Effect Options"
  2677. msgstr ""
  2678. #: options/theme-options.php:3429
  2679. msgid "Code Highlighting"
  2680. msgstr ""
  2681. #: options/theme-options.php:3434
  2682. msgid ""
  2683. "<p><strong>Highlight.js:</strong> Default. Automatic language recognition. </p> "
  2684. "<p><strong>Prism.js:</strong> Requires a language to be specified, see <a "
  2685. "href=\"https://prismjs.com/#basic-usage\">basic usage</a> and <a href=\"https://"
  2686. "prismjs.com/ plugins/file-highlight/\">How to code highlight dynamically loaded "
  2687. "files</a>. </p> <p><strong>Custom:</strong> For cases where another configuration "
  2688. "is available. </p>"
  2689. msgstr ""
  2690. #: options/theme-options.php:3442
  2691. msgid "Code Highlight Method"
  2692. msgstr ""
  2693. #: options/theme-options.php:3446
  2694. msgid "Custom Program"
  2695. msgstr ""
  2696. #: options/theme-options.php:3454
  2697. msgid "Prism.js: Add Line Number Display for All Code Blocks"
  2698. msgstr ""
  2699. #: options/theme-options.php:3458
  2700. msgid ""
  2701. "See the <a href=\"https://prismjs.com/plugins/line-numbers/\">plugin description "
  2702. "documentation</a>"
  2703. msgstr ""
  2704. #: options/theme-options.php:3464
  2705. msgid "Prism.js: Autoload Address"
  2706. msgstr ""
  2707. #: options/theme-options.php:3468
  2708. msgid "Leave blank to use default values"
  2709. msgstr ""
  2710. #: options/theme-options.php:3475
  2711. msgid "Prism.js: Code Highlight Theme"
  2712. msgstr ""
  2713. #: options/theme-options.php:3476 options/theme-options.php:3487
  2714. msgid "Relative to autoload address. Leave blank to use default values"
  2715. msgstr ""
  2716. #: options/theme-options.php:3486
  2717. msgid "Prism.js: Code Highlight Theme (Dark Mode)"
  2718. msgstr ""
  2719. #: options/theme-options.php:3497
  2720. msgid ""
  2721. "The following Options are not recommended to be modified blindly, please use them "
  2722. "under the guidance of others"
  2723. msgstr ""
  2724. #: options/theme-options.php:3503
  2725. msgid "Image CDN"
  2726. msgstr ""
  2727. #: options/theme-options.php:3504
  2728. msgid ""
  2729. "Note: fill in the format https://your CDN domain/. This means that images with "
  2730. "original path http://your.domain/wp-content/uploads/2018/05/xx.png will be loaded "
  2731. "from http://your CDN domain/2018/05/xx.png"
  2732. msgstr ""
  2733. #: options/theme-options.php:3511
  2734. msgid "Articles Categories (Do not display)"
  2735. msgstr ""
  2736. #: options/theme-options.php:3512 options/theme-options.php:3519
  2737. msgid "Fill in category ID, seperate in English\" , \" when more than one"
  2738. msgstr ""
  2739. #: options/theme-options.php:3518
  2740. msgid "Image Display Category"
  2741. msgstr ""
  2742. #: options/theme-options.php:3525
  2743. msgid "Specify Login Address"
  2744. msgstr ""
  2745. #: options/theme-options.php:3526
  2746. msgid ""
  2747. "Force not to use the WordPress login page address to login, fill in the new login "
  2748. "page address, such as: http://www.xxx.com/login. Note that before filling in the "
  2749. "new page you can test the normal opening, so as not to cause the inability to "
  2750. "enter the background, etc."
  2751. msgstr ""
  2752. #: options/theme-options.php:3532
  2753. msgid "Specify Registration Address"
  2754. msgstr ""
  2755. #: options/theme-options.php:3533
  2756. msgid ""
  2757. "This address is used as the registration entry on the login page, if you specify "
  2758. "a login address, it is recommended to fill in"
  2759. msgstr ""
  2760. #: options/theme-options.php:3539
  2761. msgid "Version Control"
  2762. msgstr ""
  2763. #: options/theme-options.php:3540
  2764. msgid "Used to update front-end cookies and browser cache, can use any string"
  2765. msgstr ""
  2766. #: options/theme-options.php:3546
  2767. msgid "Backup&Recovery"
  2768. msgstr ""
  2769. #: options/theme-options.php:3548
  2770. msgid "Backup or Recovery your theme options"
  2771. msgstr ""
  2772. #: options/theme-options.php:3559
  2773. msgid "About Theme"
  2774. msgstr ""
  2775. #: options/theme-options.php:3565
  2776. msgid "Version Info"
  2777. msgstr ""
  2778. #: options/theme-options.php:3570
  2779. msgid ""
  2780. "<img src=\"https://s.nmxc.ltd/sakurairo_vision/@2.6/series/headlogo.webp\" "
  2781. "alt=\"Theme Information\" />"
  2782. msgstr ""
  2783. #: options/theme-options.php:3576
  2784. #, php-format
  2785. msgid ""
  2786. "Theme Sakurairo Version %s | Internal Version %s | <a href=\"https://github.com/"
  2787. "mirai-mamori/Sakurairo\">Project Address</a>"
  2788. msgstr ""
  2789. #: options/theme-options.php:3581
  2790. msgid "Update Related"
  2791. msgstr ""
  2792. #: options/theme-options.php:3587
  2793. msgid "Theme Update Source"
  2794. msgstr ""
  2795. #: options/theme-options.php:3593
  2796. msgid ""
  2797. "If you are using a server set up in mainland China, please use the Upyun source "
  2798. "or the official theme source as your theme update source"
  2799. msgstr ""
  2800. #: options/theme-options.php:3600
  2801. msgid "Theme Update Test Channel Disclaimer"
  2802. msgstr ""
  2803. #: options/theme-options.php:3606
  2804. msgid ""
  2805. "Please copy the text in quotes after <strong>ensure that you have carefully "
  2806. "understood the risks associated with participating in the test and are willing to "
  2807. "assume all consequences at your own risk</strong> (including but not limited to "
  2808. "possible data loss) into the options text box <strong> \"I agree and am willing "
  2809. "to bear all unexpected consequences\"</strong>"
  2810. msgstr ""
  2811. #: options/theme-options.php:3612
  2812. msgid "Theme Update Channel"
  2813. msgstr ""
  2814. #: options/theme-options.php:3619
  2815. msgid ""
  2816. "You can toggle the update channel here to participate in the testing of the new "
  2817. "version"
  2818. msgstr ""
  2819. #: options/theme-options.php:3621
  2820. msgid "Stable Channel"
  2821. msgstr ""
  2822. #: options/theme-options.php:3622
  2823. msgid "Beta Channel"
  2824. msgstr ""
  2825. #: options/theme-options.php:3623
  2826. msgid "Preview Channel"
  2827. msgstr ""
  2828. #: options/theme-options.php:3630
  2829. msgid "Resource Control"
  2830. msgstr ""
  2831. #: options/theme-options.php:3636
  2832. msgid "Provide Critical Frontend Resource locally"
  2833. msgstr ""
  2834. #: options/theme-options.php:3637
  2835. msgid ""
  2836. "Enabeld by default. Critical resources are those resources whose loading "
  2837. "performance will have a significant impact on the user experience."
  2838. msgstr ""
  2839. #: options/theme-options.php:3644
  2840. msgid "Provide Other Frontend Resource locally"
  2841. msgstr ""
  2842. #: options/theme-options.php:3645
  2843. msgid "Less important frontend resource in the theme's folder."
  2844. msgstr ""
  2845. #: options/theme-options.php:3652
  2846. msgid "Provide 3rd-party library from public CDN"
  2847. msgstr ""
  2848. #: options/theme-options.php:3653
  2849. msgid ""
  2850. "When disabled, 3rd-party dependencies, which have been built to bundles along "
  2851. "with themes's entry script, will be loaded from the exact same origin with "
  2852. "Critical Frontend Resource. "
  2853. msgstr ""
  2854. #: options/theme-options.php:3660
  2855. msgid "Public CDN Basepath"
  2856. msgstr ""
  2857. #: options/theme-options.php:3671
  2858. msgid "Vision Resource Basepath"
  2859. msgstr ""
  2860. #: options/theme-options.php:3672
  2861. msgid ""
  2862. "This link directory structure needs to be consistent with the <a href=\"https://"
  2863. "github.com/Fuukei/Sakurairo_Vision\">Sakurairo Vision</a> repositories officially "
  2864. "provided by fuukei, otherwise some resources 404 may appear. The image source "
  2865. "officially provided by <a href=\"https://www.upyun.com/\">Upyun</a> is adopted by "
  2866. "default."
  2867. msgstr ""
  2868. #: options/theme-options.php:3678
  2869. msgid "Theme Sponsors"
  2870. msgstr ""
  2871. #: options/theme-options.php:3683
  2872. msgid ""
  2873. "<img src=\"https://news.maho.cc/sponsors.php\" alt=\"sponsors\" width=\"65%\" "
  2874. "height=\"65%\" />"
  2875. msgstr ""
  2876. #: options/theme-options.php:3688
  2877. msgid "Theme Contributors"
  2878. msgstr ""
  2879. #: options/theme-options.php:3693
  2880. msgid ""
  2881. "<img src=\"https://opencollective.com/fuukei/contributors.svg\" alt=\"Theme "
  2882. "Contributors\" width=\"100%\" height=\"100%\" />"
  2883. msgstr ""
  2884. #: options/theme-options.php:3698
  2885. msgid "Privacy information"
  2886. msgstr ""
  2887. #: options/theme-options.php:3703
  2888. msgid ""
  2889. "<p>The theme respects your privacy</p>\n"
  2890. " <p>However, when you use a service provider pre-populated by the theme to "
  2891. "provide relevant services in mainland China, the service provider may collect "
  2892. "data about your visitors and compile statistics</p>\n"
  2893. " <p>You can reduce the amount of information sent to third parties by "
  2894. "localising the theme-related resources, which are pre-configured with options for "
  2895. "you to modify</p>"
  2896. msgstr ""
  2897. #: options/theme-options.php:3711
  2898. msgid "Send Theme Version to Fuukei"
  2899. msgstr ""
  2900. #: options/theme-options.php:3712
  2901. msgid ""
  2902. "The theme will only send time and version information to Fuukei officials and the "
  2903. "data will be cleaned regularly and used only to count version updates."
  2904. msgstr ""
  2905. #: options/theme-options.php:3718
  2906. msgid "Reference Information"
  2907. msgstr ""
  2908. #: options/theme-options.php:3723
  2909. msgid ""
  2910. "<p>Fluent Design Icon Referenced by Paradox <a href=\"https://wwi.lanzous.com/"
  2911. "ikyq5kgx0wb\">Fluent Icon Pack</a></p>\n"
  2912. " <p>MUH2 Design Icon Referenced by 缄默 <a href=\"https://www.coolapk.com/"
  2913. "apk/com.muh2.icon\">MUH2 Icon Pack</a></p>\n"
  2914. " <p>Mashiro Style Logo References the Original Theme Author Mashiro, As "
  2915. "Provided and Referenced by Hyacm</p>"
  2916. msgstr ""
  2917. #: options/theme-options.php:3730
  2918. msgid "Dependency Information"
  2919. msgstr ""
  2920. #: options/theme-options.php:3735
  2921. msgid ""
  2922. "<p>Options Framework Relies on the Codestar Open Source <a href=\"https://github."
  2923. "com/Codestar/codestar-framework\">Codestar Framework</a> Project</p>\n"
  2924. " <p>Update Function Relies on YahnisElsts Open Source <a href=\"https://"
  2925. "github.com/YahnisElsts/plugin-update-checker\">Plugin Update Checker</a> Project</"
  2926. "p>\n"
  2927. " <p>ChatGPT-related Capabilities Relies on HaoZi-Team Open Source <a "
  2928. "href=\"https://github.com/HaoZi-Team/ChatGPT-PHP\">ChatGPT PHP</a> Project</p>"
  2929. msgstr ""
  2930. #: options/theme-options.php:3742
  2931. msgid ""
  2932. "<img src=\"https://img.shields.io/github/v/release/mirai-mamori/Sakurairo.svg?"
  2933. "style=flat-square\" alt=\"Theme latest version\" style=\"border-radius: 3px;\" /"
  2934. "> <img src=\"https://img.shields.io/github/release-date/mirai-mamori/Sakurairo?"
  2935. "style=flat-square\" alt=\"Theme latest version release date\" style=\"border-"
  2936. "radius: 3px;\" /> <img src=\"https://data.jsdelivr.com/v1/package/gh/Fuukei/"
  2937. "Public_Repository/badge\" alt=\"Theme CDN resource access\" style=\"border-"
  2938. "radius: 3px;\" />"
  2939. msgstr ""
  2940. #. Plugin Name of the plugin/theme
  2941. msgid "Sakurairo_CSF"
  2942. msgstr ""
  2943. #. Plugin URI of the plugin/theme
  2944. msgid "https://github.com/Fuukei/Sakurairo_CSF"
  2945. msgstr ""
  2946. #. Description of the plugin/theme
  2947. msgid "A Simple and Lightweight WordPress Option Framework for Sakurairo"
  2948. msgstr ""
  2949. #. Author of the plugin/theme
  2950. msgid "Codestar with Fuukei"
  2951. msgstr ""
  2952. #. Author URI of the plugin/theme
  2953. msgid "https://github.com/Fuukei"
  2954. msgstr ""