Changeset 2919445
- Timestamp:
- 05/31/2023 06:42:30 AM (3 years ago)
- Location:
- crudiator/trunk
- Files:
-
- 53 added
- 2 deleted
- 6 edited
-
Crudiator.class.php (deleted)
-
assets/css/crudiator.css (modified) (1 diff)
-
assets/js/crudiator.js (modified) (1 diff)
-
crudiator_const.php (added)
-
languages/crudiator-ja.mo (modified) (previous)
-
languages/crudiator-ja.po (modified) (10 diffs)
-
languages/crudiator.pot (modified) (7 diffs)
-
library/MyCsv.php (modified) (1 diff)
-
library/MyPDO.php (deleted)
-
src (added)
-
src/Crudiator.php (added)
-
src/CrudiatorPlugin.php (added)
-
vendor (added)
-
vendor/autoload.php (added)
-
vendor/catfan (added)
-
vendor/catfan/medoo (added)
-
vendor/catfan/medoo/.gitattributes (added)
-
vendor/catfan/medoo/.github (added)
-
vendor/catfan/medoo/.github/FUNDING.yml (added)
-
vendor/catfan/medoo/.github/ISSUE_TEMPLATE (added)
-
vendor/catfan/medoo/.github/ISSUE_TEMPLATE/bug_report.md (added)
-
vendor/catfan/medoo/.github/workflows (added)
-
vendor/catfan/medoo/.github/workflows/php.yml (added)
-
vendor/catfan/medoo/.gitignore (added)
-
vendor/catfan/medoo/.php_cs.dist (added)
-
vendor/catfan/medoo/LICENSE.md (added)
-
vendor/catfan/medoo/README.md (added)
-
vendor/catfan/medoo/composer.json (added)
-
vendor/catfan/medoo/phpunit.xml (added)
-
vendor/catfan/medoo/src (added)
-
vendor/catfan/medoo/src/Medoo.php (added)
-
vendor/catfan/medoo/tests (added)
-
vendor/catfan/medoo/tests/AggregateTest.php (added)
-
vendor/catfan/medoo/tests/CreateTest.php (added)
-
vendor/catfan/medoo/tests/DeleteTest.php (added)
-
vendor/catfan/medoo/tests/DropTest.php (added)
-
vendor/catfan/medoo/tests/GetTest.php (added)
-
vendor/catfan/medoo/tests/HasTest.php (added)
-
vendor/catfan/medoo/tests/InsertTest.php (added)
-
vendor/catfan/medoo/tests/MedooTestCase.php (added)
-
vendor/catfan/medoo/tests/QueryTest.php (added)
-
vendor/catfan/medoo/tests/QuoteTest.php (added)
-
vendor/catfan/medoo/tests/RandTest.php (added)
-
vendor/catfan/medoo/tests/RawTest.php (added)
-
vendor/catfan/medoo/tests/ReplaceTest.php (added)
-
vendor/catfan/medoo/tests/SelectTest.php (added)
-
vendor/catfan/medoo/tests/UpdateTest.php (added)
-
vendor/catfan/medoo/tests/WhereTest.php (added)
-
vendor/composer (added)
-
vendor/composer/ClassLoader.php (added)
-
vendor/composer/InstalledVersions.php (added)
-
vendor/composer/LICENSE (added)
-
vendor/composer/autoload_classmap.php (added)
-
vendor/composer/autoload_files.php (added)
-
vendor/composer/autoload_namespaces.php (added)
-
vendor/composer/autoload_psr4.php (added)
-
vendor/composer/autoload_real.php (added)
-
vendor/composer/autoload_static.php (added)
-
vendor/composer/installed.json (added)
-
vendor/composer/installed.php (added)
-
vendor/composer/platform_check.php (added)
Legend:
- Unmodified
- Added
- Removed
-
crudiator/trunk/assets/css/crudiator.css
r2818785 r2919445 155 155 } 156 156 157 .crudiator-debug {157 #crudiator-debug { 158 158 position: fixed; 159 left: 0; 160 right: 0; 159 161 bottom: 0; 160 background: rgba(0, 0, 0, 0.8); 162 height: 140px; 163 z-index: 10000; 164 transition: height 500ms; 165 } 166 167 #crudiator-debug[data-show="off"] { 168 height: 0; 169 } 170 171 #crudiator-debug[data-show="off"] .expand-btn { 172 top: -20px; 173 background: rgba(0, 0, 0, 0.7); 174 border-bottom: 0; 175 border-radius: 4px 4px 0 0; 176 } 177 178 #crudiator-debug[data-show="off"] .expand-btn:before { 179 content: "<"; 180 transform: rotate(90deg); 181 } 182 183 #crudiator-debug .crudiator-debug-wrap { 184 width: 100%; 185 height: 100%; 186 background: rgba(0, 0, 0, 0.7); 187 overflow-y: auto; 188 } 189 190 #crudiator-debug .crudiator-debug-wrap .crudiator-debug-content { 191 padding: 10px 10px; 161 192 color: white; 162 padding: 10px 10px; 163 z-index: 1; 164 max-height: 30%; 165 overflow-y: auto; 166 } 167 168 .crudiator-debug h4 { 193 } 194 195 #crudiator-debug .crudiator-debug-wrap .crudiator-debug-content h4 { 169 196 margin: 4px 0; 170 197 } 171 198 172 .crudiator-debugcode {199 #crudiator-debug .crudiator-debug-wrap .crudiator-debug-content code { 173 200 padding: 0; 174 201 } 202 203 #crudiator-debug .expand-btn { 204 position: absolute; 205 top: 4px; 206 right: 20px; 207 width: 20px; 208 height: 20px; 209 color: white; 210 text-align: center; 211 box-sizing: border-box; 212 border: 1px solid white; 213 border-radius: 4px; 214 cursor: pointer; 215 display: flex; 216 justify-content: center; 217 align-items: center; 218 transition: top 500ms; 219 } 220 221 #crudiator-debug .expand-btn:before { 222 content: "-"; 223 font-size: 18px; 224 height: 18px; 225 width: 18px; 226 display: inline-block; 227 font-family: monospace; 228 } -
crudiator/trunk/assets/js/crudiator.js
r2818785 r2919445 194 194 }); 195 195 196 // debugウィンドウ要素がある場合のみ 197 var $crudiatorDebug = $('#crudiator-debug'); 198 if ($crudiatorDebug.length) { 199 // 最初にローカルストレージからdebugウィンドウの表示状態を取得する 200 var show = localStorage.getItem("crudiator-debug-show"); 201 // ローカルストレージにそのキー値がないか(初回)、もしくは"on"なら最初は表示状態にする 202 if (!show || show == "on") { 203 $crudiatorDebug.attr("data-show", "on"); 204 } else { 205 $crudiatorDebug.attr("data-show", "off"); 206 } 207 208 $crudiatorDebug.show(); // display:none;の解除 こうすることで最初のheightのtransitionを見せない 209 210 // 拡縮ボタンのクリックで要素を拡縮する 211 $crudiatorDebug.find('.expand-btn').click(function () { 212 var attrDataShow = $crudiatorDebug.attr("data-show"); 213 if (!attrDataShow || attrDataShow == "on") { 214 $crudiatorDebug.attr("data-show", "off"); 215 localStorage.setItem("crudiator-debug-show", "off"); 216 } else { // data-show="off" 217 $crudiatorDebug.attr("data-show", "on"); 218 localStorage.setItem("crudiator-debug-show", "on"); 219 } 220 }); 221 } 196 222 197 223 }); -
crudiator/trunk/languages/crudiator-ja.po
r2818785 r2919445 5 5 "Project-Id-Version: Crudiator 1.0\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/crudiator\n" 7 "POT-Creation-Date: 202 2-09-22 06:10:02+00:00\n"8 "PO-Revision-Date: 202 2-11-04 13:57+0900\n"7 "POT-Creation-Date: 2023-05-31 05:25:09+00:00\n" 8 "PO-Revision-Date: 2023-05-31 14:27+0900\n" 9 9 "Last-Translator: \n" 10 10 "Language-Team: \n" … … 16 16 "X-Generator: Poedit 3.1.1\n" 17 17 18 #: Crudiator.class.php:16218 #: src/Crudiator.php:161 19 19 msgid "equals" 20 20 msgstr "次の値と等しい" 21 21 22 #: Crudiator.class.php:16322 #: src/Crudiator.php:162 23 23 msgid "does not equal" 24 24 msgstr "次の値と等しくない" 25 25 26 #: Crudiator.class.php:16426 #: src/Crudiator.php:163 27 27 msgid "is greater than" 28 28 msgstr "次の値より大きい" 29 29 30 #: Crudiator.class.php:16530 #: src/Crudiator.php:164 31 31 msgid "is greater than or equal to" 32 32 msgstr "次の値以上" 33 33 34 #: Crudiator.class.php:16634 #: src/Crudiator.php:165 35 35 msgid "is less than" 36 36 msgstr "次の値より小さい" 37 37 38 #: Crudiator.class.php:16738 #: src/Crudiator.php:166 39 39 msgid "is less than or equal to" 40 40 msgstr "次の値以下" 41 41 42 #: Crudiator.class.php:16842 #: src/Crudiator.php:167 43 43 msgid "contains" 44 44 msgstr "次の文字列を含む" 45 45 46 #: Crudiator.class.php:16946 #: src/Crudiator.php:168 47 47 msgid "does not contain" 48 48 msgstr "次の文字列を含まない" 49 49 50 #: Crudiator.class.php:17050 #: src/Crudiator.php:169 51 51 msgid "starts with" 52 52 msgstr "次の文字列で始まる" 53 53 54 #: Crudiator.class.php:17154 #: src/Crudiator.php:170 55 55 msgid "does not start with" 56 56 msgstr "次の文字列で始まらない" 57 57 58 #: Crudiator.class.php:17258 #: src/Crudiator.php:171 59 59 msgid "ends with" 60 60 msgstr "次の文字列で終わる" 61 61 62 #: Crudiator.class.php:17362 #: src/Crudiator.php:172 63 63 msgid "does not ends with" 64 64 msgstr "次の文字列で終わらない" 65 65 66 #: Crudiator.class.php:17466 #: src/Crudiator.php:173 67 67 msgid "is null" 68 68 msgstr "値がNULLである" 69 69 70 #: Crudiator.class.php:17570 #: src/Crudiator.php:174 71 71 msgid "is not null" 72 72 msgstr "値がNULLではない" 73 73 74 #: Crudiator.class.php:19474 #: src/Crudiator.php:193 75 75 msgid "Do you want to delete the item ?" 76 76 msgstr "次のデータを削除しても宜しいですか?" 77 77 78 #: Crudiator.class.php:19578 #: src/Crudiator.php:194 79 79 msgid "Do you want to delete this item ?" 80 80 msgstr "このデータを削除しても宜しいですか?" 81 81 82 #: Crudiator.class.php:19682 #: src/Crudiator.php:195 83 83 msgid "Do you want to delete selected item ?" 84 84 msgstr "選択したデータを削除しても宜しいですか?" 85 85 86 #: Crudiator.class.php:19786 #: src/Crudiator.php:196 87 87 msgid "Item count : " 88 88 msgstr "データ件数 : " 89 89 90 #: Crudiator.class.php:19890 #: src/Crudiator.php:197 91 91 msgid "Item not selected." 92 92 msgstr "項目が選択されていません。" 93 93 94 #: Crudiator.class.php:19994 #: src/Crudiator.php:198 95 95 msgid "When in View or Filter view, data for that condition will be exported." 96 96 msgstr "" … … 98 98 "す。" 99 99 100 #: Crudiator.class.php:214 crudiator.php:74100 #: src/Crudiator.php:233 src/CrudiatorPlugin.php:77 101 101 msgid "" 102 102 "Crudiator does not work properly because database connection by PDO is not " … … 104 104 msgstr "PDOによるデータベース接続が出来ない為、Crudiatorは正常に動きません。" 105 105 106 #: Crudiator.class.php:215 crudiator.php:75106 #: src/Crudiator.php:234 src/CrudiatorPlugin.php:78 107 107 msgid "Error Message: " 108 108 msgstr "エラーメッセージ: " 109 109 110 #: Crudiator.class.php:226110 #: src/Crudiator.php:243 src/Crudiator.php:249 111 111 msgid "Unable to retrieve table information." 112 112 msgstr "テーブル情報を取得できません。" 113 113 114 #: Crudiator.class.php:376 114 #: src/Crudiator.php:327 src/Crudiator.php:330 115 msgid "This operation is not allowed." 116 msgstr "この操作は許可されていません。" 117 118 #: src/Crudiator.php:416 115 119 msgid "Number of items per page:" 116 120 msgstr "ページごとに表示する項目数:" 117 121 118 #: Crudiator.class.php:456 122 #: src/Crudiator.php:487 123 msgid "All" 124 msgstr "すべて" 125 126 #: src/Crudiator.php:516 119 127 msgid "Bulk delete" 120 128 msgstr "一括削除" 121 129 122 #: Crudiator.class.php:479130 #: src/Crudiator.php:539 123 131 msgid "View" 124 132 msgstr "閲覧" 125 133 126 #: Crudiator.class.php:485 Crudiator.class.php:1242134 #: src/Crudiator.php:545 src/Crudiator.php:1506 127 135 msgid "Edit" 128 136 msgstr "編集" 129 137 130 #: Crudiator.class.php:495 Crudiator.class.php:1245138 #: src/Crudiator.php:556 src/Crudiator.php:1509 131 139 msgid "Delete" 132 140 msgstr "削除" 133 141 134 #: Crudiator.class.php:534 Crudiator.class.php:1532 142 #: src/Crudiator.php:621 143 msgid "Export" 144 msgstr "エクスポート" 145 146 #: src/Crudiator.php:827 147 msgid "" 148 "Only arrays are allowed for the view option. Please check the documentaion." 149 msgstr "" 150 "viewオプションは配列のみ許可されています。ドキュメントをご確認ください。" 151 152 #: src/Crudiator.php:833 153 msgid "The use of MATCH is not permitted in the VIEW." 154 msgstr "viewオプションではMATCHの使用は禁止されています。" 155 156 #: src/Crudiator.php:844 157 msgid "" 158 "Only arrays are allowed for the where option. Please check the documentation." 159 msgstr "" 160 "whereオプションは配列のみ許可されています。ドキュメントをご確認ください。" 161 162 #: src/Crudiator.php:851 163 msgid "The use of MATCH is not permitted in the WHERE." 164 msgstr "whereオプションではMATCHの使用は禁止されています。" 165 166 #: src/Crudiator.php:1295 167 msgid " items deleted." 168 msgstr " 件のデータを削除しました。" 169 170 #: src/Crudiator.php:1298 171 msgid "Data added." 172 msgstr "データを追加しました。" 173 174 #: src/Crudiator.php:1301 175 msgid "Data updated." 176 msgstr "データを更新しました。" 177 178 #: src/Crudiator.php:1342 179 msgid "An error has occurred." 180 msgstr "エラーが発生しました。" 181 182 #: src/Crudiator.php:1358 183 msgid "Back" 184 msgstr "戻る" 185 186 #: src/Crudiator.php:1407 src/Crudiator.php:1611 src/CrudiatorPlugin.php:95 187 msgid "Add New" 188 msgstr "新規追加" 189 190 #: src/Crudiator.php:1425 191 msgid "Search Text" 192 msgstr "テキスト検索" 193 194 #: src/Crudiator.php:1476 195 msgid "View Data" 196 msgstr "データを詳細表示" 197 198 #: src/Crudiator.php:1537 199 msgid "Add New Data" 200 msgstr "新規データを追加" 201 202 #: src/Crudiator.php:1540 src/Crudiator.php:1615 203 msgid "* required fields" 204 msgstr "* は必須項目です" 205 206 #: src/Crudiator.php:1576 207 msgid "Save" 208 msgstr "保存" 209 210 #: src/Crudiator.php:1609 211 msgid "Edit Data" 212 msgstr "データ編集" 213 214 #: src/Crudiator.php:1663 215 msgid "Save Changes" 216 msgstr "変更を保存" 217 218 #: src/Crudiator.php:1671 219 msgid "Search results for" 220 msgstr "検索結果" 221 222 #: src/Crudiator.php:1691 223 msgid "filter condition : " 224 msgstr "絞り込み条件 : " 225 226 #: src/Crudiator.php:1802 227 msgid "Unknown input type specified" 228 msgstr "不明な入力タイプが指定されました" 229 230 #: src/Crudiator.php:1946 135 231 msgid "Filter Data" 136 232 msgstr "データを絞り込み" 137 233 138 #: Crudiator.class.php:567 139 msgid "Export" 140 msgstr "エクスポート" 141 142 #: Crudiator.class.php:1069 143 msgid " items deleted." 144 msgstr " 件のデータを削除しました。" 145 146 #: Crudiator.class.php:1072 147 msgid "Data added." 148 msgstr "データを追加しました。" 149 150 #: Crudiator.class.php:1075 151 msgid "Data updated." 152 msgstr "データを更新しました。" 153 154 #: Crudiator.class.php:1119 155 msgid "An error has occurred." 156 msgstr "エラーが発生しました。" 157 158 #: Crudiator.class.php:1123 159 msgid "Back" 160 msgstr "戻る" 161 162 #: Crudiator.class.php:1149 Crudiator.class.php:1326 crudiator.php:94 163 msgid "Add New" 164 msgstr "新規追加" 165 166 #: Crudiator.class.php:1167 167 msgid "Search Text" 168 msgstr "テキスト検索" 169 170 #: Crudiator.class.php:1197 Crudiator.class.php:1301 Crudiator.class.php:1718 171 #: Crudiator.class.php:1780 Crudiator.class.php:1786 Crudiator.class.php:1853 172 #: Crudiator.class.php:1895 234 #: src/Crudiator.php:1971 235 msgid "Reset filter" 236 msgstr "絞り込みを解除" 237 238 #: src/Crudiator.php:1973 239 msgid "Cancel" 240 msgstr "キャンセル" 241 242 #: src/Crudiator.php:1974 243 msgid "Start" 244 msgstr "開始" 245 246 #: src/Crudiator.php:2118 src/Crudiator.php:2124 src/Crudiator.php:2167 247 #: src/Crudiator.php:2259 src/Crudiator.php:2404 src/Crudiator.php:2418 173 248 msgid "Invalid parameter" 174 249 msgstr "不正なパラメータです" 175 250 176 #: Crudiator.class.php:1210 Crudiator.class.php:1313 Crudiator.class.php:1797 177 #: Crudiator.class.php:1863 251 #: src/Crudiator.php:2133 178 252 msgid "Data does not exist." 179 253 msgstr "データが存在しません。" 180 254 181 #: Crudiator.class.php:1222 182 msgid "View Data" 183 msgstr "データを詳細表示" 184 185 #: Crudiator.class.php:1259 186 msgid "Add New Data" 187 msgstr "新規データを追加" 188 189 #: Crudiator.class.php:1293 190 msgid "Save" 191 msgstr "保存" 192 193 #: Crudiator.class.php:1324 194 msgid "Edit Data" 195 msgstr "データ編集" 196 197 #: Crudiator.class.php:1372 198 msgid "Save Changes" 199 msgstr "変更を保存" 200 201 #: Crudiator.class.php:1380 202 msgid "Search results for" 203 msgstr "検索結果" 204 205 #: Crudiator.class.php:1400 206 msgid "filter condition : " 207 msgstr "絞り込み条件 : " 208 209 #: Crudiator.class.php:1558 210 msgid "Reset filter" 211 msgstr "絞り込みを解除" 212 213 #: Crudiator.class.php:1560 214 msgid "Cancel" 215 msgstr "キャンセル" 216 217 #: Crudiator.class.php:1561 218 msgid "Start" 219 msgstr "開始" 220 221 #: Crudiator.class.php:1745 Crudiator.class.php:1820 Crudiator.class.php:1876 222 #: Crudiator.class.php:1920 Crudiator.class.php:1967 255 #: src/Crudiator.php:2200 256 msgid "No value returned in callback function before data insertion" 257 msgstr "データ挿入前のコールバック関数で値が返ってきません" 258 259 #: src/Crudiator.php:2211 src/Crudiator.php:2303 src/Crudiator.php:2367 260 #: src/Crudiator.php:2456 src/Crudiator.php:2531 223 261 msgid "Database Error : " 224 262 msgstr "データベースエラー : " 225 263 226 #: crudiator.php:41 264 #: src/Crudiator.php:2291 265 msgid "No value returned in callback function before data update" 266 msgstr "データ更新前のコールバック関数で値が返ってきません" 267 268 #: src/Crudiator.php:2356 269 msgid "No value returned in callback function before data deletion" 270 msgstr "データ削除前のコールバック関数で値が返ってきません" 271 272 #: src/Crudiator.php:2376 273 msgid "Failed to delete." 274 msgstr "削除に失敗しました" 275 276 #: src/Crudiator.php:2434 277 msgid "No value is returned in the callback function before bulk processing" 278 msgstr "一括処理前のコールバック関数で値が返ってきません" 279 280 #: src/Crudiator.php:2450 281 msgid "The following record could not be deleted. : " 282 msgstr "次のレコードは削除できませんでした: " 283 284 #: src/CrudiatorPlugin.php:38 227 285 msgid "Top level menu" 228 286 msgstr "トップレベルメニュー" 229 287 230 #: crudiator.php:42288 #: src/CrudiatorPlugin.php:39 231 289 msgid "Sub level menu" 232 290 msgstr "サブレベルメニュー" 233 291 234 #: crudiator.php:46292 #: src/CrudiatorPlugin.php:43 235 293 msgid "Administrator" 236 294 msgstr "管理者" 237 295 238 #: crudiator.php:47296 #: src/CrudiatorPlugin.php:44 239 297 msgid "Editor" 240 298 msgstr "編集者" 241 299 242 #: crudiator.php:48300 #: src/CrudiatorPlugin.php:45 243 301 msgid "Author" 244 302 msgstr "投稿者" 245 303 246 #: crudiator.php:49304 #: src/CrudiatorPlugin.php:46 247 305 msgid "Contributor" 248 306 msgstr "寄稿者" 249 307 250 #: crudiator.php:50308 #: src/CrudiatorPlugin.php:47 251 309 msgid "Subscriber" 252 310 msgstr "購読者" 253 311 254 #: crudiator.php:89 255 msgid "Crudiators" 256 msgstr "Crudiators" 257 258 #: crudiator.php:90 312 #. Plugin Name of the plugin/theme 313 #: src/CrudiatorPlugin.php:90 src/CrudiatorPlugin.php:92 314 #: src/CrudiatorPlugin.php:93 315 msgid "Crudiator" 316 msgstr "Crudiator" 317 318 #: src/CrudiatorPlugin.php:91 259 319 msgid "Table" 260 320 msgstr "テーブル" 261 321 262 #. Plugin Name of the plugin/theme 263 #: crudiator.php:91 crudiator.php:92 264 msgid "Crudiator" 265 msgstr "Crudiator" 266 267 #: crudiator.php:93 322 #: src/CrudiatorPlugin.php:94 268 323 msgid "All Tables" 269 324 msgstr "テーブル一覧" 270 325 271 #: crudiator.php:95326 #: src/CrudiatorPlugin.php:96 272 327 msgid "Add New Table" 273 328 msgstr "新しいテーブルを追加" 274 329 275 #: crudiator.php:96330 #: src/CrudiatorPlugin.php:97 276 331 msgid "Edit Table" 277 332 msgstr "テーブルを編集" 278 333 279 #: crudiator.php:97334 #: src/CrudiatorPlugin.php:98 280 335 msgid "New Table" 281 336 msgstr "新しいテーブル" 282 337 283 #: crudiator.php:98338 #: src/CrudiatorPlugin.php:99 284 339 msgid "View Table" 285 340 msgstr "テーブルを閲覧" 286 341 287 #: crudiator.php:99342 #: src/CrudiatorPlugin.php:100 288 343 msgid "Search Tables" 289 344 msgstr "テーブルを検索" 290 345 291 #: crudiator.php:100346 #: src/CrudiatorPlugin.php:101 292 347 msgid "No tables found." 293 348 msgstr "テーブルが見つかりませんでした。" 294 349 295 #: crudiator.php:101350 #: src/CrudiatorPlugin.php:102 296 351 msgid "No tables found in Trash." 297 352 msgstr "ゴミ箱内にテーブルが見つかりませんでした。" 298 353 299 #: crudiator.php:102354 #: src/CrudiatorPlugin.php:103 300 355 msgid "Parent Tables" 301 356 msgstr "親テーブル" 302 357 303 #: crudiator.php:223 358 #: src/CrudiatorPlugin.php:241 359 msgid "" 360 "The custom settings do not work because the format of the json string in the " 361 "custom settings is incorrect." 362 msgstr "" 363 "カスタム設定のjson文字列の書式に誤りがある為カスタム設定は機能しません。" 364 365 #: src/CrudiatorPlugin.php:260 304 366 msgid "Base setting" 305 367 msgstr "基本設定" 306 368 307 #: crudiator.php:259 crudiator.php:516 369 #: src/CrudiatorPlugin.php:269 src/CrudiatorPlugin.php:496 370 msgid "Custom setting" 371 msgstr "カスタム設定" 372 373 #: src/CrudiatorPlugin.php:303 src/CrudiatorPlugin.php:590 308 374 msgid "Database Table" 309 375 msgstr "データベーステーブル" 310 376 311 #: crudiator.php:263377 #: src/CrudiatorPlugin.php:307 312 378 msgid "Select the target table for CRUD on the database." 313 379 msgstr "データベース上のCRUDの対象となるテーブルを選択します。" 314 380 315 #: crudiator.php:267381 #: src/CrudiatorPlugin.php:311 316 382 msgid "Slug Name" 317 383 msgstr "スラッグ名" 318 384 319 #: crudiator.php:270385 #: src/CrudiatorPlugin.php:314 320 386 msgid "" 321 387 "Enter the slug name that will be part of the URL. Only lowercase " … … 327 393 "ます。" 328 394 329 #: crudiator.php:282 crudiator.php:517395 #: src/CrudiatorPlugin.php:325 src/CrudiatorPlugin.php:591 330 396 msgid "Menu Type" 331 397 msgstr "メニュータイプ" 332 398 333 #: crudiator.php:285399 #: src/CrudiatorPlugin.php:328 334 400 msgid "" 335 401 "Select whether it is a top-level menu or a submenu within the top level." 336 402 msgstr "トップレベルのメニューか、トップレベル内のサブメニューかを選択します。" 337 403 338 #: crudiator.php:304404 #: src/CrudiatorPlugin.php:347 339 405 msgid "Parent Menu" 340 406 msgstr "サブメニュー時の親メニュー" 341 407 342 #: crudiator.php:307408 #: src/CrudiatorPlugin.php:350 343 409 msgid "Selects the parent menu when the menu type is submenu selection." 344 410 msgstr "メニュータイプがサブメニュー選択時に、親メニューを選択します。" 345 411 346 #: crudiator.php:338 crudiator.php:345412 #: src/CrudiatorPlugin.php:381 src/CrudiatorPlugin.php:388 347 413 msgid "Menu Position" 348 414 msgstr "メニュー位置" 349 415 350 #: crudiator.php:341416 #: src/CrudiatorPlugin.php:384 351 417 msgid "" 352 418 "This menu appears below the selected menu.<br>If omitted, it will appear at " … … 356 422 "ニューの一番下に表示されます。" 357 423 358 #: crudiator.php:347424 #: src/CrudiatorPlugin.php:390 359 425 msgid "" 360 426 "Specify the position of the submenu to be displayed by any number from 1." … … 364 430 "合は登録順に表示されます。" 365 431 366 #: crudiator.php:376432 #: src/CrudiatorPlugin.php:419 367 433 msgid "" 368 434 "Select the menu icon.You can check the list of icons on the official <a " … … 374 440 "ン一覧を確認出来ます。" 375 441 376 #: crudiator.php:383442 #: src/CrudiatorPlugin.php:426 377 443 msgid "Menu Icon" 378 444 msgstr "メニューアイコン" 379 445 380 #: crudiator.php:396 crudiator.php:518446 #: src/CrudiatorPlugin.php:439 src/CrudiatorPlugin.php:592 381 447 msgid "Permission" 382 448 msgstr "アクセス許可" 383 449 384 #: crudiator.php:399450 #: src/CrudiatorPlugin.php:442 385 451 msgid "" 386 452 "Select the permissions that allow you to view this menu. <br>It will be " … … 390 456 "ユーザーに表示されます。" 391 457 392 #: crudiator.php:479 crudiator.php:484 458 #: src/CrudiatorPlugin.php:499 459 msgid "" 460 "If you want to make custom settings, enter them here in json format." 461 "<br>Please refer to the <a href='https://crudiator.com/document/' " 462 "target='_blank'>documentation</a> for an example." 463 msgstr "" 464 "カスタム設定をjson形式で記述します。記述例は<a href=\"https://crudiator.com/" 465 "ja/document/\" target=\"_blank\">ドキュメント</a>を参考にしてください。" 466 467 #: src/CrudiatorPlugin.php:548 src/CrudiatorPlugin.php:553 393 468 msgid "Invalid value for meta_key." 394 469 msgstr "meta_keyの値が無効です。" 395 470 396 #: crudiator.php:499471 #: src/CrudiatorPlugin.php:573 397 472 msgid "This string becomes the menu name." 398 473 msgstr "この文字列がメニュー名になります。" 399 474 400 #: crudiator.php:506475 #: src/CrudiatorPlugin.php:580 401 476 msgid "Add menu name" 402 477 msgstr "メニュー名を追加" 403 478 404 #: crudiator.php:513479 #: src/CrudiatorPlugin.php:587 405 480 msgid "Menu Name" 406 481 msgstr "メニュー名" 407 482 408 #: crudiator.php:551483 #: src/CrudiatorPlugin.php:625 409 484 msgid "Show" 410 485 msgstr "表示" … … 430 505 msgstr "https://twitter.com/kahoo365" 431 506 432 #~ msgid "All" 433 #~ msgstr "すべて" 434 435 #~ msgid "" 436 #~ "Only arrays are allowed for the where option. Please check the " 437 #~ "documentation." 438 #~ msgstr "" 439 #~ "whereオプションは配列のみ許可されています。ドキュメントをご確認ください。" 440 441 #~ msgid "" 442 #~ "Only arrays are allowed for the view option. Please check the " 443 #~ "documentaion." 444 #~ msgstr "" 445 #~ "viewオプションは配列のみ許可されています。ドキュメントをご確認ください。" 446 447 #~ msgid "* required fields" 448 #~ msgstr "* は必須項目です" 449 450 #~ msgid "Unknown input type specified" 451 #~ msgstr "不明な入力タイプが指定されました" 507 #~ msgid "Crudiators" 508 #~ msgstr "Crudiators" 452 509 453 510 #~ msgid "false was returned in the callback function before data insertion" 454 511 #~ msgstr "データ挿入前のコールバック関数内でfalseが返されました" 455 512 456 #~ msgid "No value returned in callback function before data insertion"457 #~ msgstr "データ挿入前のコールバック関数で値が返ってきません"458 459 513 #~ msgid "false was returned in the callback function before data update" 460 514 #~ msgstr "データ更新前のコールバック関数内でfalseが返されました" 461 515 462 #~ msgid "No value returned in callback function before data update"463 #~ msgstr "データ更新前のコールバック関数で値が返ってきません"464 465 516 #~ msgid "false was returned in the callback function before data deletion" 466 517 #~ msgstr "データ削除前のコールバック関数内でfalseが返されました" 467 518 468 #~ msgid "No value returned in callback function before data deletion"469 #~ msgstr "データ削除前のコールバック関数で値が返ってきません"470 471 519 #~ msgid "false was returned in the callback function before bulk processing" 472 520 #~ msgstr "一括処理前のコールバック関数内でfalseが返されました" 473 521 474 #~ msgid "No value is returned in the callback function before bulk processing"475 #~ msgstr "一括処理前のコールバック関数で値が返ってきません"476 477 #~ msgid ""478 #~ "The custom settings do not work because the format of the json string in "479 #~ "the custom settings is incorrect."480 #~ msgstr ""481 #~ "カスタム設定のjson文字列の書式に誤りがある為カスタム設定は機能しません。"482 483 #~ msgid "Custom setting"484 #~ msgstr "カスタム設定"485 486 #~ msgid ""487 #~ "If you want to make custom settings, enter them here in json format."488 #~ "<br>Please refer to the <a href='https://crudiator.com/document/' "489 #~ "target='_blank'>documentation</a> for an example."490 #~ msgstr ""491 #~ "カスタム設定をjson形式で記述します。記述例は<a href=\"https://crudiator."492 #~ "com/ja/document/\" target=\"_blank\">ドキュメント</a>を参考にしてくださ"493 #~ "い。"494 495 522 #~ msgid "Takafumi Suzuki" 496 523 #~ msgstr "Takafumi Suzuki" -
crudiator/trunk/languages/crudiator.pot
r2818785 r2919445 1 # Copyright (C) 202 2Crudiator1 # Copyright (C) 2023 Crudiator 2 2 # This file is distributed under the same license as the Crudiator package. 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Crudiator 1.0.2\n"5 "Project-Id-Version: Crudiator 2.0.0\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/crudiator\n" 7 "POT-Creation-Date: 202 2-11-04 05:10:22+00:00\n"7 "POT-Creation-Date: 2023-05-31 05:49:30+00:00\n" 8 8 "MIME-Version: 1.0\n" 9 9 "Content-Type: text/plain; charset=UTF-8\n" 10 10 "Content-Transfer-Encoding: 8bit\n" 11 "PO-Revision-Date: 202 2-MO-DA HO:MI+ZONE\n"11 "PO-Revision-Date: 2023-MO-DA HO:MI+ZONE\n" 12 12 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" 13 13 "Language-Team: LANGUAGE <[email protected]>\n" 14 14 15 #: Crudiator.class.php:16215 #: src/Crudiator.php:161 16 16 msgid "equals" 17 17 msgstr "" 18 18 19 #: Crudiator.class.php:16319 #: src/Crudiator.php:162 20 20 msgid "does not equal" 21 21 msgstr "" 22 22 23 #: Crudiator.class.php:16423 #: src/Crudiator.php:163 24 24 msgid "is greater than" 25 25 msgstr "" 26 26 27 #: Crudiator.class.php:16527 #: src/Crudiator.php:164 28 28 msgid "is greater than or equal to" 29 29 msgstr "" 30 30 31 #: Crudiator.class.php:16631 #: src/Crudiator.php:165 32 32 msgid "is less than" 33 33 msgstr "" 34 34 35 #: Crudiator.class.php:16735 #: src/Crudiator.php:166 36 36 msgid "is less than or equal to" 37 37 msgstr "" 38 38 39 #: Crudiator.class.php:16839 #: src/Crudiator.php:167 40 40 msgid "contains" 41 41 msgstr "" 42 42 43 #: Crudiator.class.php:16943 #: src/Crudiator.php:168 44 44 msgid "does not contain" 45 45 msgstr "" 46 46 47 #: Crudiator.class.php:17047 #: src/Crudiator.php:169 48 48 msgid "starts with" 49 49 msgstr "" 50 50 51 #: Crudiator.class.php:17151 #: src/Crudiator.php:170 52 52 msgid "does not start with" 53 53 msgstr "" 54 54 55 #: Crudiator.class.php:17255 #: src/Crudiator.php:171 56 56 msgid "ends with" 57 57 msgstr "" 58 58 59 #: Crudiator.class.php:17359 #: src/Crudiator.php:172 60 60 msgid "does not ends with" 61 61 msgstr "" 62 62 63 #: Crudiator.class.php:17463 #: src/Crudiator.php:173 64 64 msgid "is null" 65 65 msgstr "" 66 66 67 #: Crudiator.class.php:17567 #: src/Crudiator.php:174 68 68 msgid "is not null" 69 69 msgstr "" 70 70 71 #: Crudiator.class.php:19471 #: src/Crudiator.php:193 72 72 msgid "Do you want to delete the item ?" 73 73 msgstr "" 74 74 75 #: Crudiator.class.php:19575 #: src/Crudiator.php:194 76 76 msgid "Do you want to delete this item ?" 77 77 msgstr "" 78 78 79 #: Crudiator.class.php:19679 #: src/Crudiator.php:195 80 80 msgid "Do you want to delete selected item ?" 81 81 msgstr "" 82 82 83 #: Crudiator.class.php:19783 #: src/Crudiator.php:196 84 84 msgid "Item count : " 85 85 msgstr "" 86 86 87 #: Crudiator.class.php:19887 #: src/Crudiator.php:197 88 88 msgid "Item not selected." 89 89 msgstr "" 90 90 91 #: Crudiator.class.php:19991 #: src/Crudiator.php:198 92 92 msgid "When in View or Filter view, data for that condition will be exported." 93 93 msgstr "" 94 94 95 #: Crudiator.class.php:214 crudiator.php:7795 #: src/Crudiator.php:233 src/CrudiatorPlugin.php:77 96 96 msgid "" 97 97 "Crudiator does not work properly because database connection by PDO is not " … … 99 99 msgstr "" 100 100 101 #: Crudiator.class.php:215 crudiator.php:78101 #: src/Crudiator.php:234 src/CrudiatorPlugin.php:78 102 102 msgid "Error Message: " 103 103 msgstr "" 104 104 105 #: Crudiator.class.php:225105 #: src/Crudiator.php:243 src/Crudiator.php:249 106 106 msgid "Unable to retrieve table information." 107 107 msgstr "" 108 108 109 #: Crudiator.class.php:371 109 #: src/Crudiator.php:327 src/Crudiator.php:330 110 msgid "This operation is not allowed." 111 msgstr "" 112 113 #: src/Crudiator.php:416 110 114 msgid "Number of items per page:" 111 115 msgstr "" 112 116 113 #: Crudiator.class.php:470 117 #: src/Crudiator.php:487 118 msgid "All" 119 msgstr "" 120 121 #: src/Crudiator.php:516 114 122 msgid "Bulk delete" 115 123 msgstr "" 116 124 117 #: Crudiator.class.php:493125 #: src/Crudiator.php:539 118 126 msgid "View" 119 127 msgstr "" 120 128 121 #: Crudiator.class.php:499129 #: src/Crudiator.php:545 src/Crudiator.php:1506 122 130 msgid "Edit" 123 131 msgstr "" 124 132 125 #: Crudiator.class.php:510133 #: src/Crudiator.php:556 src/Crudiator.php:1509 126 134 msgid "Delete" 127 135 msgstr "" 128 136 129 #: Crudiator.class.php:1098 137 #: src/Crudiator.php:621 138 msgid "Export" 139 msgstr "" 140 141 #: src/Crudiator.php:827 142 msgid "" 143 "Only arrays are allowed for the view option. Please check the documentaion." 144 msgstr "" 145 146 #: src/Crudiator.php:833 147 msgid "The use of MATCH is not permitted in the VIEW." 148 msgstr "" 149 150 #: src/Crudiator.php:844 151 msgid "" 152 "Only arrays are allowed for the where option. Please check the documentation." 153 msgstr "" 154 155 #: src/Crudiator.php:851 156 msgid "The use of MATCH is not permitted in the WHERE." 157 msgstr "" 158 159 #: src/Crudiator.php:1295 130 160 msgid " items deleted." 131 161 msgstr "" 132 162 133 #: Crudiator.class.php:1101163 #: src/Crudiator.php:1298 134 164 msgid "Data added." 135 165 msgstr "" 136 166 137 #: Crudiator.class.php:1104167 #: src/Crudiator.php:1301 138 168 msgid "Data updated." 139 169 msgstr "" 140 170 141 #: Crudiator.class.php:1145171 #: src/Crudiator.php:1342 142 172 msgid "An error has occurred." 143 173 msgstr "" 144 174 145 #: Crudiator.class.php:1212 175 #: src/Crudiator.php:1358 176 msgid "Back" 177 msgstr "" 178 179 #: src/Crudiator.php:1407 src/Crudiator.php:1611 src/CrudiatorPlugin.php:95 180 msgid "Add New" 181 msgstr "" 182 183 #: src/Crudiator.php:1425 146 184 msgid "Search Text" 147 185 msgstr "" 148 186 149 #: Crudiator.class.php:1244 Crudiator.class.php:1346 Crudiator.class.php:1760 150 #: Crudiator.class.php:1825 Crudiator.class.php:1833 Crudiator.class.php:1902 151 #: Crudiator.class.php:1947 187 #: src/Crudiator.php:1476 188 msgid "View Data" 189 msgstr "" 190 191 #: src/Crudiator.php:1537 192 msgid "Add New Data" 193 msgstr "" 194 195 #: src/Crudiator.php:1540 src/Crudiator.php:1615 196 msgid "* required fields" 197 msgstr "" 198 199 #: src/Crudiator.php:1576 200 msgid "Save" 201 msgstr "" 202 203 #: src/Crudiator.php:1609 204 msgid "Edit Data" 205 msgstr "" 206 207 #: src/Crudiator.php:1663 208 msgid "Save Changes" 209 msgstr "" 210 211 #: src/Crudiator.php:1671 212 msgid "Search results for" 213 msgstr "" 214 215 #: src/Crudiator.php:1691 216 msgid "filter condition : " 217 msgstr "" 218 219 #: src/Crudiator.php:1802 220 msgid "Unknown input type specified" 221 msgstr "" 222 223 #: src/Crudiator.php:1946 224 msgid "Filter Data" 225 msgstr "" 226 227 #: src/Crudiator.php:1971 228 msgid "Reset filter" 229 msgstr "" 230 231 #: src/Crudiator.php:1973 232 msgid "Cancel" 233 msgstr "" 234 235 #: src/Crudiator.php:1974 236 msgid "Start" 237 msgstr "" 238 239 #: src/Crudiator.php:2118 src/Crudiator.php:2124 src/Crudiator.php:2167 240 #: src/Crudiator.php:2259 src/Crudiator.php:2404 src/Crudiator.php:2418 152 241 msgid "Invalid parameter" 153 242 msgstr "" 154 243 155 #: Crudiator.class.php:1255 Crudiator.class.php:1357 Crudiator.class.php:1843 156 #: Crudiator.class.php:1911 244 #: src/Crudiator.php:2133 157 245 msgid "Data does not exist." 158 246 msgstr "" 159 247 160 #: Crudiator.class.php:1264 161 msgid "View Data" 162 msgstr "" 163 164 #: Crudiator.class.php:1301 165 msgid "Add New Data" 166 msgstr "" 167 168 #: Crudiator.class.php:1335 169 msgid "Save" 170 msgstr "" 171 172 #: Crudiator.class.php:1367 173 msgid "Edit Data" 174 msgstr "" 175 176 #: Crudiator.class.php:1369 crudiator.php:95 177 msgid "Add New" 178 msgstr "" 179 180 #: Crudiator.class.php:1415 181 msgid "Save Changes" 182 msgstr "" 183 184 #: Crudiator.class.php:1423 185 msgid "Search results for" 186 msgstr "" 187 188 #: Crudiator.class.php:1443 189 msgid "filter condition : " 190 msgstr "" 191 192 #: Crudiator.class.php:1576 193 msgid "Filter Data" 194 msgstr "" 195 196 #: Crudiator.class.php:1601 197 msgid "Reset filter" 198 msgstr "" 199 200 #: Crudiator.class.php:1603 201 msgid "Cancel" 202 msgstr "" 203 204 #: Crudiator.class.php:1604 205 msgid "Start" 206 msgstr "" 207 208 #: Crudiator.class.php:1788 Crudiator.class.php:1866 Crudiator.class.php:1924 209 #: Crudiator.class.php:1974 Crudiator.class.php:2022 248 #: src/Crudiator.php:2200 249 msgid "No value returned in callback function before data insertion" 250 msgstr "" 251 252 #: src/Crudiator.php:2211 src/Crudiator.php:2303 src/Crudiator.php:2367 253 #: src/Crudiator.php:2456 src/Crudiator.php:2531 210 254 msgid "Database Error : " 211 255 msgstr "" 212 256 213 #: crudiator.php:44 257 #: src/Crudiator.php:2291 258 msgid "No value returned in callback function before data update" 259 msgstr "" 260 261 #: src/Crudiator.php:2356 262 msgid "No value returned in callback function before data deletion" 263 msgstr "" 264 265 #: src/Crudiator.php:2376 266 msgid "Failed to delete." 267 msgstr "" 268 269 #: src/Crudiator.php:2434 270 msgid "No value is returned in the callback function before bulk processing" 271 msgstr "" 272 273 #: src/Crudiator.php:2450 274 msgid "The following record could not be deleted. : " 275 msgstr "" 276 277 #: src/CrudiatorPlugin.php:38 214 278 msgid "Top level menu" 215 279 msgstr "" 216 280 217 #: crudiator.php:45281 #: src/CrudiatorPlugin.php:39 218 282 msgid "Sub level menu" 219 283 msgstr "" 220 284 221 #: crudiator.php:49285 #: src/CrudiatorPlugin.php:43 222 286 msgid "Administrator" 223 287 msgstr "" 224 288 225 #: crudiator.php:50289 #: src/CrudiatorPlugin.php:44 226 290 msgid "Editor" 227 291 msgstr "" 228 292 229 #: crudiator.php:51293 #: src/CrudiatorPlugin.php:45 230 294 msgid "Author" 231 295 msgstr "" 232 296 233 #: crudiator.php:52297 #: src/CrudiatorPlugin.php:46 234 298 msgid "Contributor" 235 299 msgstr "" 236 300 237 #: crudiator.php:53301 #: src/CrudiatorPlugin.php:47 238 302 msgid "Subscriber" 239 303 msgstr "" 240 304 241 #: crudiator.php:90 242 msgid "Crudiators" 243 msgstr "" 244 245 #: crudiator.php:91 305 #. #-#-#-#-# crudiator.pot (Crudiator 2.0.0) #-#-#-#-# 306 #. Plugin Name of the plugin/theme 307 #: src/CrudiatorPlugin.php:90 src/CrudiatorPlugin.php:92 308 #: src/CrudiatorPlugin.php:93 309 msgid "Crudiator" 310 msgstr "" 311 312 #: src/CrudiatorPlugin.php:91 246 313 msgid "Table" 247 314 msgstr "" 248 315 249 #. #-#-#-#-# crudiator.pot (Crudiator 1.0.2) #-#-#-#-# 250 #. Plugin Name of the plugin/theme 251 #: crudiator.php:92 crudiator.php:93 252 msgid "Crudiator" 253 msgstr "" 254 255 #: crudiator.php:94 316 #: src/CrudiatorPlugin.php:94 256 317 msgid "All Tables" 257 318 msgstr "" 258 319 259 #: crudiator.php:96320 #: src/CrudiatorPlugin.php:96 260 321 msgid "Add New Table" 261 322 msgstr "" 262 323 263 #: crudiator.php:97324 #: src/CrudiatorPlugin.php:97 264 325 msgid "Edit Table" 265 326 msgstr "" 266 327 267 #: crudiator.php:98328 #: src/CrudiatorPlugin.php:98 268 329 msgid "New Table" 269 330 msgstr "" 270 331 271 #: crudiator.php:99332 #: src/CrudiatorPlugin.php:99 272 333 msgid "View Table" 273 334 msgstr "" 274 335 275 #: crudiator.php:100336 #: src/CrudiatorPlugin.php:100 276 337 msgid "Search Tables" 277 338 msgstr "" 278 339 279 #: crudiator.php:101340 #: src/CrudiatorPlugin.php:101 280 341 msgid "No tables found." 281 342 msgstr "" 282 343 283 #: crudiator.php:102344 #: src/CrudiatorPlugin.php:102 284 345 msgid "No tables found in Trash." 285 346 msgstr "" 286 347 287 #: crudiator.php:103348 #: src/CrudiatorPlugin.php:103 288 349 msgid "Parent Tables" 289 350 msgstr "" 290 351 291 #: crudiator.php:224 352 #: src/CrudiatorPlugin.php:241 353 msgid "" 354 "The custom settings do not work because the format of the json string in the " 355 "custom settings is incorrect." 356 msgstr "" 357 358 #: src/CrudiatorPlugin.php:260 292 359 msgid "Base setting" 293 360 msgstr "" 294 361 295 #: crudiator.php:260 crudiator.php:525 362 #: src/CrudiatorPlugin.php:269 src/CrudiatorPlugin.php:496 363 msgid "Custom setting" 364 msgstr "" 365 366 #: src/CrudiatorPlugin.php:303 src/CrudiatorPlugin.php:590 296 367 msgid "Database Table" 297 368 msgstr "" 298 369 299 #: crudiator.php:264370 #: src/CrudiatorPlugin.php:307 300 371 msgid "Select the target table for CRUD on the database." 301 372 msgstr "" 302 373 303 #: crudiator.php:268374 #: src/CrudiatorPlugin.php:311 304 375 msgid "Slug Name" 305 376 msgstr "" 306 377 307 #: crudiator.php:271378 #: src/CrudiatorPlugin.php:314 308 379 msgid "" 309 380 "Enter the slug name that will be part of the URL. Only lowercase " … … 312 383 msgstr "" 313 384 314 #: crudiator.php:282 crudiator.php:526385 #: src/CrudiatorPlugin.php:325 src/CrudiatorPlugin.php:591 315 386 msgid "Menu Type" 316 387 msgstr "" 317 388 318 #: crudiator.php:285389 #: src/CrudiatorPlugin.php:328 319 390 msgid "" 320 391 "Select whether it is a top-level menu or a submenu within the top level." 321 392 msgstr "" 322 393 323 #: crudiator.php:304394 #: src/CrudiatorPlugin.php:347 324 395 msgid "Parent Menu" 325 396 msgstr "" 326 397 327 #: crudiator.php:307398 #: src/CrudiatorPlugin.php:350 328 399 msgid "Selects the parent menu when the menu type is submenu selection." 329 400 msgstr "" 330 401 331 #: crudiator.php:338 crudiator.php:345402 #: src/CrudiatorPlugin.php:381 src/CrudiatorPlugin.php:388 332 403 msgid "Menu Position" 333 404 msgstr "" 334 405 335 #: crudiator.php:341406 #: src/CrudiatorPlugin.php:384 336 407 msgid "" 337 408 "This menu appears below the selected menu.<br>If omitted, it will appear at " … … 339 410 msgstr "" 340 411 341 #: crudiator.php:347412 #: src/CrudiatorPlugin.php:390 342 413 msgid "" 343 414 "Specify the position of the submenu to be displayed by any number from 1." … … 345 416 msgstr "" 346 417 347 #: crudiator.php:376418 #: src/CrudiatorPlugin.php:419 348 419 msgid "" 349 420 "Select the menu icon.You can check the list of icons on the official <a " … … 352 423 msgstr "" 353 424 354 #: crudiator.php:383425 #: src/CrudiatorPlugin.php:426 355 426 msgid "Menu Icon" 356 427 msgstr "" 357 428 358 #: crudiator.php:396 crudiator.php:527429 #: src/CrudiatorPlugin.php:439 src/CrudiatorPlugin.php:592 359 430 msgid "Permission" 360 431 msgstr "" 361 432 362 #: crudiator.php:399433 #: src/CrudiatorPlugin.php:442 363 434 msgid "" 364 435 "Select the permissions that allow you to view this menu. <br>It will be " … … 366 437 msgstr "" 367 438 368 #: crudiator.php:488 crudiator.php:493 439 #: src/CrudiatorPlugin.php:499 440 msgid "" 441 "If you want to make custom settings, enter them here in json format." 442 "<br>Please refer to the <a href='https://crudiator.com/document/' " 443 "target='_blank'>documentation</a> for an example." 444 msgstr "" 445 446 #: src/CrudiatorPlugin.php:548 src/CrudiatorPlugin.php:553 369 447 msgid "Invalid value for meta_key." 370 448 msgstr "" 371 449 372 #: crudiator.php:508450 #: src/CrudiatorPlugin.php:573 373 451 msgid "This string becomes the menu name." 374 452 msgstr "" 375 453 376 #: crudiator.php:515454 #: src/CrudiatorPlugin.php:580 377 455 msgid "Add menu name" 378 456 msgstr "" 379 457 380 #: crudiator.php:522458 #: src/CrudiatorPlugin.php:587 381 459 msgid "Menu Name" 382 460 msgstr "" 383 461 384 #: crudiator.php:560462 #: src/CrudiatorPlugin.php:625 385 463 msgid "Show" 386 464 msgstr "" -
crudiator/trunk/library/MyCsv.php
r2818785 r2919445 1 1 <?php 2 namespace Crudiator; 3 2 4 3 5 /**
Note: See TracChangeset
for help on using the changeset viewer.