- - - - - - - - + + + array('post', 'shuoshuo'), + 'post_status' => 'publish', + 's' => $search_query, + 'posts_per_page' => -1, + 'orderby' => 'relevance', + 'order' => 'DESC', + ); + + //if ($is_author_page) { + // $all_results_args['author'] = get_the_author_meta('ID');// 只获取当前作者的文章 + //} + $all_results_query = new WP_Query($all_results_args); + + //结果 + $all_results = []; + $sticky_results = []; + $non_sticky_results = []; + + //分类置顶内容和非置顶内容 + if ($all_results_query->have_posts()) : + while ($all_results_query->have_posts()) : $all_results_query->the_post(); + if (in_array(get_the_ID(), $sticky_posts)) { + $sticky_results[] = $post; + } else { + $non_sticky_results[] = $post; + } + endwhile; + endif; + wp_reset_postdata(); + + //合并结果,优先展示置顶文章 + $all_results = array_merge($sticky_results, $non_sticky_results); + + // 内容分页 + $total_results = count($all_results); + $posts_per_page = 10; + $total_pages = ceil($total_results / $posts_per_page); + $current_page_results = array_slice($all_results, ($paged - 1) * $posts_per_page, $posts_per_page); + + //输出当前页内容 + if (!empty($current_page_results)) : + foreach ($current_page_results as $post) : + setup_postdata($post); + get_template_part('tpl/content', 'thumbcard'); + endforeach; + + //分页跳转 + the_posts_pagination(array( + 'total' => $total_pages, + 'current' => $paged, + )); + else : + //未找到搜索结果 + ?> + + + +
- + diff --git a/inc/decorate.php b/inc/decorate.php index ed921c94..91aeb840 100644 --- a/inc/decorate.php +++ b/inc/decorate.php @@ -867,8 +867,12 @@ function customizer_css() { ?> margin-right: 40%; } -.post-excerpt p{ +.post-excerpt p { max-height: 90%; + -webkit-line-clamp: 11; + display: -webkit-box; + -webkit-box-orient: vertical; + overflow: hidden; } .post-list-thumb:nth-child(2n) .post-thumb{ diff --git a/opt/languages/ja.mo b/opt/languages/ja.mo index 1772d0da499af8f6685c3f5197bebca6de6c9807..4f15dd803874666bacc34ed3e7d8f248863c4dd3 100644 GIT binary patch delta 14212 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 Hn|}U3Q(uA# diff --git a/opt/languages/ja.po b/opt/languages/ja.po index 1cce6752..f8de0fc8 100644 --- a/opt/languages/ja.po +++ b/opt/languages/ja.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: Codestar Framework Modified by Fuukei\n" -"POT-Creation-Date: 2024-11-02 16:20+0800\n" -"PO-Revision-Date: 2024-11-02 16:21+0800\n" +"POT-Creation-Date: 2024-11-03 10:50+0900\n" +"PO-Revision-Date: 2024-11-03 10:51+0900\n" "Last-Translator: \n" "Language-Team: \n" "Language: ja\n" @@ -10,7 +10,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Poedit 3.5\n" +"X-Generator: Poedit 3.4.4\n" "X-Poedit-Basepath: ..\n" "X-Poedit-Flags-xgettext: --add-comments=translators:\n" "X-Poedit-WPHeader: option-framework.php\n" @@ -1762,10 +1762,10 @@ msgstr "PJAX 有効化後にフッターで再読み込みが必要なリソー #: options/theme-options.php:1291 msgid "" -"After enabling PJAX, custom content in the footer won’t be refreshed on page " -"navigation. You can specify paths for JavaScript and stylesheet resources " -"that need to be reloaded on each page in the footer here, one per line. " -"These resources will be reloaded once PJAX completes content loading." +"After enabling PJAX, custom content in the footer will not be refreshed on " +"page navigation. You can specify paths for JavaScript and stylesheet " +"resources that need to be reloaded on each page in the footer here, one per " +"line. These resources will be reloaded once PJAX completes content loading." msgstr "" "PJAX 有効化後、フッターのカスタムコンテンツはページナビゲーション時に更新され" "ません。ここで各ページごとにフッターで再読み込みが必要な JavaScript やスタイ" diff --git a/opt/languages/sakurairo_csf.pot b/opt/languages/sakurairo_csf.pot index af540205..c47850e7 100644 --- a/opt/languages/sakurairo_csf.pot +++ b/opt/languages/sakurairo_csf.pot @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Codestar Framework Modified by Fuukei\n" -"POT-Creation-Date: 2024-10-20 18:50+0200\n" +"POT-Creation-Date: 2024-11-03 11:15+0900\n" "PO-Revision-Date: 2021-06-26 16:15+0800\n" "Last-Translator: \n" "Language-Team: \n" @@ -10,7 +10,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -"X-Generator: Poedit 3.5\n" +"X-Generator: Poedit 3.4.4\n" "X-Poedit-Basepath: ..\n" "X-Poedit-Flags-xgettext: --add-comments=translators:\n" "X-Poedit-WPHeader: option-framework.php\n" @@ -232,7 +232,7 @@ msgid "Contain" msgstr "" #: fields/background/background.php:221 options/theme-options.php:689 -#: options/theme-options.php:899 +#: options/theme-options.php:907 msgid "Auto" msgstr "" @@ -476,9 +476,9 @@ msgid "On" msgstr "" #: fields/switcher/switcher.php:21 options/theme-options.php:851 -#: options/theme-options.php:897 options/theme-options.php:1119 -#: options/theme-options.php:1299 options/theme-options.php:3159 -#: options/theme-options.php:3172 +#: options/theme-options.php:905 options/theme-options.php:1127 +#: options/theme-options.php:1315 options/theme-options.php:3175 +#: options/theme-options.php:3188 msgid "Off" msgstr "" @@ -728,8 +728,8 @@ msgid "Personal Avatar" msgstr "" #: options/theme-options.php:71 options/theme-options.php:530 -#: options/theme-options.php:1881 options/theme-options.php:2034 -#: options/theme-options.php:2059 +#: options/theme-options.php:1897 options/theme-options.php:2050 +#: options/theme-options.php:2075 msgid "The best length-width ratio of is 1:1" msgstr "" @@ -762,8 +762,8 @@ msgstr "" #: options/theme-options.php:99 options/theme-options.php:487 #: options/theme-options.php:650 options/theme-options.php:817 -#: options/theme-options.php:826 options/theme-options.php:943 -#: options/theme-options.php:1541 options/theme-options.php:2224 +#: options/theme-options.php:826 options/theme-options.php:951 +#: options/theme-options.php:1557 options/theme-options.php:2240 msgid "Fill in the font name. For example: Noto Serif SC" msgstr "" @@ -775,8 +775,8 @@ msgstr "" msgid "Slide to adjust, the recommended value range is 70-90" msgstr "" -#: options/theme-options.php:114 options/theme-options.php:1736 -#: options/theme-options.php:2304 +#: options/theme-options.php:114 options/theme-options.php:1752 +#: options/theme-options.php:2320 msgid "Customize the colors, light colors are recommended" msgstr "" @@ -861,10 +861,10 @@ msgid "Theme Color" msgstr "" #: options/theme-options.php:202 options/theme-options.php:210 -#: options/theme-options.php:223 options/theme-options.php:1090 -#: options/theme-options.php:1099 options/theme-options.php:3393 -#: options/theme-options.php:3401 options/theme-options.php:3409 +#: options/theme-options.php:223 options/theme-options.php:1098 +#: options/theme-options.php:1107 options/theme-options.php:3409 #: options/theme-options.php:3417 options/theme-options.php:3425 +#: options/theme-options.php:3433 options/theme-options.php:3441 msgid "Customize the colors" msgstr "" @@ -884,7 +884,7 @@ msgstr "" msgid "Automatically Switch to Dark Mode" msgstr "" -#: options/theme-options.php:230 options/theme-options.php:1411 +#: options/theme-options.php:230 options/theme-options.php:1427 msgid "Default on" msgstr "" @@ -917,7 +917,7 @@ msgid "Dark Mode Image Brightness" msgstr "" #: options/theme-options.php:259 options/theme-options.php:270 -#: options/theme-options.php:1491 +#: options/theme-options.php:1507 msgid "Slide to adjust, the recommended value range is 0.6-0.8" msgstr "" @@ -982,7 +982,7 @@ msgstr "" msgid "Text Font Size" msgstr "" -#: options/theme-options.php:344 options/theme-options.php:1553 +#: options/theme-options.php:344 options/theme-options.php:1569 msgid "Slide to adjust, the recommended value range is 15-18" msgstr "" @@ -1056,7 +1056,7 @@ msgid "Nav Menu Radius" msgstr "" #: options/theme-options.php:445 options/theme-options.php:548 -#: options/theme-options.php:2317 +#: options/theme-options.php:2333 msgid "Slide to adjust, the recommended value is 15" msgstr "" @@ -1090,7 +1090,7 @@ msgstr "" msgid "Nav Menu Animation Time" msgstr "" -#: options/theme-options.php:476 options/theme-options.php:1452 +#: options/theme-options.php:476 options/theme-options.php:1468 msgid "Slide to adjust, the recommended value range is 1-2" msgstr "" @@ -1343,130 +1343,140 @@ msgid "QQ Music(may not be available)" msgstr "" #: options/theme-options.php:862 -msgid "Footer Online Music Player Proxy" +msgid "Use custom Meting API or playlist" msgstr "" #: options/theme-options.php:864 msgid "" +"Enter a custom Meting-api, which can also point to a playlist file. However, the " +"ID will only be effective if the playlist is specified" +msgstr "" + +#: options/theme-options.php:870 +msgid "Footer Online Music Player Proxy" +msgstr "" + +#: options/theme-options.php:872 +msgid "" "Ex. http://127.0.0.1:8080. Reference: https://curl.se/libcurl/c/CURLOPT_PROXY.html" msgstr "" -#: options/theme-options.php:871 +#: options/theme-options.php:879 msgid "Footer Online Music Player Songlist ID" msgstr "" -#: options/theme-options.php:873 +#: options/theme-options.php:881 msgid "" "Fill in the song ID, e.g. https://music.163.com/#/playlist?id=5380675133 " "SongID:5380675133" msgstr "" -#: options/theme-options.php:880 +#: options/theme-options.php:888 msgid "Footer Online Music Player Mode" msgstr "" -#: options/theme-options.php:882 +#: options/theme-options.php:890 msgid "Select music player mode" msgstr "" -#: options/theme-options.php:884 +#: options/theme-options.php:892 msgid "List" msgstr "" -#: options/theme-options.php:885 +#: options/theme-options.php:893 msgid "Random" msgstr "" -#: options/theme-options.php:893 +#: options/theme-options.php:901 msgid "Footer Online Music Player Preload" msgstr "" -#: options/theme-options.php:895 +#: options/theme-options.php:903 msgid "Whether to preload songs" msgstr "" -#: options/theme-options.php:898 +#: options/theme-options.php:906 msgid "Preload Metadata" msgstr "" -#: options/theme-options.php:907 +#: options/theme-options.php:915 msgid "Default Volume of Footer Online Music Player" msgstr "" -#: options/theme-options.php:909 +#: options/theme-options.php:917 msgid "Slide to adjust, the recommended sliding value range is 0.4-0.6" msgstr "" -#: options/theme-options.php:918 +#: options/theme-options.php:926 msgid "Netease Cloud Music Cookies" msgstr "" -#: options/theme-options.php:920 +#: options/theme-options.php:928 msgid "" "If you want to play VIP music on Netease Cloud Music Platform, please fill in " "your account cookies in this option." msgstr "" -#: options/theme-options.php:926 +#: options/theme-options.php:934 msgid "Footer Sakura Icon" msgstr "" -#: options/theme-options.php:927 +#: options/theme-options.php:935 msgid "Enabled by default, sakura icon will appear on the footer" msgstr "" -#: options/theme-options.php:934 +#: options/theme-options.php:942 msgid "Footer Info" msgstr "" -#: options/theme-options.php:935 +#: options/theme-options.php:943 msgid "Footer description text, supports HTML code" msgstr "" -#: options/theme-options.php:942 +#: options/theme-options.php:950 msgid "Footer Text Font" msgstr "" -#: options/theme-options.php:950 +#: options/theme-options.php:958 msgid "Footer Load Occupancy Query" msgstr "" -#: options/theme-options.php:951 +#: options/theme-options.php:959 msgid "" "Load occupancy information will appear at the end of the page after turning it " "on. Not recommended in production environment." msgstr "" -#: options/theme-options.php:958 +#: options/theme-options.php:966 msgid "Footer Upyun League Logo" msgstr "" -#: options/theme-options.php:959 +#: options/theme-options.php:967 msgid "Upyun Logo will appear at the end of the page after turning it on" msgstr "" -#: options/theme-options.php:967 +#: options/theme-options.php:975 msgid "Footer Addition" msgstr "" -#: options/theme-options.php:968 +#: options/theme-options.php:976 msgid "" "Add HTML code at the end of the page. Useful for adding customize JavaScript." msgstr "" -#: options/theme-options.php:973 +#: options/theme-options.php:981 msgid "Hitokoto" msgstr "" -#: options/theme-options.php:979 +#: options/theme-options.php:987 msgid "Footer Hitokoto" msgstr "" -#: options/theme-options.php:980 +#: options/theme-options.php:988 msgid "Hitokoto will appear at the end of the page after turning it on" msgstr "" -#: options/theme-options.php:987 +#: options/theme-options.php:995 msgid "" "

Hitokoto API Setup Instructions

Fill in as the example: " "[\"https://api.nmxc.ltd/yiyan/\", \"https://v1.hitokoto.cn/\"], where the " @@ -1479,663 +1489,674 @@ msgid "" "nmxc.ltd/yiyan/

" msgstr "" -#: options/theme-options.php:996 +#: options/theme-options.php:1004 msgid "Hitokoto API address" msgstr "" -#: options/theme-options.php:998 +#: options/theme-options.php:1006 msgid "Fill in the address in JavaScript array format" msgstr "" -#: options/theme-options.php:1007 +#: options/theme-options.php:1015 msgid "Cursor Options" msgstr "" -#: options/theme-options.php:1014 +#: options/theme-options.php:1022 msgid "" "You can click here to learn how to set the options " "on this page" msgstr "" -#: options/theme-options.php:1020 +#: options/theme-options.php:1028 msgid "Standard Cursor Style" msgstr "" -#: options/theme-options.php:1021 +#: options/theme-options.php:1029 msgid "Apply to global, fill in \".cur\" mouse file link" msgstr "" -#: options/theme-options.php:1028 +#: options/theme-options.php:1036 msgid "Selected Cursor Style" msgstr "" -#: options/theme-options.php:1029 +#: options/theme-options.php:1037 msgid "Apply to multiple styles, fill in \".cur\" file link" msgstr "" -#: options/theme-options.php:1036 +#: options/theme-options.php:1044 msgid "Selected Control Unit Cursor Style" msgstr "" -#: options/theme-options.php:1037 +#: options/theme-options.php:1045 msgid "Apply to selected control unit, fill in \".cur\" file link" msgstr "" -#: options/theme-options.php:1044 +#: options/theme-options.php:1052 msgid "Selected Text Cursor Style" msgstr "" -#: options/theme-options.php:1045 +#: options/theme-options.php:1053 msgid "Apply to selected text, fill in \".cur\" file link" msgstr "" -#: options/theme-options.php:1052 +#: options/theme-options.php:1060 msgid "Work Status Cursor Style" msgstr "" -#: options/theme-options.php:1053 +#: options/theme-options.php:1061 msgid "Apply to load control unit, fill in \".cur\" file link" msgstr "" -#: options/theme-options.php:1062 +#: options/theme-options.php:1070 msgid "Additional Options" msgstr "" -#: options/theme-options.php:1069 +#: options/theme-options.php:1077 msgid "" "You can click here to learn how to set the options " "on this page" msgstr "" -#: options/theme-options.php:1074 +#: options/theme-options.php:1082 msgid "Effects&Animations" msgstr "" -#: options/theme-options.php:1080 +#: options/theme-options.php:1088 msgid "Preload Animation" msgstr "" -#: options/theme-options.php:1081 +#: options/theme-options.php:1089 msgid "" "Preload animation before new pages load; To enable this option, ensure your page " "resources can load properly." msgstr "" -#: options/theme-options.php:1088 +#: options/theme-options.php:1096 msgid "Preload Animation Color A" msgstr "" -#: options/theme-options.php:1097 +#: options/theme-options.php:1105 msgid "Preload Animation Color B" msgstr "" -#: options/theme-options.php:1105 +#: options/theme-options.php:1113 msgid "Preload Animation Blur Transition Effect" msgstr "" -#: options/theme-options.php:1107 +#: options/theme-options.php:1115 msgid "Blur transition duration in milliseconds ms, off when set to 0." msgstr "" -#: options/theme-options.php:1117 +#: options/theme-options.php:1125 msgid "Sakura Falling Effects" msgstr "" -#: options/theme-options.php:1120 +#: options/theme-options.php:1128 msgid "Native Quantity" msgstr "" -#: options/theme-options.php:1121 +#: options/theme-options.php:1129 msgid "Quarter Quantity" msgstr "" -#: options/theme-options.php:1122 +#: options/theme-options.php:1130 msgid "Half Quantity" msgstr "" -#: options/theme-options.php:1123 +#: options/theme-options.php:1131 msgid "Less Quantity" msgstr "" -#: options/theme-options.php:1131 +#: options/theme-options.php:1139 msgid "Particles Effects" msgstr "" -#: options/theme-options.php:1133 +#: options/theme-options.php:1141 msgid "" "Particles effects will appear in the global background. Please open the Cover-and-" "Frontend-Background-Integration Options to get the best experience" msgstr "" -#: options/theme-options.php:1141 +#: options/theme-options.php:1149 msgid "Particles JSON" msgstr "" -#: options/theme-options.php:1143 +#: options/theme-options.php:1151 msgid "" "You can go to the Project " "Address to generate your unique Particles Effects" msgstr "" -#: options/theme-options.php:1260 +#: options/theme-options.php:1268 msgid "Note Touch Effects" msgstr "" -#: options/theme-options.php:1261 +#: options/theme-options.php:1269 msgid "" "After turning on, there will be a note sound alert when the back to top button " "and Mashiro style logo touch" msgstr "" -#: options/theme-options.php:1267 +#: options/theme-options.php:1275 msgid "Feature" msgstr "" -#: options/theme-options.php:1273 +#: options/theme-options.php:1281 msgid "PJAX Partial Refresh" msgstr "" -#: options/theme-options.php:1274 +#: options/theme-options.php:1282 msgid "Enabled by default, clicking to a new page will not require reloading" msgstr "" -#: options/theme-options.php:1281 +#: options/theme-options.php:1289 +msgid "Resources that still need refreshing in the footer after enabling PJAX" +msgstr "" + +#: options/theme-options.php:1291 +msgid "" +"After enabling PJAX, custom content in the footer will not be refreshed on page " +"navigation. You can specify paths for JavaScript and stylesheet resources that " +"need to be reloaded on each page in the footer here, one per line. These " +"resources will be reloaded once PJAX completes content loading." +msgstr "" + +#: options/theme-options.php:1297 msgid "NProgress Loading Progress Bar" msgstr "" -#: options/theme-options.php:1282 +#: options/theme-options.php:1298 msgid "Enabled by default, when loading page there will be a progress bar alert" msgstr "" -#: options/theme-options.php:1289 +#: options/theme-options.php:1305 msgid "Global Smooth Scroll" msgstr "" -#: options/theme-options.php:1290 +#: options/theme-options.php:1306 msgid "Enabled by default, page scrolling will be smoother" msgstr "" -#: options/theme-options.php:1297 +#: options/theme-options.php:1313 msgid "Captcha Selection" msgstr "" -#: options/theme-options.php:1300 +#: options/theme-options.php:1316 msgid "Theme Built in Captcha" msgstr "" -#: options/theme-options.php:1301 +#: options/theme-options.php:1317 msgid "Vaptcha" msgstr "" -#: options/theme-options.php:1309 +#: options/theme-options.php:1325 msgid "Vaptcha VID" msgstr "" -#: options/theme-options.php:1311 +#: options/theme-options.php:1327 msgid "Fill in your Vaptcha VID" msgstr "" -#: options/theme-options.php:1317 +#: options/theme-options.php:1333 msgid "Vaptcha KEY" msgstr "" -#: options/theme-options.php:1319 +#: options/theme-options.php:1335 msgid "Fill in your Vaptcha KEY" msgstr "" -#: options/theme-options.php:1325 +#: options/theme-options.php:1341 msgid "Vaptcha Scene" msgstr "" -#: options/theme-options.php:1341 +#: options/theme-options.php:1357 msgid "Pagination Mode" msgstr "" -#: options/theme-options.php:1343 +#: options/theme-options.php:1359 msgid "Ajax Load" msgstr "" -#: options/theme-options.php:1344 +#: options/theme-options.php:1360 msgid "Page Up/Down" msgstr "" -#: options/theme-options.php:1352 +#: options/theme-options.php:1368 msgid "Next Page Auto Load" msgstr "" -#: options/theme-options.php:1355 +#: options/theme-options.php:1371 msgid "0 Sec" msgstr "" -#: options/theme-options.php:1356 +#: options/theme-options.php:1372 msgid "1 Sec" msgstr "" -#: options/theme-options.php:1357 +#: options/theme-options.php:1373 msgid "2 Sec" msgstr "" -#: options/theme-options.php:1358 +#: options/theme-options.php:1374 msgid "3 Sec" msgstr "" -#: options/theme-options.php:1359 +#: options/theme-options.php:1375 msgid "4 Sec" msgstr "" -#: options/theme-options.php:1360 +#: options/theme-options.php:1376 msgid "5 Sec" msgstr "" -#: options/theme-options.php:1361 +#: options/theme-options.php:1377 msgid "6 Sec" msgstr "" -#: options/theme-options.php:1362 +#: options/theme-options.php:1378 msgid "7 Sec" msgstr "" -#: options/theme-options.php:1363 +#: options/theme-options.php:1379 msgid "8 Sec" msgstr "" -#: options/theme-options.php:1364 +#: options/theme-options.php:1380 msgid "9 Sec" msgstr "" -#: options/theme-options.php:1365 +#: options/theme-options.php:1381 msgid "10 Sec" msgstr "" -#: options/theme-options.php:1366 +#: options/theme-options.php:1382 msgid "do not autoload" msgstr "" -#: options/theme-options.php:1374 +#: options/theme-options.php:1390 msgid "Placeholder SVG when loading the next page" msgstr "" -#: options/theme-options.php:1375 +#: options/theme-options.php:1391 msgid "" "Fill in the address, this is the SVG that will be displayed as a placeholder when " "the next page is loading" msgstr "" -#: options/theme-options.php:1383 +#: options/theme-options.php:1399 msgid "HomePage Options" msgstr "" -#: options/theme-options.php:1389 +#: options/theme-options.php:1405 msgid "Cover Options" msgstr "" -#: options/theme-options.php:1396 +#: options/theme-options.php:1412 msgid "" "You can click here to learn how to set the options " "on this page" msgstr "" -#: options/theme-options.php:1402 +#: options/theme-options.php:1418 msgid "Cover Switch" msgstr "" -#: options/theme-options.php:1403 +#: options/theme-options.php:1419 msgid "On by default, if off, all options below will be disabled" msgstr "" -#: options/theme-options.php:1410 +#: options/theme-options.php:1426 msgid "Cover Full Screen" msgstr "" -#: options/theme-options.php:1419 +#: options/theme-options.php:1435 msgid "Cover Arc Occlusion (Below)" msgstr "" -#: options/theme-options.php:1420 +#: options/theme-options.php:1436 msgid "An arc occlusion will appear below the cover when turned on" msgstr "" -#: options/theme-options.php:1431 +#: options/theme-options.php:1447 msgid "Cover Radius" msgstr "" -#: options/theme-options.php:1432 +#: options/theme-options.php:1448 msgid "Slide to adjust, the recommended value range is 15-20" msgstr "" -#: options/theme-options.php:1442 +#: options/theme-options.php:1458 msgid "Cover Animation" msgstr "" -#: options/theme-options.php:1443 +#: options/theme-options.php:1459 msgid "On by default, if off, the cover will be displayed directly" msgstr "" -#: options/theme-options.php:1451 +#: options/theme-options.php:1467 msgid "Cover Animation Time" msgstr "" -#: options/theme-options.php:1466 +#: options/theme-options.php:1482 msgid "Cover Info Bar" msgstr "" -#: options/theme-options.php:1467 +#: options/theme-options.php:1483 msgid "" "Enabled by default, show avatar, Mashiro effects text, signature bar, shuoshuo " "bar, social area" msgstr "" -#: options/theme-options.php:1475 +#: options/theme-options.php:1491 msgid "Cover Info Bar Style" msgstr "" -#: options/theme-options.php:1490 +#: options/theme-options.php:1506 msgid "HomePage Widget Transparency" msgstr "" -#: options/theme-options.php:1501 +#: options/theme-options.php:1517 msgid "Cover Info Bar Avatar Radius" msgstr "" -#: options/theme-options.php:1502 +#: options/theme-options.php:1518 msgid "Slide to adjust, the recommended value is 100" msgstr "" -#: options/theme-options.php:1514 +#: options/theme-options.php:1530 msgid "Cover Info Bar Rounded" msgstr "" -#: options/theme-options.php:1515 +#: options/theme-options.php:1531 msgid "Slide to adjust, the recommended value range 10-20" msgstr "" -#: options/theme-options.php:1528 +#: options/theme-options.php:1544 msgid "Cover Signature Field Text" msgstr "" -#: options/theme-options.php:1529 +#: options/theme-options.php:1545 msgid "A self-descriptive quote" msgstr "" -#: options/theme-options.php:1540 +#: options/theme-options.php:1556 msgid "Cover Signature Field Text Font" msgstr "" -#: options/theme-options.php:1552 +#: options/theme-options.php:1568 msgid "Cover Signature Field Text Font Size" msgstr "" -#: options/theme-options.php:1567 +#: options/theme-options.php:1583 msgid "Cover Signature Bar Typing Effects" msgstr "" -#: options/theme-options.php:1568 +#: options/theme-options.php:1584 msgid "" "When turned on, the signature bar text will have an additional paragraph of text " "and will be rendered with typing effects" msgstr "" -#: options/theme-options.php:1579 +#: options/theme-options.php:1595 msgid "Cover Signature Field Typing Effects Double Quotes" msgstr "" -#: options/theme-options.php:1585 +#: options/theme-options.php:1601 msgid "Typing effects will be appended with double quotes when turned on" msgstr "" -#: options/theme-options.php:1592 +#: options/theme-options.php:1608 msgid "Cover Signature Field Typing Effects Placeholder" msgstr "" -#: options/theme-options.php:1605 +#: options/theme-options.php:1621 msgid "Typed.js initial option" msgstr "" -#: options/theme-options.php:1617 +#: options/theme-options.php:1633 msgid "Cover Random Image Options" msgstr "" -#: options/theme-options.php:1619 +#: options/theme-options.php:1635 msgid "External API" msgstr "" -#: options/theme-options.php:1620 +#: options/theme-options.php:1636 msgid "Webp optimized" msgstr "" -#: options/theme-options.php:1621 +#: options/theme-options.php:1637 msgid "Local" msgstr "" -#: options/theme-options.php:1630 +#: options/theme-options.php:1646 msgid "Cover Random Image Multi-terminal Separation" msgstr "" -#: options/theme-options.php:1631 +#: options/theme-options.php:1647 msgid "" "Enabled by default, desktop and mobile devices will use separate random image " "addresses" msgstr "" -#: options/theme-options.php:1639 +#: options/theme-options.php:1655 msgid "Webp Optimization/External API Desktop Side Random Graphics Address" msgstr "" -#: options/theme-options.php:1640 options/theme-options.php:1659 +#: options/theme-options.php:1656 options/theme-options.php:1675 msgid "Fill in an URL" msgstr "" -#: options/theme-options.php:1653 +#: options/theme-options.php:1669 msgid "External API Mobile Devices Random Image Address" msgstr "" -#: options/theme-options.php:1668 +#: options/theme-options.php:1684 msgid "Cover Random Background Image Cache" msgstr "" -#: options/theme-options.php:1669 +#: options/theme-options.php:1685 msgid "" "Enabled by default, this feature will cache a cover image locally, which can " "improve the loading speed of the first cover after entering the homepage. Note: " "This feature needs the cover APIs that accept cross-domain requests." msgstr "" -#: options/theme-options.php:1677 +#: options/theme-options.php:1693 msgid "Cover and Frontend Background Integration" msgstr "" -#: options/theme-options.php:1678 +#: options/theme-options.php:1694 msgid "" "When enabled, the background of the cover will be set to transparent, while the " "frontend background will use the cover's random image API" msgstr "" -#: options/theme-options.php:1686 +#: options/theme-options.php:1702 msgid "Cover Random Images Filter" msgstr "" -#: options/theme-options.php:1688 +#: options/theme-options.php:1704 msgid "No filter" msgstr "" -#: options/theme-options.php:1689 +#: options/theme-options.php:1705 msgid "Light filter" msgstr "" -#: options/theme-options.php:1690 +#: options/theme-options.php:1706 msgid "Dimmed filter" msgstr "" -#: options/theme-options.php:1691 +#: options/theme-options.php:1707 msgid "Grid filter" msgstr "" -#: options/theme-options.php:1692 +#: options/theme-options.php:1708 msgid "Dot filter" msgstr "" -#: options/theme-options.php:1701 +#: options/theme-options.php:1717 msgid "Cover Wave Effects" msgstr "" -#: options/theme-options.php:1702 +#: options/theme-options.php:1718 msgid "" "Wave effect will appear at the bottom of the cover of the home page after turning " "on, and it will be forced off in the dark mode" msgstr "" -#: options/theme-options.php:1710 +#: options/theme-options.php:1726 msgid "Cover Dropdown Arrow" msgstr "" -#: options/theme-options.php:1711 +#: options/theme-options.php:1727 msgid "Enabled by default, show a dropdown arrow at bottom of home cover" msgstr "" -#: options/theme-options.php:1719 +#: options/theme-options.php:1735 msgid "Cover Dropdown Arrow Display on Mobile Devices" msgstr "" -#: options/theme-options.php:1724 +#: options/theme-options.php:1740 msgid "" "Drop down arrow will appear at the bottom of the mobile devices' home cover after " "turning it on" msgstr "" -#: options/theme-options.php:1731 +#: options/theme-options.php:1747 msgid "Cover Dropdown Arrow Color" msgstr "" -#: options/theme-options.php:1743 +#: options/theme-options.php:1759 msgid "Cover Dropdown Arrow Color (Dark Mode)" msgstr "" -#: options/theme-options.php:1748 +#: options/theme-options.php:1764 msgid "Customize the colors, dark colors are recommended" msgstr "" -#: options/theme-options.php:1755 +#: options/theme-options.php:1771 msgid "Cover Video" msgstr "" -#: options/theme-options.php:1756 +#: options/theme-options.php:1772 msgid "Use a video instead of the images as the cover" msgstr "" -#: options/theme-options.php:1764 +#: options/theme-options.php:1780 msgid "Cover Video Loop" msgstr "" -#: options/theme-options.php:1769 +#: options/theme-options.php:1785 msgid "Video will loop automatically when enabled." msgstr "" -#: options/theme-options.php:1776 +#: options/theme-options.php:1792 msgid "Cover Video Auto Resume" msgstr "" -#: options/theme-options.php:1781 +#: options/theme-options.php:1797 msgid "" "Cover Video will resume automatically when coming back to homepage while Pjax " "enabled." msgstr "" -#: options/theme-options.php:1788 +#: options/theme-options.php:1804 msgid "Cover Video URL Base Path" msgstr "" -#: options/theme-options.php:1794 +#: options/theme-options.php:1810 msgid "" "Fill in the base path your video located at. For example: https://localhost. Your " "site's URL is used as default. Please pay attention to the protocol name of the " "URL." msgstr "" -#: options/theme-options.php:1800 +#: options/theme-options.php:1816 msgid "Cover Video File Name" msgstr "" -#: options/theme-options.php:1805 +#: options/theme-options.php:1821 msgid "" "For example: abc.mp4. Multiple videos should be separated by English commas like " "\"abc.mp4,efg.mp4,\" Random play is on by default." msgstr "" -#: options/theme-options.php:1813 +#: options/theme-options.php:1829 msgid "Cover Social Area Options" msgstr "" -#: options/theme-options.php:1820 +#: options/theme-options.php:1836 msgid "" "You can click here to learn how to set the options on this page" msgstr "" -#: options/theme-options.php:1825 +#: options/theme-options.php:1841 msgid "Related Options" msgstr "" -#: options/theme-options.php:1831 +#: options/theme-options.php:1847 msgid "Cover Social Area" msgstr "" -#: options/theme-options.php:1832 +#: options/theme-options.php:1848 msgid "" "Enabled by default, show cover random image toggle button and social network icons" msgstr "" -#: options/theme-options.php:1839 +#: options/theme-options.php:1855 msgid "Social Icon" msgstr "" -#: options/theme-options.php:1840 +#: options/theme-options.php:1856 msgid "" "Select your favorite icon pack. Icon pack references are detailed in the \"About " "Theme\" section" msgstr "" -#: options/theme-options.php:1854 +#: options/theme-options.php:1870 msgid "Cover Social Area Rounded Corners" msgstr "" -#: options/theme-options.php:1856 +#: options/theme-options.php:1872 msgid "Slide to adjust, the recommended value range is 10-20" msgstr "" -#: options/theme-options.php:1865 +#: options/theme-options.php:1881 msgid "Switch Button of Random Images" msgstr "" -#: options/theme-options.php:1867 +#: options/theme-options.php:1883 msgid "Enabled by default, show cover random image toggle button" msgstr "" -#: options/theme-options.php:1873 +#: options/theme-options.php:1889 msgid "Social Network" msgstr "" -#: options/theme-options.php:1879 +#: options/theme-options.php:1895 msgid "Wechat" msgstr "" -#: options/theme-options.php:1888 +#: options/theme-options.php:1904 msgid "QQ" msgstr "" -#: options/theme-options.php:1890 +#: options/theme-options.php:1906 msgid "" "Please note the format of filling out the form, e.g. tencent://message/?uin=123456" msgstr "" -#: options/theme-options.php:1896 +#: options/theme-options.php:1912 msgid "Bilibili" msgstr "" -#: options/theme-options.php:1898 options/theme-options.php:1906 #: options/theme-options.php:1914 options/theme-options.php:1922 #: options/theme-options.php:1930 options/theme-options.php:1938 #: options/theme-options.php:1946 options/theme-options.php:1954 @@ -2143,601 +2164,602 @@ msgstr "" #: options/theme-options.php:1978 options/theme-options.php:1986 #: options/theme-options.php:1994 options/theme-options.php:2002 #: options/theme-options.php:2010 options/theme-options.php:2018 -#: options/theme-options.php:2043 options/theme-options.php:2350 -#: options/theme-options.php:2376 options/theme-options.php:2402 -#: options/theme-options.php:2490 +#: options/theme-options.php:2026 options/theme-options.php:2034 +#: options/theme-options.php:2059 options/theme-options.php:2366 +#: options/theme-options.php:2392 options/theme-options.php:2418 +#: options/theme-options.php:2506 msgid "add URL" msgstr "" -#: options/theme-options.php:1904 +#: options/theme-options.php:1920 msgid "NetEase Music" msgstr "" -#: options/theme-options.php:1912 +#: options/theme-options.php:1928 msgid "Weibo" msgstr "" -#: options/theme-options.php:1920 +#: options/theme-options.php:1936 msgid "Github" msgstr "" -#: options/theme-options.php:1928 +#: options/theme-options.php:1944 msgid "Telegram" msgstr "" -#: options/theme-options.php:1936 +#: options/theme-options.php:1952 msgid "Steam" msgstr "" -#: options/theme-options.php:1944 +#: options/theme-options.php:1960 msgid "Youtube" msgstr "" -#: options/theme-options.php:1952 +#: options/theme-options.php:1968 msgid "Instagram" msgstr "" -#: options/theme-options.php:1960 +#: options/theme-options.php:1976 msgid "Tiktok" msgstr "" -#: options/theme-options.php:1968 +#: options/theme-options.php:1984 msgid "YELLOWnote" msgstr "" -#: options/theme-options.php:1976 +#: options/theme-options.php:1992 msgid "Discord" msgstr "" -#: options/theme-options.php:1984 +#: options/theme-options.php:2000 msgid "ZhiHu" msgstr "" -#: options/theme-options.php:1992 +#: options/theme-options.php:2008 msgid "Linkedin" msgstr "" -#: options/theme-options.php:2000 +#: options/theme-options.php:2016 msgid "Twitter" msgstr "" -#: options/theme-options.php:2008 +#: options/theme-options.php:2024 msgid "Facebook" msgstr "" -#: options/theme-options.php:2016 +#: options/theme-options.php:2032 msgid "Customized Social Network Ⅰ" msgstr "" -#: options/theme-options.php:2024 +#: options/theme-options.php:2040 msgid "Customized Social Network Ⅰ Title" msgstr "" -#: options/theme-options.php:2032 +#: options/theme-options.php:2048 msgid "Customized Social Network Ⅰ icon" msgstr "" -#: options/theme-options.php:2041 +#: options/theme-options.php:2057 msgid "Customized Social Network Ⅱ" msgstr "" -#: options/theme-options.php:2049 +#: options/theme-options.php:2065 msgid "Customized Social Network Ⅱ Title" msgstr "" -#: options/theme-options.php:2057 +#: options/theme-options.php:2073 msgid "Customized Social Network Ⅱ icon" msgstr "" -#: options/theme-options.php:2066 +#: options/theme-options.php:2082 msgid "Email Username" msgstr "" -#: options/theme-options.php:2068 +#: options/theme-options.php:2084 msgid "" "name@domain.com fo name, the full address can be known only when there is a js " "runtime in the frontend, you can fill in with confidence" msgstr "" -#: options/theme-options.php:2074 +#: options/theme-options.php:2090 msgid "Email Domain" msgstr "" -#: options/theme-options.php:2076 +#: options/theme-options.php:2092 msgid "name@domain.com fo domain.com" msgstr "" -#: options/theme-options.php:2084 +#: options/theme-options.php:2100 msgid "Bulletin Board and Area Title Options" msgstr "" -#: options/theme-options.php:2091 +#: options/theme-options.php:2107 msgid "" "You can click here to learn how to set the options on this page" msgstr "" -#: options/theme-options.php:2096 options/theme-options.php:2102 +#: options/theme-options.php:2112 options/theme-options.php:2118 msgid "Bulletin Board" msgstr "" -#: options/theme-options.php:2103 +#: options/theme-options.php:2119 msgid "When enabled the bulletin board will be displayed below the front cover" msgstr "" -#: options/theme-options.php:2110 +#: options/theme-options.php:2126 msgid "Bulletin Board Style" msgstr "" -#: options/theme-options.php:2113 +#: options/theme-options.php:2129 msgid "Picture Background" msgstr "" -#: options/theme-options.php:2114 +#: options/theme-options.php:2130 msgid "Color Background" msgstr "" -#: options/theme-options.php:2122 +#: options/theme-options.php:2138 msgid "Bulletin Board \"Notice\" Icon" msgstr "" -#: options/theme-options.php:2124 +#: options/theme-options.php:2140 msgid "" "The \"Notice\" icon will be displayed on the left side of the announcement bar" msgstr "" -#: options/theme-options.php:2131 +#: options/theme-options.php:2147 msgid "Bulletin Board Background" msgstr "" -#: options/theme-options.php:2136 +#: options/theme-options.php:2152 msgid "Best width 820px, best height 67px" msgstr "" -#: options/theme-options.php:2144 +#: options/theme-options.php:2160 msgid "Bulletin Board Border Color" msgstr "" -#: options/theme-options.php:2149 +#: options/theme-options.php:2165 msgid "" "Customize the colors, it is recommended to use a light color that corresponds " "with the theme color" msgstr "" -#: options/theme-options.php:2156 +#: options/theme-options.php:2172 msgid "Bulletin Board Text" msgstr "" -#: options/theme-options.php:2158 +#: options/theme-options.php:2174 msgid "Fill in the announcement text, the text beyond 142 bytes will be hidden" msgstr "" -#: options/theme-options.php:2164 +#: options/theme-options.php:2180 msgid "Bulletin Board Alignment" msgstr "" -#: options/theme-options.php:2177 +#: options/theme-options.php:2193 msgid "Bulletin Board Text Color" msgstr "" -#: options/theme-options.php:2179 options/theme-options.php:2267 -#: options/theme-options.php:2707 options/theme-options.php:2946 -#: options/theme-options.php:2954 +#: options/theme-options.php:2195 options/theme-options.php:2283 +#: options/theme-options.php:2723 options/theme-options.php:2962 +#: options/theme-options.php:2970 msgid "" "Customize the colors, suggest using a corresponding color with the background " "color" msgstr "" -#: options/theme-options.php:2185 +#: options/theme-options.php:2201 msgid "Area Title" msgstr "" -#: options/theme-options.php:2191 +#: options/theme-options.php:2207 msgid "Display Area Icon" msgstr "" -#: options/theme-options.php:2192 +#: options/theme-options.php:2208 msgid "" "Default is \"fa-solid fa-laptop\", You can check the FontAwesome Website to see the icons that " "can be filled in" msgstr "" -#: options/theme-options.php:2199 +#: options/theme-options.php:2215 msgid "Display Area Title" msgstr "" -#: options/theme-options.php:2200 +#: options/theme-options.php:2216 msgid "" "Default is \"Display\", you can change it to anything else, but of course it " "CANNOT be used as an ad! Not allowed!!!" msgstr "" -#: options/theme-options.php:2207 +#: options/theme-options.php:2223 msgid "Post Area Icon" msgstr "" -#: options/theme-options.php:2208 +#: options/theme-options.php:2224 msgid "" "Default is \"fa-regular fa-bookmark\", You can check the FontAwesome Website to see the icons that " "can be filled in" msgstr "" -#: options/theme-options.php:2215 +#: options/theme-options.php:2231 msgid "Post Area Title" msgstr "" -#: options/theme-options.php:2216 +#: options/theme-options.php:2232 msgid "" "Default is \"Article\", you can change it to anything else, but of course it " "CANNOT be used as an ad! Not allowed!!!" msgstr "" -#: options/theme-options.php:2223 +#: options/theme-options.php:2239 msgid "Area Title Font" msgstr "" -#: options/theme-options.php:2231 +#: options/theme-options.php:2247 msgid "Area Title Alignment" msgstr "" -#: options/theme-options.php:2245 options/theme-options.php:2325 +#: options/theme-options.php:2261 options/theme-options.php:2341 msgid "Display Area Options" msgstr "" -#: options/theme-options.php:2252 +#: options/theme-options.php:2268 msgid "" "You can click here to learn how " "to set the options on this page" msgstr "" -#: options/theme-options.php:2258 +#: options/theme-options.php:2274 msgid "Display Area" msgstr "" -#: options/theme-options.php:2259 +#: options/theme-options.php:2275 msgid "Enabled by default, display area is above article area" msgstr "" -#: options/theme-options.php:2266 +#: options/theme-options.php:2282 msgid "Display Area Matching Color" msgstr "" -#: options/theme-options.php:2275 +#: options/theme-options.php:2291 msgid "Display Area Style" msgstr "" -#: options/theme-options.php:2287 +#: options/theme-options.php:2303 msgid "Display Area Compatibility Mode" msgstr "" -#: options/theme-options.php:2292 +#: options/theme-options.php:2308 msgid "" "Enabled by default, this option avoids the problem of misaligned display areas" msgstr "" -#: options/theme-options.php:2299 +#: options/theme-options.php:2315 msgid "Display Area Background Color" msgstr "" -#: options/theme-options.php:2311 +#: options/theme-options.php:2327 msgid "Display Area Rounded Corners" msgstr "" -#: options/theme-options.php:2329 +#: options/theme-options.php:2345 msgid "First Display Area" msgstr "" -#: options/theme-options.php:2334 options/theme-options.php:2360 -#: options/theme-options.php:2386 +#: options/theme-options.php:2350 options/theme-options.php:2376 +#: options/theme-options.php:2402 msgid "image" msgstr "" -#: options/theme-options.php:2335 options/theme-options.php:2361 -#: options/theme-options.php:2387 +#: options/theme-options.php:2351 options/theme-options.php:2377 +#: options/theme-options.php:2403 msgid "best width 260px, best height 160px" msgstr "" -#: options/theme-options.php:2340 options/theme-options.php:2366 -#: options/theme-options.php:2392 +#: options/theme-options.php:2356 options/theme-options.php:2382 +#: options/theme-options.php:2408 msgid "title" msgstr "" -#: options/theme-options.php:2345 options/theme-options.php:2371 -#: options/theme-options.php:2397 +#: options/theme-options.php:2361 options/theme-options.php:2387 +#: options/theme-options.php:2413 msgid "description" msgstr "" -#: options/theme-options.php:2355 +#: options/theme-options.php:2371 msgid "Second Display Area" msgstr "" -#: options/theme-options.php:2381 +#: options/theme-options.php:2397 msgid "Third Display Area" msgstr "" -#: options/theme-options.php:2428 +#: options/theme-options.php:2444 msgid "Article Area Options" msgstr "" -#: options/theme-options.php:2435 +#: options/theme-options.php:2451 msgid "" "You can click here to learn how " "to set the options on this page" msgstr "" -#: options/theme-options.php:2441 +#: options/theme-options.php:2457 msgid "Article Area Meta Displays" msgstr "" -#: options/theme-options.php:2442 options/theme-options.php:2687 +#: options/theme-options.php:2458 options/theme-options.php:2703 msgid "" "You can freely select the information Meta to be displayed, this option cannot be " "set on mobile" msgstr "" -#: options/theme-options.php:2453 +#: options/theme-options.php:2469 msgid "Article Area Card Design" msgstr "" -#: options/theme-options.php:2454 +#: options/theme-options.php:2470 msgid "You can choose between letter design or ticket design" msgstr "" -#: options/theme-options.php:2465 +#: options/theme-options.php:2481 msgid "Article Area Card Ticket Design Title Style" msgstr "" -#: options/theme-options.php:2466 +#: options/theme-options.php:2482 msgid "You can choose between card style or Non-card style" msgstr "" -#: options/theme-options.php:2478 +#: options/theme-options.php:2494 msgid "Article Area Featured Image Options" msgstr "" -#: options/theme-options.php:2480 +#: options/theme-options.php:2496 msgid "Cover Random Image" msgstr "" -#: options/theme-options.php:2481 +#: options/theme-options.php:2497 msgid "External API Random Image" msgstr "" -#: options/theme-options.php:2489 +#: options/theme-options.php:2505 msgid "Article Area Featured Image External API Random Image Address" msgstr "" -#: options/theme-options.php:2498 +#: options/theme-options.php:2514 msgid "Article Area Card Rounded Corners" msgstr "" -#: options/theme-options.php:2499 +#: options/theme-options.php:2515 msgid "Slide to adjust, the recommended value range is 5-15" msgstr "" -#: options/theme-options.php:2508 +#: options/theme-options.php:2524 msgid "Article Area Card Information Meta Background Compatible" msgstr "" -#: options/theme-options.php:2509 +#: options/theme-options.php:2525 msgid "" "When enabled, information Meta will be standardized to white on black for " "compatibility with the background, increasing readability." msgstr "" -#: options/theme-options.php:2516 +#: options/theme-options.php:2532 msgid "Article Area Card Information Meta Rounded Corners" msgstr "" -#: options/theme-options.php:2517 +#: options/theme-options.php:2533 msgid "Slide to adjust, the recommended value range is 3-10" msgstr "" -#: options/theme-options.php:2526 +#: options/theme-options.php:2542 msgid "Article Area Card Title Meta Rounded Corners" msgstr "" -#: options/theme-options.php:2527 +#: options/theme-options.php:2543 msgid "Slide to adjust, the recommended value range is 0-20" msgstr "" -#: options/theme-options.php:2536 +#: options/theme-options.php:2552 msgid "Article Area Title Font Size" msgstr "" -#: options/theme-options.php:2537 +#: options/theme-options.php:2553 msgid "Slide to adjust, the recommended value range is 16-20" msgstr "" -#: options/theme-options.php:2550 +#: options/theme-options.php:2566 msgid "Page Options" msgstr "" -#: options/theme-options.php:2556 +#: options/theme-options.php:2572 msgid "Common Options" msgstr "" -#: options/theme-options.php:2563 +#: options/theme-options.php:2579 msgid "" "You can click here to learn how to set the options " "on this page" msgstr "" -#: options/theme-options.php:2569 +#: options/theme-options.php:2585 msgid "Page Style" msgstr "" -#: options/theme-options.php:2580 +#: options/theme-options.php:2596 msgid "Page Layout Style" msgstr "" -#: options/theme-options.php:2582 +#: options/theme-options.php:2598 msgid "Default Style" msgstr "" -#: options/theme-options.php:2583 +#: options/theme-options.php:2599 msgid "Github Style" msgstr "" -#: options/theme-options.php:2591 +#: options/theme-options.php:2607 msgid "Page Decoration Image" msgstr "" -#: options/theme-options.php:2592 +#: options/theme-options.php:2608 msgid "" "Enabled by default, show on article pages, standalone pages and category pages" msgstr "" -#: options/theme-options.php:2599 +#: options/theme-options.php:2615 msgid "Page Title Animation" msgstr "" -#: options/theme-options.php:2600 +#: options/theme-options.php:2616 msgid "Page title will have float-in animation when turned on" msgstr "" -#: options/theme-options.php:2607 +#: options/theme-options.php:2623 msgid "Page Title Animation Time" msgstr "" -#: options/theme-options.php:2609 +#: options/theme-options.php:2625 msgid "Slide to adjust, recommended value range is 1-2" msgstr "" -#: options/theme-options.php:2619 +#: options/theme-options.php:2635 msgid "Add Reference while copying on Pages" msgstr "" -#: options/theme-options.php:2620 +#: options/theme-options.php:2636 msgid "" "Enabled by default. When copying text content over 30 bytes, a reference in APA-" "style will be appended to the copying text." msgstr "" -#: options/theme-options.php:2627 +#: options/theme-options.php:2643 msgid "Page LazyLoad" msgstr "" -#: options/theme-options.php:2628 +#: options/theme-options.php:2644 msgid "" "LazyLoad effect for page images, WordPress block editor already comes with " "similar effect, not recommended to turn on" msgstr "" -#: options/theme-options.php:2635 +#: options/theme-options.php:2651 msgid "Page LazyLoad Placeholder SVG" msgstr "" -#: options/theme-options.php:2637 +#: options/theme-options.php:2653 msgid "" "Fill in the address, this is the placeholder image that will be displayed when " "the page LazyLoad is being loaded" msgstr "" -#: options/theme-options.php:2644 +#: options/theme-options.php:2660 msgid "Page Image Placeholder SVG" msgstr "" -#: options/theme-options.php:2645 +#: options/theme-options.php:2661 msgid "" "Fill address, this is the SVG that will be displayed as a placeholder when the " "page image is being loaded" msgstr "" -#: options/theme-options.php:2654 +#: options/theme-options.php:2670 msgid "Article Page Options" msgstr "" -#: options/theme-options.php:2661 +#: options/theme-options.php:2677 msgid "" "You can click here to learn how " "to set the options on this page" msgstr "" -#: options/theme-options.php:2667 +#: options/theme-options.php:2683 msgid "Article Page Title Font Size" msgstr "" -#: options/theme-options.php:2668 +#: options/theme-options.php:2684 msgid "" "Slide to adjust, recommended value range is 28-36. This option is only available " "for article pages that have a featured image set" msgstr "" -#: options/theme-options.php:2678 +#: options/theme-options.php:2694 msgid "Article Page Title Underline Animation" msgstr "" -#: options/theme-options.php:2679 +#: options/theme-options.php:2695 msgid "" "Article title will have underline animation when this is enabled and article has " "a featured image set" msgstr "" -#: options/theme-options.php:2686 +#: options/theme-options.php:2702 msgid "Display Article Meta before the Contents" msgstr "" -#: options/theme-options.php:2698 +#: options/theme-options.php:2714 msgid "Article Page Auto Show Menu" msgstr "" -#: options/theme-options.php:2699 +#: options/theme-options.php:2715 msgid "" "Enabled by default, the article page will automatically show the menu. PHP " "extension \"DOM\" is required for this feature." msgstr "" -#: options/theme-options.php:2706 +#: options/theme-options.php:2722 msgid "Inline Code Background Color" msgstr "" -#: options/theme-options.php:2714 +#: options/theme-options.php:2730 msgid "Inline Code Background Color In Dark Mode" msgstr "" -#: options/theme-options.php:2715 +#: options/theme-options.php:2731 msgid "" "Customize the colors, suggest using a corresponding color with the background " "color,this color is only displayed in dark mode" msgstr "" -#: options/theme-options.php:2721 +#: options/theme-options.php:2737 msgid "Article Expansion Area" msgstr "" -#: options/theme-options.php:2727 +#: options/theme-options.php:2743 msgid "Article Page Function Bar" msgstr "" -#: options/theme-options.php:2728 +#: options/theme-options.php:2744 msgid "" "Enabled by default, will be displayed on the article page with the features " "enabled below" msgstr "" -#: options/theme-options.php:2735 +#: options/theme-options.php:2751 msgid "Article License" msgstr "" -#: options/theme-options.php:2737 +#: options/theme-options.php:2753 msgid "" "Enabled by default, Article license will appear on the function bar. License can " "also be selected by custom metadata \"license\"." msgstr "" -#: options/theme-options.php:2739 +#: options/theme-options.php:2755 msgid "Not Display" msgstr "" -#: options/theme-options.php:2754 +#: options/theme-options.php:2770 msgid "" "

\"BY\" means reusers should give credit to the creator

\"NC\" means no commercial use

\"ND\"" msgstr "" -#: options/theme-options.php:2770 +#: options/theme-options.php:2786 msgid "Article Page Appreciation Function (Alipay QR Code)" msgstr "" -#: options/theme-options.php:2772 +#: options/theme-options.php:2788 msgid "Upload Alipay Receipt QR Code Image" msgstr "" -#: options/theme-options.php:2779 +#: options/theme-options.php:2795 msgid "Article Page Appreciation Function (Wechat QR Code)" msgstr "" -#: options/theme-options.php:2781 +#: options/theme-options.php:2797 msgid "Upload WeChat Receipt QR Code Image" msgstr "" -#: options/theme-options.php:2788 +#: options/theme-options.php:2804 msgid "Article Page Author Avatar" msgstr "" -#: options/theme-options.php:2790 +#: options/theme-options.php:2806 msgid "Enabled by default, Author avatar will appear on the function bar" msgstr "" -#: options/theme-options.php:2797 +#: options/theme-options.php:2813 msgid "Article Page Author Name" msgstr "" -#: options/theme-options.php:2799 +#: options/theme-options.php:2815 msgid "Author name will appear on the function bar when enabled" msgstr "" -#: options/theme-options.php:2806 +#: options/theme-options.php:2822 msgid "Article Page Author Signature" msgstr "" -#: options/theme-options.php:2808 +#: options/theme-options.php:2824 msgid "Enabled by default, Author signature will appear on the function bar" msgstr "" -#: options/theme-options.php:2815 +#: options/theme-options.php:2831 msgid "Article Last Update Time" msgstr "" -#: options/theme-options.php:2817 +#: options/theme-options.php:2833 msgid "Article last update time will appear on the function bar when enabled" msgstr "" -#: options/theme-options.php:2824 +#: options/theme-options.php:2840 msgid "Article Tag" msgstr "" -#: options/theme-options.php:2826 +#: options/theme-options.php:2842 msgid "Enabled by default, Article tag will appear on the function bar" msgstr "" -#: options/theme-options.php:2833 +#: options/theme-options.php:2849 msgid "Article Page Prev/Next Article Switcher" msgstr "" -#: options/theme-options.php:2834 +#: options/theme-options.php:2850 msgid "" "Enabled by default, the previous and next article switch will appear on the " "article pages" msgstr "" -#: options/theme-options.php:2843 +#: options/theme-options.php:2859 msgid "Template Page Options" msgstr "" -#: options/theme-options.php:2850 +#: options/theme-options.php:2866 msgid "" "You can click here to learn how " "to set the options on this page" msgstr "" -#: options/theme-options.php:2855 +#: options/theme-options.php:2871 msgid "Public Settings" msgstr "" -#: options/theme-options.php:2861 +#: options/theme-options.php:2877 msgid "Template Page Title Font Size" msgstr "" -#: options/theme-options.php:2862 +#: options/theme-options.php:2878 msgid "" "Slide to adjust, recommended value range is 36-48. This option is only available " "for template pages with featured images already set" msgstr "" -#: options/theme-options.php:2871 +#: options/theme-options.php:2887 msgid "Bangumi Template Settings" msgstr "" -#: options/theme-options.php:2877 +#: options/theme-options.php:2893 msgid "Bangumi Template Source" msgstr "" -#: options/theme-options.php:2888 +#: options/theme-options.php:2904 msgid "My Anime List Username" msgstr "" -#: options/theme-options.php:2890 +#: options/theme-options.php:2906 msgid "Username on https://myanimelist.net/" msgstr "" -#: options/theme-options.php:2897 +#: options/theme-options.php:2913 msgid "My Anime List Sort" msgstr "" -#: options/theme-options.php:2900 +#: options/theme-options.php:2916 msgid "Status and Last Updated" msgstr "" -#: options/theme-options.php:2901 +#: options/theme-options.php:2917 msgid "Last Updated" msgstr "" -#: options/theme-options.php:2902 +#: options/theme-options.php:2918 msgid "Status" msgstr "" -#: options/theme-options.php:2910 +#: options/theme-options.php:2926 msgid "Bilibili Account UID" msgstr "" -#: options/theme-options.php:2911 +#: options/theme-options.php:2927 msgid "" "Fill in your account ID, e.g. https://space.bilibili.com/13972644/, just the " "number part \"13972644\"" msgstr "" -#: options/theme-options.php:2919 +#: options/theme-options.php:2935 msgid "Bilibili Account Cookies" msgstr "" -#: options/theme-options.php:2920 +#: options/theme-options.php:2936 msgid "" "Fill in your account cookies, F12 to open your browser web panel, go to your " "bilibili homepage to get cookies. If left empty, it will not show the progress of " "catching up bangumis" msgstr "" -#: options/theme-options.php:2927 +#: options/theme-options.php:2943 msgid "Friend Link Template Settings" msgstr "" -#: options/theme-options.php:2933 +#: options/theme-options.php:2949 msgid "Friend Link Template Unit Alignment" msgstr "" -#: options/theme-options.php:2945 +#: options/theme-options.php:2961 msgid "Friend Link Template Unit Matching Color" msgstr "" -#: options/theme-options.php:2953 +#: options/theme-options.php:2969 msgid "Friend Link Template Unit Border Shadow Color" msgstr "" -#: options/theme-options.php:2961 +#: options/theme-options.php:2977 msgid "Friend Link Sorting Mode" msgstr "" -#: options/theme-options.php:2962 +#: options/theme-options.php:2978 msgid "Select the friend link sorting mode, \"Name\" is used by Default." msgstr "" -#: options/theme-options.php:2964 +#: options/theme-options.php:2980 msgid "Name" msgstr "" -#: options/theme-options.php:2965 +#: options/theme-options.php:2981 msgid "Rating" msgstr "" -#: options/theme-options.php:2966 +#: options/theme-options.php:2982 msgid "Updated" msgstr "" -#: options/theme-options.php:2967 +#: options/theme-options.php:2983 msgid "Rand" msgstr "" -#: options/theme-options.php:2975 +#: options/theme-options.php:2991 msgid "Ascending OR Descending" msgstr "" -#: options/theme-options.php:2976 +#: options/theme-options.php:2992 msgid "Order friend link in ascending or descending." msgstr "" -#: options/theme-options.php:2979 +#: options/theme-options.php:2995 msgid "Ascending" msgstr "" -#: options/theme-options.php:2980 +#: options/theme-options.php:2996 msgid "Descending" msgstr "" -#: options/theme-options.php:2987 +#: options/theme-options.php:3003 msgid "Login Template Settings" msgstr "" -#: options/theme-options.php:2993 +#: options/theme-options.php:3009 msgid "Login Template Registration Function" msgstr "" -#: options/theme-options.php:2994 +#: options/theme-options.php:3010 msgid "Login template will allow registration when enabled" msgstr "" -#: options/theme-options.php:3003 +#: options/theme-options.php:3019 msgid "Comment-related Options" msgstr "" -#: options/theme-options.php:3010 +#: options/theme-options.php:3026 msgid "" "You can click here to learn how " "to set the options on this page" msgstr "" -#: options/theme-options.php:3015 +#: options/theme-options.php:3031 msgid "Comment Area Style" msgstr "" -#: options/theme-options.php:3021 +#: options/theme-options.php:3037 msgid "Page Comment Area Display" msgstr "" -#: options/theme-options.php:3022 +#: options/theme-options.php:3038 msgid "You can choose to expand or shirink the content of the comment area" msgstr "" -#: options/theme-options.php:3024 +#: options/theme-options.php:3040 msgid "Expand" msgstr "" -#: options/theme-options.php:3025 +#: options/theme-options.php:3041 msgid "Shrink" msgstr "" -#: options/theme-options.php:3033 +#: options/theme-options.php:3049 msgid "Page Comment Area Bottom Right Background Image" msgstr "" -#: options/theme-options.php:3034 +#: options/theme-options.php:3050 msgid "If this option is blank, there will be no image, no best recommendation here" msgstr "" -#: options/theme-options.php:3040 +#: options/theme-options.php:3056 msgid "Comment Area Function" msgstr "" -#: options/theme-options.php:3046 +#: options/theme-options.php:3062 msgid "Comment Area Emoticon" msgstr "" -#: options/theme-options.php:3047 +#: options/theme-options.php:3063 msgid "" "Select the emoticons to be displayed in the comment area input box. Uncheck all " "to turn off the comment input box emoticon function." msgstr "" -#: options/theme-options.php:3050 +#: options/theme-options.php:3066 msgid "BiliBili Emoticon Pack" msgstr "" -#: options/theme-options.php:3051 +#: options/theme-options.php:3067 msgid "Baidu Tieba Emoticon Pack" msgstr "" -#: options/theme-options.php:3052 +#: options/theme-options.php:3068 msgid "Emoji" msgstr "" -#: options/theme-options.php:3053 +#: options/theme-options.php:3069 msgid "Customized Emoticon Pack" msgstr "" -#: options/theme-options.php:3061 +#: options/theme-options.php:3077 msgid "Customized Emoticon Column Name" msgstr "" -#: options/theme-options.php:3062 +#: options/theme-options.php:3078 msgid "" "It is recommended to enter less than 4 Chinese characters in length to avoid " "causing compatibility issues on mobile terminals." msgstr "" -#: options/theme-options.php:3070 +#: options/theme-options.php:3086 msgid "Path To Custom Expression" msgstr "" -#: options/theme-options.php:3071 +#: options/theme-options.php:3087 msgid "" "Click here updating emoticon list. Specific usage reference: Comment related settings" msgstr "" -#: options/theme-options.php:3078 +#: options/theme-options.php:3094 msgid "Custom Emoticon Proxy Address" msgstr "" -#: options/theme-options.php:3079 +#: options/theme-options.php:3095 msgid "" "Fill in the CDN address of the emoticon image. If left blank, the CDN proxy " "function will not be enabled." msgstr "" -#: options/theme-options.php:3089 +#: options/theme-options.php:3105 msgid "Page Comment Area UA Info" msgstr "" -#: options/theme-options.php:3090 +#: options/theme-options.php:3106 msgid "" "When enabled, the page comment area will display the user’s browser, operating " "system information" msgstr "" -#: options/theme-options.php:3097 +#: options/theme-options.php:3113 msgid "Page Comment Area Location Information" msgstr "" -#: options/theme-options.php:3098 +#: options/theme-options.php:3114 msgid "" "When enabled, the page comment area will show the user’s location information" msgstr "" -#: options/theme-options.php:3105 +#: options/theme-options.php:3121 msgid "Management Page Displays Location Information" msgstr "" -#: options/theme-options.php:3106 +#: options/theme-options.php:3122 msgid "" "When enabled, the commenter's IP geographical location information will be " "displayed on the comment management page" msgstr "" -#: options/theme-options.php:3113 +#: options/theme-options.php:3129 msgid "Location Information Persistence" msgstr "" -#: options/theme-options.php:3114 +#: options/theme-options.php:3130 msgid "" "When enabled, the commenter's IP geographical location information will be stored " "in the database" msgstr "" -#: options/theme-options.php:3121 +#: options/theme-options.php:3137 msgid "API To Parse Geographical Location" msgstr "" -#: options/theme-options.php:3123 +#: options/theme-options.php:3139 msgid "Theme Official" msgstr "" -#: options/theme-options.php:3124 +#: options/theme-options.php:3140 msgid "IP—API" msgstr "" -#: options/theme-options.php:3125 +#: options/theme-options.php:3141 msgid "All" msgstr "" -#: options/theme-options.php:3133 +#: options/theme-options.php:3149 msgid "" "

Theme Official:Official API of the theme

IP-API:" "Provided by ip-api." @@ -3129,583 +3151,583 @@ msgid "" "for fallback

" msgstr "" -#: options/theme-options.php:3141 +#: options/theme-options.php:3157 msgid "Private Comment Function" msgstr "" -#: options/theme-options.php:3142 +#: options/theme-options.php:3158 msgid "" "When enabled, users are allowed to set their comments to be invisible to others" msgstr "" -#: options/theme-options.php:3149 +#: options/theme-options.php:3165 msgid "Page Comment Area Bot Verification" msgstr "" -#: options/theme-options.php:3150 +#: options/theme-options.php:3166 msgid "After turning on user comments need to be verified before posting" msgstr "" -#: options/theme-options.php:3157 +#: options/theme-options.php:3173 msgid "QQ Avatar Link Encryption" msgstr "" -#: options/theme-options.php:3160 +#: options/theme-options.php:3176 msgid "Redirect (low security)" msgstr "" -#: options/theme-options.php:3161 +#: options/theme-options.php:3177 msgid "Get avatar data in the backend (medium security)" msgstr "" -#: options/theme-options.php:3162 +#: options/theme-options.php:3178 msgid "Parse avatar interface in the backend (high security, slow)" msgstr "" -#: options/theme-options.php:3170 +#: options/theme-options.php:3186 msgid "Page Comment Area Upload Image Interface" msgstr "" -#: options/theme-options.php:3184 +#: options/theme-options.php:3200 msgid "Imgur Client ID" msgstr "" -#: options/theme-options.php:3186 +#: options/theme-options.php:3202 msgid "" "Fill in Client ID here, to register please visit https://api.imgur.com/oauth2/" "addclient" msgstr "" -#: options/theme-options.php:3192 +#: options/theme-options.php:3208 msgid "Imgur Upload Proxy" msgstr "" -#: options/theme-options.php:3194 +#: options/theme-options.php:3210 msgid "" "The proxy used by the backend when uploading images to Imgur. You can refer to " "the tutorial: https://2heng.xin/2018/06/06/javascript-upload-images-with-imgur-" "api/" msgstr "" -#: options/theme-options.php:3201 +#: options/theme-options.php:3217 msgid "SM.MS Secret Token" msgstr "" -#: options/theme-options.php:3203 +#: options/theme-options.php:3219 msgid "Fill in your Key here, to get it please visit https://sm.ms/home/apitoken" msgstr "" -#: options/theme-options.php:3209 +#: options/theme-options.php:3225 msgid "Chevereto API v1 Key" msgstr "" -#: options/theme-options.php:3211 +#: options/theme-options.php:3227 msgid "" "Fill in the Key here, to get please visit your Chevereto home page address/" "dashboard/settings/api" msgstr "" -#: options/theme-options.php:3217 +#: options/theme-options.php:3233 msgid "Chevereto Address" msgstr "" -#: options/theme-options.php:3219 +#: options/theme-options.php:3235 msgid "" "Your Chevereto home page address. Please note that there is no \"/\" at the end, " "e.g. https://your.cherverto.com" msgstr "" -#: options/theme-options.php:3225 +#: options/theme-options.php:3241 msgid "Lsky Pro v1 Token" msgstr "" -#: options/theme-options.php:3227 +#: options/theme-options.php:3243 msgid "" "Fill in the Token here, Please note that there is no \"Bearer \" at first, to get " "please visit your Lsky Pro home page address/api" msgstr "" -#: options/theme-options.php:3233 +#: options/theme-options.php:3249 msgid "Lsky Pro Address" msgstr "" -#: options/theme-options.php:3235 +#: options/theme-options.php:3251 msgid "" "Your Lsky Pro home page address. Please note that there is no \"/\" at the end, e." "g. https://your.lskypro.com" msgstr "" -#: options/theme-options.php:3241 +#: options/theme-options.php:3257 msgid "Comment Image Proxy" msgstr "" -#: options/theme-options.php:3242 +#: options/theme-options.php:3258 msgid "Proxy for the image displayed on the frontend" msgstr "" -#: options/theme-options.php:3249 +#: options/theme-options.php:3265 msgid "Comment Email Notification" msgstr "" -#: options/theme-options.php:3255 +#: options/theme-options.php:3271 msgid "Mail Template Featured Image" msgstr "" -#: options/theme-options.php:3256 +#: options/theme-options.php:3272 msgid "Set the background image of your reply email" msgstr "" -#: options/theme-options.php:3264 +#: options/theme-options.php:3280 msgid "Mail Template Sending Address Prefix" msgstr "" -#: options/theme-options.php:3265 +#: options/theme-options.php:3281 msgid "" "Used to send system mail. The sender address will be displayed in the user's " "mailbox, don't use Non-English Characters. The default system mail address is " "bibi@your domain" msgstr "" -#: options/theme-options.php:3272 +#: options/theme-options.php:3288 msgid "User Mail Reply Notification" msgstr "" -#: options/theme-options.php:3273 +#: options/theme-options.php:3289 msgid "" "By default WordPress will use email notifications to notify users when their " "comments receive a reply. After turning it on users are allowed to set whether to " "use email notifications when their comments receive a reply" msgstr "" -#: options/theme-options.php:3280 +#: options/theme-options.php:3296 msgid "Admin Email Reply Notification" msgstr "" -#: options/theme-options.php:3281 +#: options/theme-options.php:3297 msgid "" "Use email notifications when admin comments receive a reply after turning it on" msgstr "" -#: options/theme-options.php:3290 +#: options/theme-options.php:3306 msgid "Other Options" msgstr "" -#: options/theme-options.php:3296 +#: options/theme-options.php:3312 msgid "Login Screen and Dashboard Related Options" msgstr "" -#: options/theme-options.php:3303 +#: options/theme-options.php:3319 msgid "" "You can click here to learn how to set the options on this page" msgstr "" -#: options/theme-options.php:3308 +#: options/theme-options.php:3324 msgid "Login Screen" msgstr "" -#: options/theme-options.php:3314 +#: options/theme-options.php:3330 msgid "Custom Login Screen" msgstr "" -#: options/theme-options.php:3315 +#: options/theme-options.php:3331 msgid "Default on, custom login screen will replace the default login screen" msgstr "" -#: options/theme-options.php:3322 +#: options/theme-options.php:3338 msgid "Login Screen Background Image" msgstr "" -#: options/theme-options.php:3323 +#: options/theme-options.php:3339 msgid "" "Set your login screen background image, leave this option blank to show the " "default" msgstr "" -#: options/theme-options.php:3332 +#: options/theme-options.php:3348 msgid "Login Screen Background Blur" msgstr "" -#: options/theme-options.php:3333 +#: options/theme-options.php:3349 msgid "Login screen background image will be blurred when enabled" msgstr "" -#: options/theme-options.php:3341 +#: options/theme-options.php:3357 msgid "Login Screen Logo" msgstr "" -#: options/theme-options.php:3342 +#: options/theme-options.php:3358 msgid "Set your login screen Logo" msgstr "" -#: options/theme-options.php:3351 +#: options/theme-options.php:3367 msgid "Jump after login" msgstr "" -#: options/theme-options.php:3352 +#: options/theme-options.php:3368 msgid "Jump to backend for admins and home for users after turning on." msgstr "" -#: options/theme-options.php:3359 +#: options/theme-options.php:3375 msgid "Login Screen Language Option" msgstr "" -#: options/theme-options.php:3360 +#: options/theme-options.php:3376 msgid "Login screen language option will be display when enabled" msgstr "" -#: options/theme-options.php:3366 +#: options/theme-options.php:3382 msgid "Dashboard" msgstr "" -#: options/theme-options.php:3372 +#: options/theme-options.php:3388 msgid "Dashboard Background Image" msgstr "" -#: options/theme-options.php:3373 +#: options/theme-options.php:3389 msgid "" "Set your dashboard background image, leave this option blank to show white " "background" msgstr "" -#: options/theme-options.php:3381 +#: options/theme-options.php:3397 msgid "Dashboard Options Menu Style" msgstr "" -#: options/theme-options.php:3392 +#: options/theme-options.php:3408 msgid "Dashboard Primary Menu Color" msgstr "" -#: options/theme-options.php:3400 +#: options/theme-options.php:3416 msgid "Dashboard Secondary Menu Color" msgstr "" -#: options/theme-options.php:3408 +#: options/theme-options.php:3424 msgid "Dashboard Emphasis Color" msgstr "" -#: options/theme-options.php:3416 +#: options/theme-options.php:3432 msgid "Dashboard Button Color" msgstr "" -#: options/theme-options.php:3424 +#: options/theme-options.php:3440 msgid "Dashboard Text Color" msgstr "" -#: options/theme-options.php:3434 +#: options/theme-options.php:3450 msgid "ChatGPT Options" msgstr "" -#: options/theme-options.php:3441 +#: options/theme-options.php:3457 msgid "" "You can click here to learn how to set the options on this page" msgstr "" -#: options/theme-options.php:3447 +#: options/theme-options.php:3463 msgid "ChatGPT Function" msgstr "" -#: options/theme-options.php:3448 +#: options/theme-options.php:3464 msgid "After turning on ChatGPT Function will be available" msgstr "" -#: options/theme-options.php:3454 +#: options/theme-options.php:3470 msgid "" "" msgstr "" -#: options/theme-options.php:3462 +#: options/theme-options.php:3478 msgid "Reset to API providers' default options" msgstr "" -#: options/theme-options.php:3464 +#: options/theme-options.php:3480 msgid "Leaflow" msgstr "" -#: options/theme-options.php:3467 +#: options/theme-options.php:3483 msgid "PostChat" msgstr "" -#: options/theme-options.php:3470 +#: options/theme-options.php:3486 msgid "OpenAI" msgstr "" -#: options/theme-options.php:3501 +#: options/theme-options.php:3517 msgid "Reset successfully" msgstr "" -#: options/theme-options.php:3504 +#: options/theme-options.php:3520 msgid "Failed to reset" msgstr "" -#: options/theme-options.php:3518 +#: options/theme-options.php:3534 msgid "ChatGPT Base URL" msgstr "" -#: options/theme-options.php:3519 +#: options/theme-options.php:3535 msgid "Fill in the ChatGPT Base URL" msgstr "" -#: options/theme-options.php:3527 +#: options/theme-options.php:3543 msgid "ChatGPT API keys" msgstr "" -#: options/theme-options.php:3528 +#: options/theme-options.php:3544 msgid "" "Fill in Your ChatGPT API keys, please refer to OpenAI Website for further information." msgstr "" -#: options/theme-options.php:3535 +#: options/theme-options.php:3551 msgid "ChatGPT Article Summarize" msgstr "" -#: options/theme-options.php:3536 +#: options/theme-options.php:3552 msgid "" "After turning on, title and context of your articles will be automatically sent " "to ChatGPT to generate excerpts." msgstr "" -#: options/theme-options.php:3543 +#: options/theme-options.php:3559 msgid "" "Each update of your post will trigger a request to generate a summary. Due to " "current API limitations, if your article exceeds 4097 Token, the system will only " "send the unexceeded portion to generate a summary" msgstr "" -#: options/theme-options.php:3553 +#: options/theme-options.php:3569 msgid "Article IDs that do not Require ChatGPT Summarize" msgstr "" -#: options/theme-options.php:3554 +#: options/theme-options.php:3570 msgid "" "Those articles will never be sent to ChatGPT for excerpt generation. Split each " "id with a \",\"." msgstr "" -#: options/theme-options.php:3565 +#: options/theme-options.php:3581 msgid "ChatGPT Article Summarize Init Prompt" msgstr "" -#: options/theme-options.php:3570 +#: options/theme-options.php:3586 msgid "" "Init Prompt instructs AI how to generate summaries for your articles. Init Prompt " "will be passed to ChatGPT as \"system\" role" msgstr "" -#: options/theme-options.php:3577 +#: options/theme-options.php:3593 msgid "ChatGPT Model" msgstr "" -#: options/theme-options.php:3578 +#: options/theme-options.php:3594 msgid "" "Only models support Chat Completion API can be used. The default is \"gpt-4o-" "mini. View https://platform.openai.com/docs/models/overview for further info." msgstr "" -#: options/theme-options.php:3591 +#: options/theme-options.php:3607 msgid "ChatGPT API self test" msgstr "" -#: options/theme-options.php:3595 +#: options/theme-options.php:3611 msgid "TEST" msgstr "" -#: options/theme-options.php:3598 +#: options/theme-options.php:3614 msgid "Results: " msgstr "" -#: options/theme-options.php:3610 +#: options/theme-options.php:3626 msgid "Waiting for response..." msgstr "" -#: options/theme-options.php:3621 +#: options/theme-options.php:3637 msgid "Malformed post_id: " msgstr "" -#: options/theme-options.php:3638 +#: options/theme-options.php:3654 msgid "Low Use Options" msgstr "" -#: options/theme-options.php:3645 +#: options/theme-options.php:3661 msgid "" "You can click here to learn how to set the " "options on this page" msgstr "" -#: options/theme-options.php:3651 +#: options/theme-options.php:3667 msgid "Statistics API" msgstr "" -#: options/theme-options.php:3652 +#: options/theme-options.php:3668 msgid "" "You can choose WP-Statistics plugin statistics or theme built-in statistics to " "display" msgstr "" -#: options/theme-options.php:3654 +#: options/theme-options.php:3670 msgid "Theme Built in Statistics" msgstr "" -#: options/theme-options.php:3655 +#: options/theme-options.php:3671 msgid "WP-Statistics Plugin Statistics" msgstr "" -#: options/theme-options.php:3663 +#: options/theme-options.php:3679 msgid "Statistics display format" msgstr "" -#: options/theme-options.php:3664 +#: options/theme-options.php:3680 msgid "You can choose from four different data display formats" msgstr "" -#: options/theme-options.php:3666 +#: options/theme-options.php:3682 msgid "23333 Visits" msgstr "" -#: options/theme-options.php:3667 +#: options/theme-options.php:3683 msgid "23,333 Visits" msgstr "" -#: options/theme-options.php:3668 +#: options/theme-options.php:3684 msgid "23 333 Visits" msgstr "" -#: options/theme-options.php:3669 +#: options/theme-options.php:3685 msgid "23K Visits" msgstr "" -#: options/theme-options.php:3677 +#: options/theme-options.php:3693 msgid "Live Search" msgstr "" -#: options/theme-options.php:3678 +#: options/theme-options.php:3694 msgid "" "After turning on the live search in the frontend, call Rest API to update the " "cache once an hour. You can set the cache time manually in api.php" msgstr "" -#: options/theme-options.php:3685 +#: options/theme-options.php:3701 msgid "Live Search Comment Support" msgstr "" -#: options/theme-options.php:3687 +#: options/theme-options.php:3703 msgid "" "Enable to search for comments in live search (not recommended if site has too " "many comments)" msgstr "" -#: options/theme-options.php:3694 +#: options/theme-options.php:3710 msgid "Google Analytics Id" msgstr "" -#: options/theme-options.php:3695 +#: options/theme-options.php:3711 msgid "If you already have a plugin to handle it, please keep here empty." msgstr "" -#: options/theme-options.php:3701 +#: options/theme-options.php:3717 msgid "Custom CSS Styles" msgstr "" -#: options/theme-options.php:3702 +#: options/theme-options.php:3718 msgid "Fill in the CSS code without writing style tag" msgstr "" -#: options/theme-options.php:3709 +#: options/theme-options.php:3725 msgid "Code inserted in the header" msgstr "" -#: options/theme-options.php:3710 +#: options/theme-options.php:3726 msgid "Insert HTML code right before ." msgstr "" -#: options/theme-options.php:3716 +#: options/theme-options.php:3732 msgid "Timezone Fix" msgstr "" -#: options/theme-options.php:3717 +#: options/theme-options.php:3733 msgid "" "Slide to adjust. If the comment has a time difference problem, adjust it here, " "fill in an integer. Calculation method: actual time = time of display error - the " "integer you entered (in hours)" msgstr "" -#: options/theme-options.php:3726 +#: options/theme-options.php:3742 msgid "Gravatar Service Proxy" msgstr "" -#: options/theme-options.php:3727 +#: options/theme-options.php:3743 msgid "" "You can select multiple proxy as the Gravatar Service Proxy. By default, Tianli " "is used as the Gravatar Service Proxy." msgstr "" -#: options/theme-options.php:3729 +#: options/theme-options.php:3745 msgid "Weavatar Service" msgstr "" -#: options/theme-options.php:3730 +#: options/theme-options.php:3746 msgid "Cravatar Service" msgstr "" -#: options/theme-options.php:3731 +#: options/theme-options.php:3747 msgid "Geekzu" msgstr "" -#: options/theme-options.php:3732 +#: options/theme-options.php:3748 msgid "Loli Net" msgstr "" -#: options/theme-options.php:3733 +#: options/theme-options.php:3749 msgid "Official" msgstr "" -#: options/theme-options.php:3734 options/theme-options.php:3742 +#: options/theme-options.php:3750 options/theme-options.php:3758 msgid "Custom Proxy Address" msgstr "" -#: options/theme-options.php:3743 +#: options/theme-options.php:3759 msgid "" "Enter your Gravatar proxy address without starting with \"http(s)://\" and ending " "with \"/\". Example: gravatar.com/avatar." msgstr "" -#: options/theme-options.php:3750 +#: options/theme-options.php:3766 msgid "Lightbox" msgstr "" -#: options/theme-options.php:3756 +#: options/theme-options.php:3772 msgid "BaguetteBox Lightbox Effect" msgstr "" -#: options/theme-options.php:3757 +#: options/theme-options.php:3773 msgid "BaguetteBox will be used as the image lightbox effect when turned on" msgstr "" -#: options/theme-options.php:3769 +#: options/theme-options.php:3785 msgid "FancyBox Lightbox Effect" msgstr "" -#: options/theme-options.php:3770 +#: options/theme-options.php:3786 msgid "" "FancyBox will be used as an image lightbox effect after turning on, additional JQ " "libraries will be loaded" msgstr "" -#: options/theme-options.php:3782 +#: options/theme-options.php:3798 msgid "LightGallery Lightbox Effect" msgstr "" -#: options/theme-options.php:3783 +#: options/theme-options.php:3799 msgid "LightGallery will be used as an image lightbox effect after turning on." msgstr "" -#: options/theme-options.php:3793 +#: options/theme-options.php:3809 msgid "" "Attension: Please read License Instruction before use.
Highlight.js: Default. Automatic language recognition.

" "

Prism.js: Requires a language to be specified, see " msgstr "" -#: options/theme-options.php:3836 +#: options/theme-options.php:3852 msgid "Code Highlight Method" msgstr "" -#: options/theme-options.php:3840 +#: options/theme-options.php:3856 msgid "Custom Program" msgstr "" -#: options/theme-options.php:3848 +#: options/theme-options.php:3864 msgid "Prism.js: Add Line Number Display for All Code Blocks" msgstr "" -#: options/theme-options.php:3852 +#: options/theme-options.php:3868 msgid "" "See the plugin description " "documentation" msgstr "" -#: options/theme-options.php:3858 +#: options/theme-options.php:3874 msgid "Prism.js: Autoload Address" msgstr "" -#: options/theme-options.php:3862 +#: options/theme-options.php:3878 msgid "Leave blank to use default values" msgstr "" -#: options/theme-options.php:3869 +#: options/theme-options.php:3885 msgid "Prism.js: Code Highlight Theme" msgstr "" -#: options/theme-options.php:3870 options/theme-options.php:3881 +#: options/theme-options.php:3886 options/theme-options.php:3897 msgid "Relative to autoload address. Leave blank to use default values" msgstr "" -#: options/theme-options.php:3880 +#: options/theme-options.php:3896 msgid "Prism.js: Code Highlight Theme (Dark Mode)" msgstr "" -#: options/theme-options.php:3891 +#: options/theme-options.php:3907 msgid "" "The following Options are not recommended to be modified blindly, please use them " "under the guidance of others" msgstr "" -#: options/theme-options.php:3897 +#: options/theme-options.php:3913 msgid "Image CDN" msgstr "" -#: options/theme-options.php:3898 +#: options/theme-options.php:3914 msgid "" "Note: fill in the format https://your CDN domain/. This means that images with " "original path http://your.domain/wp-content/uploads/2018/05/xx.png will be loaded " "from http://your CDN domain/2018/05/xx.png" msgstr "" -#: options/theme-options.php:3905 +#: options/theme-options.php:3921 msgid "Articles Categories (Do not display)" msgstr "" -#: options/theme-options.php:3906 options/theme-options.php:3913 +#: options/theme-options.php:3922 options/theme-options.php:3929 msgid "Fill in category ID, seperate in English\" , \" when more than one" msgstr "" -#: options/theme-options.php:3912 +#: options/theme-options.php:3928 msgid "Image Display Category" msgstr "" -#: options/theme-options.php:3919 +#: options/theme-options.php:3935 msgid "Specify Login Address" msgstr "" -#: options/theme-options.php:3920 +#: options/theme-options.php:3936 msgid "" "Force not to use the WordPress login page address to login, fill in the new login " "page address, such as: http://www.xxx.com/login. Note that before filling in the " @@ -3822,72 +3844,72 @@ msgid "" "enter the background, etc." msgstr "" -#: options/theme-options.php:3926 +#: options/theme-options.php:3942 msgid "Specify Registration Address" msgstr "" -#: options/theme-options.php:3927 +#: options/theme-options.php:3943 msgid "" "This address is used as the registration entry on the login page, if you specify " "a login address, it is recommended to fill in" msgstr "" -#: options/theme-options.php:3933 +#: options/theme-options.php:3949 msgid "Version Control" msgstr "" -#: options/theme-options.php:3934 +#: options/theme-options.php:3950 msgid "Used to update front-end cookies and browser cache, can use any string" msgstr "" -#: options/theme-options.php:3940 +#: options/theme-options.php:3956 msgid "Backup&Recovery" msgstr "" -#: options/theme-options.php:3942 +#: options/theme-options.php:3958 msgid "Backup or Recovery your theme options" msgstr "" -#: options/theme-options.php:3953 +#: options/theme-options.php:3969 msgid "About Theme" msgstr "" -#: options/theme-options.php:3959 +#: options/theme-options.php:3975 msgid "Version Info" msgstr "" -#: options/theme-options.php:3964 +#: options/theme-options.php:3980 msgid "" "" msgstr "" -#: options/theme-options.php:3970 +#: options/theme-options.php:3986 #, php-format msgid "" "Theme Sakurairo Version %s | Internal Version %s | Project Address" msgstr "" -#: options/theme-options.php:3975 +#: options/theme-options.php:3991 msgid "Update Related" msgstr "" -#: options/theme-options.php:3981 +#: options/theme-options.php:3997 msgid "Theme Update Source" msgstr "" -#: options/theme-options.php:3987 +#: options/theme-options.php:4003 msgid "" "If you are using a server set up in mainland China, please use the Upyun source " "or the official theme source as your theme update source" msgstr "" -#: options/theme-options.php:3994 +#: options/theme-options.php:4010 msgid "Theme Update Test Channel Disclaimer" msgstr "" -#: options/theme-options.php:4000 +#: options/theme-options.php:4016 msgid "" "Please copy the text in quotes after ensure that you have carefully " "understood the risks associated with participating in the test and are willing to " @@ -3896,70 +3918,70 @@ msgid "" "to bear all unexpected consequences\"" msgstr "" -#: options/theme-options.php:4006 +#: options/theme-options.php:4022 msgid "Theme Update Channel" msgstr "" -#: options/theme-options.php:4013 +#: options/theme-options.php:4029 msgid "" "You can toggle the update channel here to participate in the testing of the new " "version" msgstr "" -#: options/theme-options.php:4015 +#: options/theme-options.php:4031 msgid "Stable Channel" msgstr "" -#: options/theme-options.php:4016 +#: options/theme-options.php:4032 msgid "Beta Channel" msgstr "" -#: options/theme-options.php:4017 +#: options/theme-options.php:4033 msgid "Preview Channel" msgstr "" -#: options/theme-options.php:4024 +#: options/theme-options.php:4040 msgid "Resource Control" msgstr "" -#: options/theme-options.php:4030 +#: options/theme-options.php:4046 msgid "Provide Critical Frontend Resource locally" msgstr "" -#: options/theme-options.php:4031 +#: options/theme-options.php:4047 msgid "" "Enabeld by default. Critical resources are those resources whose loading " "performance will have a significant impact on the user experience." msgstr "" -#: options/theme-options.php:4038 +#: options/theme-options.php:4054 msgid "Provide Other Frontend Resource locally" msgstr "" -#: options/theme-options.php:4039 +#: options/theme-options.php:4055 msgid "Less important frontend resource in the theme's folder." msgstr "" -#: options/theme-options.php:4046 +#: options/theme-options.php:4062 msgid "Provide 3rd-party library from public CDN" msgstr "" -#: options/theme-options.php:4047 +#: options/theme-options.php:4063 msgid "" "When disabled, 3rd-party dependencies, which have been built to bundles along " "with themes's entry script, will be loaded from the exact same origin with " "Critical Frontend Resource. " msgstr "" -#: options/theme-options.php:4054 +#: options/theme-options.php:4070 msgid "Public CDN Basepath" msgstr "" -#: options/theme-options.php:4066 +#: options/theme-options.php:4082 msgid "Vision Resource Basepath" msgstr "" -#: options/theme-options.php:4067 +#: options/theme-options.php:4083 msgid "" "This link directory structure needs to be consistent with the Sakurairo Vision repositories officially " @@ -3968,31 +3990,31 @@ msgid "" "default." msgstr "" -#: options/theme-options.php:4073 +#: options/theme-options.php:4089 msgid "Theme Sponsors" msgstr "" -#: options/theme-options.php:4078 +#: options/theme-options.php:4094 msgid "" "\"sponsors\"" msgstr "" -#: options/theme-options.php:4083 +#: options/theme-options.php:4099 msgid "Theme Contributors" msgstr "" -#: options/theme-options.php:4088 +#: options/theme-options.php:4104 msgid "" "\"Theme" msgstr "" -#: options/theme-options.php:4093 +#: options/theme-options.php:4109 msgid "Privacy information" msgstr "" -#: options/theme-options.php:4098 +#: options/theme-options.php:4114 msgid "" "

The theme respects your privacy

\n" "

However, when you use a service provider pre-populated by the theme to " @@ -4003,21 +4025,21 @@ msgid "" "you to modify

" msgstr "" -#: options/theme-options.php:4106 +#: options/theme-options.php:4122 msgid "Send Theme Version to Fuukei" msgstr "" -#: options/theme-options.php:4107 +#: options/theme-options.php:4123 msgid "" "The theme will only send time and version information to Fuukei officials and the " "data will be cleaned regularly and used only to count version updates." msgstr "" -#: options/theme-options.php:4113 +#: options/theme-options.php:4129 msgid "Reference Information" msgstr "" -#: options/theme-options.php:4118 +#: options/theme-options.php:4134 msgid "" "

Fluent Design Icon Referenced by Paradox Fluent Icon Pack

\n" "

MUH2 Design Icon Referenced by 缄默 " msgstr "" -#: options/theme-options.php:4125 +#: options/theme-options.php:4141 msgid "Dependency Information" msgstr "" -#: options/theme-options.php:4130 +#: options/theme-options.php:4146 msgid "" "

Options Framework Relies on the Codestar Open Source Codestar Framework Project

\n" @@ -4041,7 +4063,7 @@ msgid "" "href=\"https://github.com/orhanerday/open-ai\">open-ai Project

" msgstr "" -#: options/theme-options.php:4137 +#: options/theme-options.php:4153 msgid "" "\"ThemepFeTb>BDm*MqQsAB1h29Pmp9Ja2b*&nx43 z-qjwS*9RkddR`SAg$r>F*2ikSJg+5Az;1XL`Nxaz?Ri6S29Cme*cf|K*o(Lpvtn#t z&&!0RF(;Pm>-oV8&yZ1zjK&y=Gq3_K#j5x@R>p@|1IzXEyoxvg<8c|5#ZRyfW?%#+ z_V>JOSQ(?RHs->1SOEL<_g#UL$WR44Q3d{jDlqE+&r8B;SR4Cb0=|QV@Gz?2%NT=y zVm{0>(DN!`DO5$zqbeSQ8rhlVM?MJ^bQ^VJ=0ToU1Y@x<*2aR^6;;s~EQzyG6>h^4 z_%&w7Kd}*dgFTNvc#Sa;KR`{vx0oN#V`lXKAfX|Bh@n_zh%2xLY9xAMG)^~{p?b0z z^WZ+rizh6;X4fB}8W_gHP=kx1rnWg2$L>fuzBiMEdb$`J;#O3T|1@(Bb1g1~#mKLR zIj}Eks7GNq&O(jgLexlYz`FP;X2U0_MVEEBYghp+K>c1d5~{E@sv(0=1-y*v*>bzS z8P)P5cnb7+x1^Ciuf;dvBn6_Aj=_q!(#DPD72r6V&!9I?+{}j2hC8s1ciJ`EObNZp*)fS-Bo~ z$@AhcJ8Hy}Fk1V+2?-5ZcMP6Ls0UufLbwp~;U-iA4x;A#y!j6nC61otdR7%xPBYZv zYl~V7T~KpA08?>sQ071LWDW~5CgS^;K)1E8k6}Oj4jW<0RM#LM)u1%gecMqL>_s*F zOVl~=9cm3+#3FbLHIm`fsVOXlh56U3$$vB_olrd+idqA+%@tURcnhk+A5cBKYTm@2 z#J}RV*mjz$xY%^ppbDt+Qcw+QiCRltF}VK+k$8=a5!ekMqK2;X3{4P)V_m$A^)Ys) zJF0u5MrJK`#yeOY8@}w`a+5HHcq{6;o2Z7CeZ}R!_6o(fBja;2T4RA%oddBM@rTH| z<6xk*FcGidY1I9@X0uf>bdI~;3Yk`K9de78FqcCOH({(|dRY(~pmt67*XW*B?`Sge z;}X=i_yEh{C1jO)Ip*=90gIuAejI8JCu0tL9d#b8Kvi%Y_1tyTP(Q*%%s$_pd=*iP zxt>pA2#Kzk1rMY4>2Vy47g0moMy;Vj3q7wlCgU_* zj=ElmLR4Qf9EJW)5^YEnU&JwrWwM)o({QJLF}F-w_MF&huov$zFjCGLzlu(!n{Q1`uP z`7<#W@j~+*%uc)w3u}4rB~gfsv#3S#2Wm~^UFJ@#>R5ufGivCkVkFMT-1rV^F1KS@ z{1T_*Uzj~WL*8`PUtaFcfwwV%>wB;q^?R2|Xn#kfxuL0!d5LSG8qx+MFcr1PVgea`a1&0& zobR|E%*VRKD^V3)!g#!ng)w}!8<9lRNL0dcSQB;sHjKxQQLFwOYGf~)w|x?N@Nd-6 zdhfcSjzG1rFlsK_qptTs^=u^SK$(ZyuG>-N{EMnM+ZP}dVs4N0==ekBs> zNo~}k=!#QtC~D4bVjSK_6_k68Yd{e!LR{10E~w|nVHuo-iMRvv;}2L9?_&yAd(g9;}7;0C{L*18VZbVhI8}-~V)JXk| z+9e_DT|N0Riu%3kBvfz@fR6c@G+|3un*i&<;3j730Mp(UGrwRnQ;n;yBb=+J#y(d(ESk{~fAf=TRedAH%f&10T8Vlm#QW zkOw0%7S*%Ls0Kcdjd3Vu#T}?^xfiuY4w@(I`UO-u*HLTZU(AQ$AG@^{i=o>8Wk{&N z3aB2WnDtO6SQES64^`0!R8J^y$`3N?)whg<9*bWG}!A-$o8lXjX@3hOQ?>{ zLpAJ;y^O!+d<_{Da05=qA5krRVV`U1PiEYwt|7g!9M|Vtyay{2-@vL^_%rwRY>Uf@ zXJZvCw%;xGPUgJ*zRNgh8ULUPD1X2e&=(c2z-o9BDa*@z(9Pi&sKxdzYUnSb*2Epu zNdAs77=Fn0xH#&*DyZwv`Xp397o3az?1uYTkoXB|2n!r`yC4=7C!2M!C~+eU#eS%Q z2cu3n-}2u^J@+o^pxa=vzta+XP;++>)xuNe6>LfTD;CGvpVL_Eiz9F^_QkSa1V6iY z3$QJ50URM&Ta2URXlPvxVqlm+fxz%0>6N$^CwpDwa ziUTk|W?gz`6Y)W8j3d5rYho8BQonbKgev?SBk(C|Dk4s} zmKVXY#AUDmc0%1h5@T@!sz=Lk8g9iX`j3wHKd z_HjIh{NjEen21rt-(r5ej!F0gM_}0-?vH5FFpN0!O}B>p93(Q45rqj@0JS)t!R*)o zb733H?};j4fL$MkT5K<(4xA}C3s<1-OSt7Mjd}-Eu(&=_FTej;Mhn~>;(5Mm@hJDD%J5GIpE$%`eR3<|!;o z1JB}kx*Yl|(?da%_|MA$zCAyn0(|fn3lBs7;WGl3`j=gW=O400cs}8g=hfr6>rePh zLH%CIr*0L`zb@>m276lmT-5Gah72x0 z&jfqo0H4FFmR~hA5PTO5 z#cbrCKsD$bszX=Id#G~%3k~?e3#G$cMs-w!`k{Kh66@kAiz71!f^WsfSe5)szMpQ-nE&sInJI0frC!4FF3O-9* z4_o6*)LfrJ4gEb-10Pr%#xGJ@J2_C-{RSjdadTA52cs&UVJ=1WWWBk|JZPRUFQA^g ziR!>3%a3GBsKK$Qa_XZFsMc6R`+oolJ+KN@z%EpakD})2tmQvO-IqJU6;uKX5?4Xp z-wL&8yQ6xRhFNhns=`gE=MSOo|1lW*wAeD9nz?ei8)H!;Qwn?IPh%*ST#NLNt;s)CBB zp-;BBzFlvMDz_tQWCumE|CKR|3@yGi)IpSvS~QnX*VR4sI4^2-C!l&-*YZ1}I?~@v zMOEOVo?nS7Z#$}<)8?JL?0*#)7Uc?zN5#pg2il_+;W#XbX{Z7Zq6#`=-a|DYOSCfz zbv@p!iF&TR#RISzvG3c3W2hEiK&^rQPz7eo=N`kKjG+)I!N}TTK*VyJzo)5Q35J1V{tO719dFF zDeAe7<_OeC&O%L9n#J3s_WvQv_};vUD&P^SqUfTo;$miLR0AvGMjVd1uRyG`IBL!- zo6n*uZii~2665}b5sS}&3k6qc=z%cgnHSmviKfq+ZHe87Fk== z>w7A8#vK-CO9%x2xULS?C4W`|`@b=XBV_1xn=>&G{5ake6|cnYcov)D+~V$adKz^- zv_v5I=LU7K7x8u+fsrNM2u?>W-Za!ZU?=J%J&rMWr=;&%oVApDe z95tk;QA2nQbuQdR4Q*s;_gpE|RMbL^NK=c)ppNco*anxP%FXae< zz*~fKP!-0M4FrE7DS;h{J7H=30JZPG$M*OSj>48nf#5Hp`%oiw9qVIUxq$nNOsM+& zcPw!cwHOPPcOR+Juov+cSQ|@La6{VPoQlKAUxxEBtfCu%#i*XGH8-0(Q6sg-;%|`= z^}Vw$;oUI*F~cj_szw!9+~OoN#cXWX+ndj0a0>1ESaUjRSG|rpPu5|)x_pR)<}xFg z!I4|py)KhbbJ-kKU}tj(YEezW;1Q8`{tn**<#dra1zI1XtEoz zmy+54y72-T+3*^w2lr4F1ZudCPI*xGC75M!G;t-1-$PZr5!Imms82js?YfuZMkxK(t%n9{y@EsKN;<#*J?oU8X=`*OQXo-2T zE$Ul#KMel;zeyz2^ChSruLxeCBJ+TG4ps3VX6AY>E@&oU4A<+T7GXD3!>3xj4Asz2 zQ007yxwQW;DuH)VEqjbvFsiSp;PQ9XSH)uB14=N6(mmWH~2 z9Uj8n82tP{^;vhrYp4g`L>-Z{Ld`@0<}xNM17ge)*#?5#rml8iK2cNhMFMBK3qe#?^y$UaG@e<^>;vhC-hMTe1+O} zQSDrQB~-(vpxzk^Q4Ls&nzGHPk=u>x@#l8^4C-BQp&k2wD2dSafuN&MLw>;w@8A|q zRkNcx9!qoIGAxA$P|w}MiI}gWt6(AOzK_kTW{yrSzj`P3zY6F@h6x4)o<(Cg}kGz%&& zVkV;QD{FB>RKYD!bK1l5r=Z>;FQXbd&*J6gYRmUGkWc|1TE;OzXp zXw({b4jW(^F2PHvgKEqR?jzX_)LKaF=E|*!TFkA?&Zq|U##HV95teZU)sTCr#S-Z5 z&i*{8{OZ^po1s?sI*j6^JcRn@bGC;YsidB+f-0!(S`YQzuOVttcSDWnEX<+L|E~uV zy!Y+Gdel&EMOE~T<=?_e#J^!hOz7o)dhLK3v1O>Y;$hS`qR`%MyDdUZ*;&-u`VDnH z6zao|*4qDNNoYt?%*Gf`+#c2Qai|v0Mt$*EfVzJJYTtio*R%I^Z@WmWKz=-G`#pzx zzMI(>rxOoBU!TkGkZ6Q){oL>O15h6_zeF9iq5a*L(pspG&2v%rAHixEF~G$QP$M=6 zHHGh^KKt#m{A;KYc#2vhr3SM9^+270?rrqE`64R+4b=O82Wk=hfEvmx7C*#x#G!*+ zLp!4?d>u7Kdr?zz*DN>KP1$fT)it}+ow0SeEQ42ElW=X21ms;?>)YE`@X4zM~#ik zSTrxLLHqV`%bErPiJ9ZtHm~0$?xRtGKuYo0SC`+IwJ~E$+RvZNiEGt=?BEdt>$hzd zm+{uNjJK!V-#dHR@e+YTMdsY!J1=9w#*DYtXRO|o@#^yHo9AWBUmDk}VO++-*FVZu TGO!{g`~Q3Tqb!Ff%iTZH{whGdawemB{(f92c5$nnQBBkwbDSA|yIZIUgo+ z=zt=r93mxz%$W`){56Mg=QKF{0L z+w-b=o_C>-=MBK{zMfYXhvO^wE;hq@{XDN7j>QbzkNo46>+gBb;#3@gx3D$#p|Ww9 zgP|Cg>3R9FGCqRUGChCbLPIhdlF9P8jcOvP$XdtNOZh~;q!CgDfe z1TSG>Oc>~SVOSfBVfRe0asxu+>fgG z9G1pASOSX-rctbfYN#iw;cV2*PBXXrNvNXhsDi=IcwQNd!&q#DG1vpuP&QV=S*Qj# zVMY8J3*jAXg%6Q2c&)NLFA>+Fmf$Ex<7q5_{y#`)O7CG1)*0d|tdE+BJ{W~l%q6Ii ztjD6b2P5%Yi!a*sKT#bFVq>VoXA@`PoO$77*)ZGsF5wT z>+4ZHKY*w4CaU6t!`w_9M|I>9YHDv`Vf@p~H{6vkfc$BVKr3T95v7`=+_M+NT^3+u@KHe zHMq#~-$w0$t>%}gwLFK~yuYJnDm>dQRXKcwI2A*%4XWM_sP>-12<)HD{A&aw$xx4G zqT+W@74Jap?&DYk?_p7_JjyljC~A|XqxQle)cuoC16YXR_!jEeZop!A46EU#QOv&@ zDmvO(4YkSISUd#F63;*#qa3V*U!fjA|DrlnV~ktErl?cX3)S#M)W~O}j@@F6!VRby z-|r`(wLgK~@HVQ4t;Tv@73_g3I1M$Wi%<=|gL+PE!$>@C*Dqsn;=fRPDeQUIky@yF z8l$ea$J*%6B*Ej^TZ|gn|FAPAjbj>B05t>uqK;RY7hJHN1Qp()Ei9h=Fh8)jfBT!1BTEvf^1QEPtMyo+(f#V5Ft)kW3Q z7Pa|0p!Py{)S3^(Y+M+S^$(utd27fRhdCI}uywA##HaB)Y=xAXHb17GCn7xJx0%T4#ITe z50QQ6J;a_kZWg1)@?9kQ(6YNUu4|FY+?pS`tMRxzWD!RDw_lQDj>S5xj%Sfw>J^&n1v*+D3lNV+t>FX=$9bsd!E#gshf(+Cp{DviCSuq; z_vEXI+RSNw5<^JzKu!66)HywjS$GCDwXNrS-mAD0Rbj0Kp4Sx9Q01mz4ZM!pLou)L zc*PW)f=f}?W2i*!wZ#$W&n3};MB+lvdkjZo8~hYkW5^;mBO9?7@p(+ghOfC1%rIAC zCiy!s7h@N@O?L!?i7%R0F^Kp!a*F)k9m@z?;vSU|W~^DstczjXm}c=~7)sm?!?B;m zLs8|PxBO`sLA=0Rg@uSWVXU_IZW5))IEC6If1vh6vDe)bD;X;icSBA6BrJw=u?Vh0 zt>tD+!b3O}|H48(IPUMmj3ZH- z&yTfmCTiq6EdO(?Lwp$3(f_bG7JkFk7mrcIDOeQSpPnkt3Tg?9u5$IKVtwK!tC;_~B*v04 z0N3JVEc})m!CXuueiPNuSuBrv7>glqyBSG9%|tC6gAGvSH(`0)f!g&yqGtA-dEHM! zH~x*9+J~sA4u8k>uoP-7JE5-kM~!S4>VYx`+u&wYJ^w>B?0eTW6pFep3Uxgm)sZB- z?yp5cBWZ-%6g_Yf4neKiRV;_MQ58kJ=Q>at%MdrPxI60p(O4B{Vj^zAX#5@@#oO2b ztKcMCW*&+vHw9Jh zP1H>8L(Rl7ET;2+nuIplEsVpU_uUjFpgL3;OJOQ%B%QG=K8sqaIjC~W%r&TncB1b4 z5;ar5piYVJ1J_OoEKd7gG6_}u7^=bnsPjJpwKUT)7~it|)uBqT(WJ-G~y*x>$w$7MLH0VnG~<`EWdHO($VP z+<`pPygR7+=B;x}^A@UO-=YS3WgYWhfW%*9gx~{I#X;-s$%Tc8<1rpfyQ8SZ*YPcjjrOyQET2CU&H56_xm=v^0BCyNW!Yv1c&%|b^A$ZWG6Pe8}4EPanUVq_a1HPCG)=;xI3IPt{{e|)65-q2R5eGP zg5Ic}PQ*xjAGLP7QG4NpUH=a&5m))pt#LR?Z7jYBXLx1f&YZqy#xYkq6je?rxhhuRze!x9+sk=tu=7^L>A zkWhs+P$Nh+(@;;a)^ zzYmGhyWA$6fU0OE>dCbY)qx{e4R2y5#_Z|v~XKu51HRpWhcNu#v<1VU#>U&)U15ojDOvWQfU0(1$w}xM!Hrr9u)Sp4^ zi5sYy{2fbU$bL8CL{zytsO!!ABve6nd>J#Xz-^2n{uecc(Vx3h5QmCW%*Gf;+!BK@ z6IJmus3+WH%U^-I?`_nB?gNYcxt7?4TD!fd9v(B#V>{wsu>v;wg3kyz0Egjj%*3h( z_)!Aqtnh?d|K+=xL~^Qe1p)x#FVt?&_?jT+ce41E7zMdCv; zaVcX2jx<>Q_=3b$f^toWT<^Ovv#@lCVQ3HN)zTzrB2y%;kW|Tz#7!9-iO`r8?1|or`)ma zfoga@Y9<22t*UfrAy7(AwB!AdxJ|AM4pIm;SGtLi?L3*vu(m0kn z$I}zf;%1!qv$Ohn_uJAryhQ%=3-0TDmj5DOgUGmVuK9&eGsN8~rTjZM5#P>pKb^!~ z=137w#*Plggw&zg~oQXIKm!rzXUw2kUy#s1k+!Se--~TM*G5jbW4-br_ zU?}sg5tTvRSjTLMs<@k(f$H!8i?dK29&Y+kyM6&`&#Xk-+_%|qr9 zOrnD)aV$gj{l;(mR5XtNO!slF|Dpl><8Pjn`0y?#1}og-RN)W*ut&JR+ynR1%`gA) zf}?#e@uAzrek?(}6xGvBs9n4VHNxL4|1N6x26?_fxrSz2RJpEL6*DY<7V7l8h8J)% z#^FMr&+|7Rv4w@upNI@AL-@`ad&2P`g7z!!KcK8p3o?}BE?D#RCfm$V4+yMoVH##D1Psw0Oj4ld}*RYg_U0yTx*P@8QG zR>2vlhBu))@+H>7lcD}7f~I&X7N4L-q9~py6&$}LJc=T^}IK#;j!jy)JRsCYs~HDe)A~mzO$$S z{AT$DI1=h`B&wcd)B~zHrt19nBB2`=p(hT^-#IG&?cT~Bc!mgrH7(-kMRlXT& z({@CSY(9qKVpM~xQ1|aZmH#FX`{}V|+%fY%;tEEhW~K@*!nUZ2&!8&!#o{~WKc+9j zl`CjQpdMf)Py?)tdayOb1lsqWw2aZHC)I3osrf#ZC4W2W#_v%bxPj`>eT?J*ldp*D zc!{E}p=zipPeVPL+o8%2vHX$fSAofvF~?kr>S>Pok$KoWXZ~&m6>|+mqZ&v=O?{HZ z$#%UFs@`iVCk5r;5L?e1vQTGmD7r=tea(;S3q zU=-^9g{b;+Q0*Kv&qs3pRpC7{RAE$c7bl@^XoK2>Sy&0@qbl5vs_2k;5!HeFX2B?T zJ<6H4u%8<19`>4WN$Y zH$vT)ZVo`r<`m(4R%(8xoqr`sLh(Ca4B-%!_8(^6ur4fqL02viKtE*v7=WP1X|i z`p(AgxZ2|Xuq|<&1h?lVByj#)ld+o&y>9a*`T`%v8=>NbxCOsP-8i{|dz~IcUH>0u zW1Wh=z+XVh!C}NjE4dk*g4(>xQ15_T)RXiumc|>E{I16ZE4%l13TmzTp?W?FH8Y1% zQ+gaVg%?rJg`23UEn3ChR|&NgkD_Lzjm6ohN4Fn4;A^OQFDau4i5sXXe}J0W2339D zLVO9;U~G~v@C!)=>`L4ftKd4+xj%`W@h*C@&U97_HYoQFZR+zc#4jV#ApZ|0(AYL~@Fks0-S zr(D9jV%{}FYP+e7Mpc+-agv#8wzBJ;%$^unLc2c7oPs)4^H9%|)mUCb-bX@fc`1;= zajWBAmr1C#Oh;AN&CEh=s)<+umtcR~gSRlQu6tC6*K-Xfq3Umm+7nr*C3_9?Ys$Bi zP(!;=Jv?afdDPn9Lfv@R^5c_T`I@NwMivi7b#yf99Wo0w8xaqB>FmwG=f`ry&J3lGdnl&!8F{gDN)%waFHuo(D&84Cb%zX6%Lf zoPQPkiHtD3h#J8yR0CeB`{+~zRW9DFf+LA*S^N&F;WelZeTw?TbHT1ZM9oxz2F}{3 zj%769{C6U;j0`n+6VvbkYDA45b!(T7>ew(;{!~wZ2UlOz?jB+Ji%}JCL=9*!>VwB0sMm41Ca#^f z7&!kOETb=K*A7B`TpnZjvrs*rkNSl4KB|EOsD^(;b>u(Gk4SUn<55f65VaJKV>gY$P zdJbWP&i@%D@FuEf4=@BHo4KWkMXhOViyKC8Z6P$ z)n5fwe~Q_-CFfr~Y)OWurada|i<-hL)Edu0P330P9yo-W>Z^7=xRq;>Ziut6_0QTUUOppM*xb0M+v?$oEL^8*D;+Cf#)~_AzG-R0o=&_Dp-!eSJ`S zXT13;YU)40EZl8zg~#3Jh*Z>!_@A-FOuO(Ns(}-z3NBzd{1Y|xQSF@d%+9Ep$VS~a z9W@iLB0qL{Yf*b*1D3;msCs`v_JZI0n}lxs*JXHNPq+~kMHQ@$y57`$0=4OSp*GX2 zmcP`@vHYzT?=%ls{&yCi4#@etVi|v8MJn{QcMVoX{kW8jdO7t+ordR74UaINHz%Vy zJOj0vms-3AwWs!=?mK{5x^EQg{GYW8mrzr819d}C2iK8DP!-3buGg@*ja~1BUC1Ad zYG4m)PwYp%ZhuC7dhYt9FYwp(R-%^j5(fVKKYvG8aS2S|LQT}}?~M9RI2l#JSEyqb z*~#VCLUn8+>YcFw)qxz;lC4M0+)mVpKey{AQ161DI&uD=C6T|g`}{r}HRV5)mD^!nFbj2a`N`cl|Ei!b8LHqVRJ_d!oW%{q zA>G}`K17Xp4{C%*EdPw<|6=}a*F$@_awSmrC0Lw-dSbTlTgH#5wY`j*!iT6SEzr}& zrOgCXxvCboKvn!0YE64v{zTL}RjjR3`wxBwmkm2fWfZELM%xp4Nx2X8&F54fH&aP{T?2Jc$2AT0-LC~|Q$K~8;h7k&&;RoR z3Eum5;eFIpZbUWojpbj%+Qh$MEsXEyetPYUs(1KnS`b!#cYA)iJwG`JR8;H8K^HFb5Z42qt1PQ=j#DH?ih(F2D3p=STP*`CW$j zyuDa?xX*hNuj3|sX@oO%q|bYg_$vN_^Rj(`|C4IuD4(~UINxaJCO?VgWMqtS8Fz64 z@q1(4ZZG$|iznk?^8Z2o-alZRn~5Cr6VxO16n4Xhs8iAH1-JHVQF~^K#h;+c`@gV^ zTjrmrwYzU|q4BPQVyImkV{uiCC$5cpgmkM$Xk)Yx6cPzqE7qmF3f)7&tm>*x+VQrsu8LocHFGU-!(tv~yM7 zf=!op=UkpUEAN$8FK?KeH*fLfC9^K=-ma@3&%C^JQ{IBLmsiZrdwbobT{B&Q^p<(A e%)dN)-laXucND7Rd!s?<|JS@@OFv)RQvU}%z}!3l diff --git a/opt/languages/zh_CN.po b/opt/languages/zh_CN.po index d0a5d155..a3f94523 100644 --- a/opt/languages/zh_CN.po +++ b/opt/languages/zh_CN.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: Codestar Framework Modified by Fuukei\n" -"POT-Creation-Date: 2024-11-02 16:07+0800\n" -"PO-Revision-Date: 2024-11-02 16:17+0800\n" +"POT-Creation-Date: 2024-11-03 10:51+0900\n" +"PO-Revision-Date: 2024-11-03 11:18+0900\n" "Last-Translator: \n" "Language-Team: \n" "Language: zh_CN\n" @@ -10,7 +10,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Poedit 3.5\n" +"X-Generator: Poedit 3.4.4\n" "X-Poedit-Basepath: ..\n" "X-Poedit-Flags-xgettext: --add-comments=translators:\n" "X-Poedit-WPHeader: option-framework.php\n" @@ -1374,14 +1374,13 @@ msgstr "QQ音乐(可能无法使用)" #: options/theme-options.php:862 msgid "Use custom Meting API or playlist" -msgstr "使用自定义MetingAPI或者歌单文件" +msgstr "使用自定义 MetingAPI 或者歌单文件" #: options/theme-options.php:864 msgid "" "Enter a custom Meting-api, which can also point to a playlist file. However, " "the ID will only be effective if the playlist is specified" -msgstr "" -"填入自定义的MetingAPI地址,也可以指向歌单文件,但是只有填了歌单ID后才会生效" +msgstr "填写自定义 MetingAPI 地址(可以指向歌单文件),只在填写歌单 ID 后生效" #: options/theme-options.php:870 msgid "Footer Online Music Player Proxy" @@ -1709,14 +1708,14 @@ msgstr "启用PJAX后仍需要每页加载的资源" #: options/theme-options.php:1291 msgid "" -"After enabling PJAX, custom content in the footer won’t be refreshed on page " -"navigation. You can specify paths for JavaScript and stylesheet resources " -"that need to be reloaded on each page in the footer here, one per line. " -"These resources will be reloaded once PJAX completes content loading." +"After enabling PJAX, custom content in the footer will not be refreshed on " +"page navigation. You can specify paths for JavaScript and stylesheet " +"resources that need to be reloaded on each page in the footer here, one per " +"line. These resources will be reloaded once PJAX completes content loading." msgstr "" -"启用PJAX后,你在footer处的自定义代码在页面跳转后将不再被刷新。你可以在此处填" -"写需要每页都加载的JavaScript和css资源的路径,这些资源将在pjax完成加载后被重新" -"加载。" +"启用PJAX后,你在页尾设置的自定义代码在页面跳转后将不再被刷新。你可以在此处填" +"写需要每页都加载的 JavaScript 和 CSS 资源的路径,这些资源将在 PJAX 完成加载后" +"被重新加载。" #: options/theme-options.php:1297 msgid "NProgress Loading Progress Bar" diff --git a/opt/languages/zh_TW.mo b/opt/languages/zh_TW.mo index afab0fb0105f40b1949e18d256eff83dc2cdca80..47b09f423d64a7482890550c45ab66f2a59ef82a 100644 GIT binary patch delta 14031 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 D^2EGz delta 14032 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 diff --git a/opt/languages/zh_TW.po b/opt/languages/zh_TW.po index b538c393..2ad8a222 100644 --- a/opt/languages/zh_TW.po +++ b/opt/languages/zh_TW.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: Codestar Framework Modified by Fuukei\n" -"POT-Creation-Date: 2024-11-02 16:17+0800\n" -"PO-Revision-Date: 2024-11-02 16:20+0800\n" +"POT-Creation-Date: 2024-11-03 10:52+0900\n" +"PO-Revision-Date: 2024-11-03 11:19+0900\n" "Last-Translator: \n" "Language-Team: \n" "Language: zh_TW\n" @@ -10,7 +10,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Poedit 3.5\n" +"X-Generator: Poedit 3.4.4\n" "X-Poedit-Basepath: ..\n" "X-Poedit-Flags-xgettext: --add-comments=translators:\n" "X-Poedit-WPHeader: option-framework.php\n" @@ -1380,8 +1380,7 @@ msgstr "使用自訂 Meting API 或歌單" msgid "" "Enter a custom Meting-api, which can also point to a playlist file. However, " "the ID will only be effective if the playlist is specified" -msgstr "" -"輸入自訂 Meting API,它也可以指向一個歌單檔案。但僅在指定歌單時 ID 才有效" +msgstr "輸入自訂 Meting API(也可以指向一個歌單檔案)。僅在指定歌單時 ID 有效" #: options/theme-options.php:870 msgid "Footer Online Music Player Proxy" @@ -1484,7 +1483,7 @@ msgstr "開啟佔用資訊之後,該資訊將顯示在頁面末尾。不建議 #: options/theme-options.php:966 msgid "Footer Upyun League Logo" -msgstr "頁尾Upyun League Logo" +msgstr "頁尾 Upyun League Logo" #: options/theme-options.php:967 msgid "Upyun Logo will appear at the end of the page after turning it on" @@ -1703,18 +1702,18 @@ msgstr "默認開啟,點擊新內容將不需要重新載入" #: options/theme-options.php:1289 msgid "Resources that still need refreshing in the footer after enabling PJAX" -msgstr "啟用 PJAX 後,footer中仍需刷新的資源" +msgstr "啟用 PJAX 後,頁尾中仍需刷新的資源" #: options/theme-options.php:1291 msgid "" -"After enabling PJAX, custom content in the footer won’t be refreshed on page " -"navigation. You can specify paths for JavaScript and stylesheet resources " -"that need to be reloaded on each page in the footer here, one per line. " -"These resources will be reloaded once PJAX completes content loading." +"After enabling PJAX, custom content in the footer will not be refreshed on " +"page navigation. You can specify paths for JavaScript and stylesheet " +"resources that need to be reloaded on each page in the footer here, one per " +"line. These resources will be reloaded once PJAX completes content loading." msgstr "" -"啟用 PJAX 後,footer中的自定內容不會在頁面導航時刷新。您可以在此指定需要在" -"footer中每頁重新加載的 JavaScript 和樣式表資源路徑,每行一個。這些資源將在 " -"PJAX 完成內容加載後重新加載。" +"啟用 PJAX 後,頁尾中的自定內容不會在頁面導航時刷新。您可以在此指定需要在頁尾" +"中每頁重新加載的 JavaScript 和樣式表資源路徑,每行一個。這些資源將在 PJAX 完" +"成內容加載後重新加載。" #: options/theme-options.php:1297 msgid "NProgress Loading Progress Bar" diff --git a/opt/options/theme-options.php b/opt/options/theme-options.php index 096279c3..82aa37eb 100644 --- a/opt/options/theme-options.php +++ b/opt/options/theme-options.php @@ -1288,7 +1288,7 @@ function iro_validate_optional_url( $value ) { 'type' => 'textarea', 'title' => __('Resources that still need refreshing in the footer after enabling PJAX','sakurairo_csf'), 'dependency' => array( 'poi_pjax', '==', 'true', '', 'true' ), - 'desc' => __('After enabling PJAX, custom content in the footer won’t be refreshed on page navigation. You can specify paths for JavaScript and stylesheet resources that need to be reloaded on each page in the footer here, one per line. These resources will be reloaded once PJAX completes content loading.','sakurairo_csf'), + 'desc' => __('After enabling PJAX, custom content in the footer will not be refreshed on page navigation. You can specify paths for JavaScript and stylesheet resources that need to be reloaded on each page in the footer here, one per line. These resources will be reloaded once PJAX completes content loading.','sakurairo_csf'), ), array( From 00ada7febc9f3107dfe740ae07f4b97ca21789fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9F=93=E5=B7=9D=20=E7=9E=B3?= Date: Sun, 3 Nov 2024 11:59:44 +0900 Subject: [PATCH 120/122] Daily Update --- functions.php | 2 +- inc/decorate.php | 2 ++ style.css | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/functions.php b/functions.php index d0195263..f3c98fdb 100644 --- a/functions.php +++ b/functions.php @@ -12,7 +12,7 @@ define('IRO_VERSION', wp_get_theme()->get('Version')); -define('INT_VERSION', '19.1.1'); +define('INT_VERSION', '19.2.0'); define('BUILD_VERSION', '2'); function check_php_version($preset_version) diff --git a/inc/decorate.php b/inc/decorate.php index 91aeb840..90e45d4c 100644 --- a/inc/decorate.php +++ b/inc/decorate.php @@ -856,6 +856,7 @@ function customizer_css() { ?> letter-spacing: 1px; flex-direction: column; display: flex; + position: relative; } .post-title { @@ -873,6 +874,7 @@ function customizer_css() { ?> display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; + position: relative; } .post-list-thumb:nth-child(2n) .post-thumb{ diff --git a/style.css b/style.css index 4786ebdf..d5380849 100644 --- a/style.css +++ b/style.css @@ -6,7 +6,7 @@ Theme URI: https://github.com/mirai-mamori/Sakurairo Author: Created by Fuukei Author URI: https://docs.fuukei.org/ Description: A colorful, Easy-to-use, Perfect Experience, and Powerful Customizable WordPress Theme (Based on Theme Sakura) -Version: 2.7.1.1 +Version: 2.7.2 Tested up to: 6.6 Requires at least: 5.8 Requires PHP: 7.3 From bc95c74ee3b5b045e1da2fc0b11512dbd57250d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9F=93=E5=B7=9D=20=E7=9E=B3?= Date: Sun, 3 Nov 2024 15:58:29 +0900 Subject: [PATCH 121/122] Daily Update --- style.css | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/style.css b/style.css index d5380849..ae179285 100644 --- a/style.css +++ b/style.css @@ -4086,7 +4086,8 @@ iframe { top: 12%; box-shadow: 0 1px 30px -4px var(--friend-link-shadow); background: rgba(255, 255, 255, 0.5); - padding: 12px 12px; + padding: 10px 10px; + width: fit-content; overflow-y: auto; border-radius: 10px; border: 1.5px solid #FFFFFF; @@ -4102,14 +4103,15 @@ iframe { } .toc-link::before { - background-color: rgba(255, 255, 255); content: ' '; display: inline-block; height: inherit; - left: 1%; - margin-top: -1px; + left: 2%; + margin-top: 2px; position: absolute; - width: 2px; + width: 3px; + height: 20px; + border-radius: 50px; } .flipx { @@ -7191,6 +7193,8 @@ body.dark::-webkit-scrollbar-track { .toc>.toc-list li { list-style: none; cursor: pointer; + margin: 3px; + letter-spacing: 1px; } #archives li>ul { @@ -7245,7 +7249,7 @@ a.toc-link { } .is-active-link::before { - background-color: var(--theme-skin, #505050); + background-color: var(--theme-skin-matching, #505050); } .bili-container, From 4414c8be621f925686e9538443c0d0468299d508 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9F=93=E5=B7=9D=20=E7=9E=B3?= Date: Sun, 3 Nov 2024 16:30:23 +0900 Subject: [PATCH 122/122] Daily Update --- author.php | 4 ++-- inc/decorate.php | 14 +++++++------- inc/login.css | 4 ++-- inc/login_addcss.php | 4 ++-- style.css | 19 ++++++++++--------- 5 files changed, 23 insertions(+), 22 deletions(-) diff --git a/author.php b/author.php index 0d0f9acf..7ef4a9d9 100644 --- a/author.php +++ b/author.php @@ -36,8 +36,8 @@ transition: all 0.6s ease-in-out; border-radius: 16px; border: 1px solid #FFFFFF; - backdrop-filter: blur(10px); - webkit-backdrop-filter: blur(10px); + backdrop-filter: saturate(180%) blur(10px); + webkit-backdrop-filter: saturate(180%) blur(10px); }

diff --git a/inc/decorate.php b/inc/decorate.php index 90e45d4c..2e004344 100644 --- a/inc/decorate.php +++ b/inc/decorate.php @@ -507,14 +507,14 @@ function customizer_css() { ?> .site-footer { background-color: rgba(255, 255, 255,); - backdrop-filter: blur(10px); - -webkit-backdrop-filter: blur(10px); + backdrop-filter: saturate(180%) blur(10px); + -webkit-backdrop-filter: saturate(180%) blur(10px); } .wrapper { background-color: rgba(255, 255, 255,); - backdrop-filter: blur(10px); - -webkit-backdrop-filter: blur(10px); + backdrop-filter: saturate(180%) blur(10px); + -webkit-backdrop-filter: saturate(180%) blur(10px); } /*首页圆角设置*/ @@ -953,7 +953,7 @@ function customizer_css() { ?> #fff0, #000d ); - backdrop-filter: blur(1px); + backdrop-filter: saturate(180%) blur(10px); } .post-title { background-color: transparent; @@ -1211,8 +1211,8 @@ function customizer_css() { ?> width: 150%; height: 4.375rem; background-color: rgba(255, 255, 255,); - backdrop-filter: blur(10px); - -webkit-backdrop-filter: blur(10px); + backdrop-filter: saturate(180%) blur(10px); + -webkit-backdrop-filter: saturate(180%) blur(10px); left: -25%; bottom: -2.875rem; border-radius: 100%; diff --git a/inc/login.css b/inc/login.css index c84dd020..1dca40ca 100644 --- a/inc/login.css +++ b/inc/login.css @@ -52,8 +52,8 @@ input:-webkit-autofill { padding:0px !important; margin:-235px 0px 0px -175px !important; background-position: center 48%; - backdrop-filter: blur(5px); - -webkit-backdrop-filter: blur(5px); + backdrop-filter: saturate(180%) blur(10px); + -webkit-backdrop-filter: saturate(180%) blur(10px); } #login form { diff --git a/inc/login_addcss.php b/inc/login_addcss.php index 5d83405b..b0444b6f 100644 --- a/inc/login_addcss.php +++ b/inc/login_addcss.php @@ -29,8 +29,8 @@ body::before{ - -webkit-backdrop-filter: blur(2px); - backdrop-filter: blur(2px); + -webkit-backdrop-filter: saturate(180%) blur(10px); + backdrop-filter: saturate(180%) blur(10px); content:""; width:100vw; height:100vh; diff --git a/style.css b/style.css index ae179285..4b4565f6 100644 --- a/style.css +++ b/style.css @@ -616,7 +616,8 @@ input[type=week] { #fff0, #00000080 ); - backdrop-filter: blur(1px); + backdrop-filter: saturate(150%) blur(1px); + transition: all 0.6s ease-in-out; } .pattern-center::after { @@ -1099,7 +1100,7 @@ body.dark .site-title img { color:rgba(255, 255, 255, 0.8); white-space: nowrap; font-weight: var(--global-font-weight); - backdrop-filter: blur(5px); + backdrop-filter: saturate(180%) blur(10px); background-color: rgba(255, 255, 255, 0.2); border: 1px solid rgba(255, 255, 255, 0.1); z-index: 3; @@ -1123,7 +1124,7 @@ body.dark .site-title img { max-width: 70%; top: 10px; right: 10px; - backdrop-filter: blur(5px); + backdrop-filter: saturate(180%) blur(10px); background-color: rgba(255, 255, 255, 0.2); border: 1px solid rgba(255, 255, 255, 0.1); z-index: 3; @@ -1159,8 +1160,8 @@ body.dark .site-title img { bottom: 22%; left: 2%; border: 1px solid rgba(255, 255, 255, 0.8); - backdrop-filter: blur(5px); - -webkit-backdrop-filter: blur(5px); + backdrop-filter: saturate(180%) blur(10px); + -webkit-backdrop-filter: saturate(180%) blur(10px); position: absolute; display: inline-flex; box-shadow: 0 1px 30px -4px #e8e8e8; @@ -2678,7 +2679,7 @@ h1.main-title { box-sizing: initial; white-space: nowrap; font-weight: var(--global-font-weight); - backdrop-filter: blur(10px); + backdrop-filter: saturate(180%) blur(10px); transition: all 0.6s ease-in-out; } @@ -2881,8 +2882,8 @@ h1.main-title { bottom: 0; visibility: hidden; opacity: 0; - backdrop-filter: blur(10px); - -webkit-backdrop-filter: blur(10px); + backdrop-filter: saturate(180%) blur(10px); + -webkit-backdrop-filter: saturate(180%) blur(10px); } .search-form--modal .search-form__inner { @@ -5161,7 +5162,7 @@ h5::before { float: right; box-shadow: 0 1px 30px -4px #e8e8e8; background: rgba(255, 255, 255, 0.5); - backdrop-filter: blur(10px); + backdrop-filter: saturate(180%) blur(10px); padding: 5px; font-size: 16px; width: 30px;