sakurairo_csf.pot 85 KB

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