Plugin Directory

Changeset 2919445


Ignore:
Timestamp:
05/31/2023 06:42:30 AM (3 years ago)
Author:
takafu
Message:

v2 release.

Location:
crudiator/trunk
Files:
53 added
2 deleted
6 edited

Legend:

Unmodified
Added
Removed
  • crudiator/trunk/assets/css/crudiator.css

    r2818785 r2919445  
    155155}
    156156
    157 .crudiator-debug {
     157#crudiator-debug {
    158158  position: fixed;
     159  left: 0;
     160  right: 0;
    159161  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;
    161192  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 {
    169196  margin: 4px 0;
    170197}
    171198
    172 .crudiator-debug code {
     199#crudiator-debug .crudiator-debug-wrap .crudiator-debug-content code {
    173200  padding: 0;
    174201}
     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  
    194194  });
    195195
     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  }
    196222
    197223});
  • crudiator/trunk/languages/crudiator-ja.po

    r2818785 r2919445  
    55"Project-Id-Version: Crudiator 1.0\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/crudiator\n"
    7 "POT-Creation-Date: 2022-09-22 06:10:02+00:00\n"
    8 "PO-Revision-Date: 2022-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"
    99"Last-Translator: \n"
    1010"Language-Team: \n"
     
    1616"X-Generator: Poedit 3.1.1\n"
    1717
    18 #: Crudiator.class.php:162
     18#: src/Crudiator.php:161
    1919msgid "equals"
    2020msgstr "次の値と等しい"
    2121
    22 #: Crudiator.class.php:163
     22#: src/Crudiator.php:162
    2323msgid "does not equal"
    2424msgstr "次の値と等しくない"
    2525
    26 #: Crudiator.class.php:164
     26#: src/Crudiator.php:163
    2727msgid "is greater than"
    2828msgstr "次の値より大きい"
    2929
    30 #: Crudiator.class.php:165
     30#: src/Crudiator.php:164
    3131msgid "is greater than or equal to"
    3232msgstr "次の値以上"
    3333
    34 #: Crudiator.class.php:166
     34#: src/Crudiator.php:165
    3535msgid "is less than"
    3636msgstr "次の値より小さい"
    3737
    38 #: Crudiator.class.php:167
     38#: src/Crudiator.php:166
    3939msgid "is less than or equal to"
    4040msgstr "次の値以下"
    4141
    42 #: Crudiator.class.php:168
     42#: src/Crudiator.php:167
    4343msgid "contains"
    4444msgstr "次の文字列を含む"
    4545
    46 #: Crudiator.class.php:169
     46#: src/Crudiator.php:168
    4747msgid "does not contain"
    4848msgstr "次の文字列を含まない"
    4949
    50 #: Crudiator.class.php:170
     50#: src/Crudiator.php:169
    5151msgid "starts with"
    5252msgstr "次の文字列で始まる"
    5353
    54 #: Crudiator.class.php:171
     54#: src/Crudiator.php:170
    5555msgid "does not start with"
    5656msgstr "次の文字列で始まらない"
    5757
    58 #: Crudiator.class.php:172
     58#: src/Crudiator.php:171
    5959msgid "ends with"
    6060msgstr "次の文字列で終わる"
    6161
    62 #: Crudiator.class.php:173
     62#: src/Crudiator.php:172
    6363msgid "does not ends with"
    6464msgstr "次の文字列で終わらない"
    6565
    66 #: Crudiator.class.php:174
     66#: src/Crudiator.php:173
    6767msgid "is null"
    6868msgstr "値がNULLである"
    6969
    70 #: Crudiator.class.php:175
     70#: src/Crudiator.php:174
    7171msgid "is not null"
    7272msgstr "値がNULLではない"
    7373
    74 #: Crudiator.class.php:194
     74#: src/Crudiator.php:193
    7575msgid "Do you want to delete the item ?"
    7676msgstr "次のデータを削除しても宜しいですか?"
    7777
    78 #: Crudiator.class.php:195
     78#: src/Crudiator.php:194
    7979msgid "Do you want to delete this item ?"
    8080msgstr "このデータを削除しても宜しいですか?"
    8181
    82 #: Crudiator.class.php:196
     82#: src/Crudiator.php:195
    8383msgid "Do you want to delete selected item ?"
    8484msgstr "選択したデータを削除しても宜しいですか?"
    8585
    86 #: Crudiator.class.php:197
     86#: src/Crudiator.php:196
    8787msgid "Item count : "
    8888msgstr "データ件数 : "
    8989
    90 #: Crudiator.class.php:198
     90#: src/Crudiator.php:197
    9191msgid "Item not selected."
    9292msgstr "項目が選択されていません。"
    9393
    94 #: Crudiator.class.php:199
     94#: src/Crudiator.php:198
    9595msgid "When in View or Filter view, data for that condition will be exported."
    9696msgstr ""
     
    9898"す。"
    9999
    100 #: Crudiator.class.php:214 crudiator.php:74
     100#: src/Crudiator.php:233 src/CrudiatorPlugin.php:77
    101101msgid ""
    102102"Crudiator does not work properly because database connection by PDO is not "
     
    104104msgstr "PDOによるデータベース接続が出来ない為、Crudiatorは正常に動きません。"
    105105
    106 #: Crudiator.class.php:215 crudiator.php:75
     106#: src/Crudiator.php:234 src/CrudiatorPlugin.php:78
    107107msgid "Error Message: "
    108108msgstr "エラーメッセージ: "
    109109
    110 #: Crudiator.class.php:226
     110#: src/Crudiator.php:243 src/Crudiator.php:249
    111111msgid "Unable to retrieve table information."
    112112msgstr "テーブル情報を取得できません。"
    113113
    114 #: Crudiator.class.php:376
     114#: src/Crudiator.php:327 src/Crudiator.php:330
     115msgid "This operation is not allowed."
     116msgstr "この操作は許可されていません。"
     117
     118#: src/Crudiator.php:416
    115119msgid "Number of items per page:"
    116120msgstr "ページごとに表示する項目数:"
    117121
    118 #: Crudiator.class.php:456
     122#: src/Crudiator.php:487
     123msgid "All"
     124msgstr "すべて"
     125
     126#: src/Crudiator.php:516
    119127msgid "Bulk delete"
    120128msgstr "一括削除"
    121129
    122 #: Crudiator.class.php:479
     130#: src/Crudiator.php:539
    123131msgid "View"
    124132msgstr "閲覧"
    125133
    126 #: Crudiator.class.php:485 Crudiator.class.php:1242
     134#: src/Crudiator.php:545 src/Crudiator.php:1506
    127135msgid "Edit"
    128136msgstr "編集"
    129137
    130 #: Crudiator.class.php:495 Crudiator.class.php:1245
     138#: src/Crudiator.php:556 src/Crudiator.php:1509
    131139msgid "Delete"
    132140msgstr "削除"
    133141
    134 #: Crudiator.class.php:534 Crudiator.class.php:1532
     142#: src/Crudiator.php:621
     143msgid "Export"
     144msgstr "エクスポート"
     145
     146#: src/Crudiator.php:827
     147msgid ""
     148"Only arrays are allowed for the view option. Please check the documentaion."
     149msgstr ""
     150"viewオプションは配列のみ許可されています。ドキュメントをご確認ください。"
     151
     152#: src/Crudiator.php:833
     153msgid "The use of MATCH is not permitted in the VIEW."
     154msgstr "viewオプションではMATCHの使用は禁止されています。"
     155
     156#: src/Crudiator.php:844
     157msgid ""
     158"Only arrays are allowed for the where option. Please check the documentation."
     159msgstr ""
     160"whereオプションは配列のみ許可されています。ドキュメントをご確認ください。"
     161
     162#: src/Crudiator.php:851
     163msgid "The use of MATCH is not permitted in the WHERE."
     164msgstr "whereオプションではMATCHの使用は禁止されています。"
     165
     166#: src/Crudiator.php:1295
     167msgid " items deleted."
     168msgstr " 件のデータを削除しました。"
     169
     170#: src/Crudiator.php:1298
     171msgid "Data added."
     172msgstr "データを追加しました。"
     173
     174#: src/Crudiator.php:1301
     175msgid "Data updated."
     176msgstr "データを更新しました。"
     177
     178#: src/Crudiator.php:1342
     179msgid "An error has occurred."
     180msgstr "エラーが発生しました。"
     181
     182#: src/Crudiator.php:1358
     183msgid "Back"
     184msgstr "戻る"
     185
     186#: src/Crudiator.php:1407 src/Crudiator.php:1611 src/CrudiatorPlugin.php:95
     187msgid "Add New"
     188msgstr "新規追加"
     189
     190#: src/Crudiator.php:1425
     191msgid "Search Text"
     192msgstr "テキスト検索"
     193
     194#: src/Crudiator.php:1476
     195msgid "View Data"
     196msgstr "データを詳細表示"
     197
     198#: src/Crudiator.php:1537
     199msgid "Add New Data"
     200msgstr "新規データを追加"
     201
     202#: src/Crudiator.php:1540 src/Crudiator.php:1615
     203msgid "* required fields"
     204msgstr "* は必須項目です"
     205
     206#: src/Crudiator.php:1576
     207msgid "Save"
     208msgstr "保存"
     209
     210#: src/Crudiator.php:1609
     211msgid "Edit Data"
     212msgstr "データ編集"
     213
     214#: src/Crudiator.php:1663
     215msgid "Save Changes"
     216msgstr "変更を保存"
     217
     218#: src/Crudiator.php:1671
     219msgid "Search results for"
     220msgstr "検索結果"
     221
     222#: src/Crudiator.php:1691
     223msgid "filter condition : "
     224msgstr "絞り込み条件 : "
     225
     226#: src/Crudiator.php:1802
     227msgid "Unknown input type specified"
     228msgstr "不明な入力タイプが指定されました"
     229
     230#: src/Crudiator.php:1946
    135231msgid "Filter Data"
    136232msgstr "データを絞り込み"
    137233
    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
     235msgid "Reset filter"
     236msgstr "絞り込みを解除"
     237
     238#: src/Crudiator.php:1973
     239msgid "Cancel"
     240msgstr "キャンセル"
     241
     242#: src/Crudiator.php:1974
     243msgid "Start"
     244msgstr "開始"
     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
    173248msgid "Invalid parameter"
    174249msgstr "不正なパラメータです"
    175250
    176 #: Crudiator.class.php:1210 Crudiator.class.php:1313 Crudiator.class.php:1797
    177 #: Crudiator.class.php:1863
     251#: src/Crudiator.php:2133
    178252msgid "Data does not exist."
    179253msgstr "データが存在しません。"
    180254
    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
     256msgid "No value returned in callback function before data insertion"
     257msgstr "データ挿入前のコールバック関数で値が返ってきません"
     258
     259#: src/Crudiator.php:2211 src/Crudiator.php:2303 src/Crudiator.php:2367
     260#: src/Crudiator.php:2456 src/Crudiator.php:2531
    223261msgid "Database Error : "
    224262msgstr "データベースエラー : "
    225263
    226 #: crudiator.php:41
     264#: src/Crudiator.php:2291
     265msgid "No value returned in callback function before data update"
     266msgstr "データ更新前のコールバック関数で値が返ってきません"
     267
     268#: src/Crudiator.php:2356
     269msgid "No value returned in callback function before data deletion"
     270msgstr "データ削除前のコールバック関数で値が返ってきません"
     271
     272#: src/Crudiator.php:2376
     273msgid "Failed to delete."
     274msgstr "削除に失敗しました"
     275
     276#: src/Crudiator.php:2434
     277msgid "No value is returned in the callback function before bulk processing"
     278msgstr "一括処理前のコールバック関数で値が返ってきません"
     279
     280#: src/Crudiator.php:2450
     281msgid "The following record could not be deleted. : "
     282msgstr "次のレコードは削除できませんでした: "
     283
     284#: src/CrudiatorPlugin.php:38
    227285msgid "Top level menu"
    228286msgstr "トップレベルメニュー"
    229287
    230 #: crudiator.php:42
     288#: src/CrudiatorPlugin.php:39
    231289msgid "Sub level menu"
    232290msgstr "サブレベルメニュー"
    233291
    234 #: crudiator.php:46
     292#: src/CrudiatorPlugin.php:43
    235293msgid "Administrator"
    236294msgstr "管理者"
    237295
    238 #: crudiator.php:47
     296#: src/CrudiatorPlugin.php:44
    239297msgid "Editor"
    240298msgstr "編集者"
    241299
    242 #: crudiator.php:48
     300#: src/CrudiatorPlugin.php:45
    243301msgid "Author"
    244302msgstr "投稿者"
    245303
    246 #: crudiator.php:49
     304#: src/CrudiatorPlugin.php:46
    247305msgid "Contributor"
    248306msgstr "寄稿者"
    249307
    250 #: crudiator.php:50
     308#: src/CrudiatorPlugin.php:47
    251309msgid "Subscriber"
    252310msgstr "購読者"
    253311
    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
     315msgid "Crudiator"
     316msgstr "Crudiator"
     317
     318#: src/CrudiatorPlugin.php:91
    259319msgid "Table"
    260320msgstr "テーブル"
    261321
    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
    268323msgid "All Tables"
    269324msgstr "テーブル一覧"
    270325
    271 #: crudiator.php:95
     326#: src/CrudiatorPlugin.php:96
    272327msgid "Add New Table"
    273328msgstr "新しいテーブルを追加"
    274329
    275 #: crudiator.php:96
     330#: src/CrudiatorPlugin.php:97
    276331msgid "Edit Table"
    277332msgstr "テーブルを編集"
    278333
    279 #: crudiator.php:97
     334#: src/CrudiatorPlugin.php:98
    280335msgid "New Table"
    281336msgstr "新しいテーブル"
    282337
    283 #: crudiator.php:98
     338#: src/CrudiatorPlugin.php:99
    284339msgid "View Table"
    285340msgstr "テーブルを閲覧"
    286341
    287 #: crudiator.php:99
     342#: src/CrudiatorPlugin.php:100
    288343msgid "Search Tables"
    289344msgstr "テーブルを検索"
    290345
    291 #: crudiator.php:100
     346#: src/CrudiatorPlugin.php:101
    292347msgid "No tables found."
    293348msgstr "テーブルが見つかりませんでした。"
    294349
    295 #: crudiator.php:101
     350#: src/CrudiatorPlugin.php:102
    296351msgid "No tables found in Trash."
    297352msgstr "ゴミ箱内にテーブルが見つかりませんでした。"
    298353
    299 #: crudiator.php:102
     354#: src/CrudiatorPlugin.php:103
    300355msgid "Parent Tables"
    301356msgstr "親テーブル"
    302357
    303 #: crudiator.php:223
     358#: src/CrudiatorPlugin.php:241
     359msgid ""
     360"The custom settings do not work because the format of the json string in the "
     361"custom settings is incorrect."
     362msgstr ""
     363"カスタム設定のjson文字列の書式に誤りがある為カスタム設定は機能しません。"
     364
     365#: src/CrudiatorPlugin.php:260
    304366msgid "Base setting"
    305367msgstr "基本設定"
    306368
    307 #: crudiator.php:259 crudiator.php:516
     369#: src/CrudiatorPlugin.php:269 src/CrudiatorPlugin.php:496
     370msgid "Custom setting"
     371msgstr "カスタム設定"
     372
     373#: src/CrudiatorPlugin.php:303 src/CrudiatorPlugin.php:590
    308374msgid "Database Table"
    309375msgstr "データベーステーブル"
    310376
    311 #: crudiator.php:263
     377#: src/CrudiatorPlugin.php:307
    312378msgid "Select the target table for CRUD on the database."
    313379msgstr "データベース上のCRUDの対象となるテーブルを選択します。"
    314380
    315 #: crudiator.php:267
     381#: src/CrudiatorPlugin.php:311
    316382msgid "Slug Name"
    317383msgstr "スラッグ名"
    318384
    319 #: crudiator.php:270
     385#: src/CrudiatorPlugin.php:314
    320386msgid ""
    321387"Enter the slug name that will be part of the URL. Only lowercase "
     
    327393"ます。"
    328394
    329 #: crudiator.php:282 crudiator.php:517
     395#: src/CrudiatorPlugin.php:325 src/CrudiatorPlugin.php:591
    330396msgid "Menu Type"
    331397msgstr "メニュータイプ"
    332398
    333 #: crudiator.php:285
     399#: src/CrudiatorPlugin.php:328
    334400msgid ""
    335401"Select whether it is a top-level menu or a submenu within the top level."
    336402msgstr "トップレベルのメニューか、トップレベル内のサブメニューかを選択します。"
    337403
    338 #: crudiator.php:304
     404#: src/CrudiatorPlugin.php:347
    339405msgid "Parent Menu"
    340406msgstr "サブメニュー時の親メニュー"
    341407
    342 #: crudiator.php:307
     408#: src/CrudiatorPlugin.php:350
    343409msgid "Selects the parent menu when the menu type is submenu selection."
    344410msgstr "メニュータイプがサブメニュー選択時に、親メニューを選択します。"
    345411
    346 #: crudiator.php:338 crudiator.php:345
     412#: src/CrudiatorPlugin.php:381 src/CrudiatorPlugin.php:388
    347413msgid "Menu Position"
    348414msgstr "メニュー位置"
    349415
    350 #: crudiator.php:341
     416#: src/CrudiatorPlugin.php:384
    351417msgid ""
    352418"This menu appears below the selected menu.<br>If omitted, it will appear at "
     
    356422"ニューの一番下に表示されます。"
    357423
    358 #: crudiator.php:347
     424#: src/CrudiatorPlugin.php:390
    359425msgid ""
    360426"Specify the position of the submenu to be displayed by any number from 1."
     
    364430"合は登録順に表示されます。"
    365431
    366 #: crudiator.php:376
     432#: src/CrudiatorPlugin.php:419
    367433msgid ""
    368434"Select the menu icon.You can check the list of icons on the official <a "
     
    374440"ン一覧を確認出来ます。"
    375441
    376 #: crudiator.php:383
     442#: src/CrudiatorPlugin.php:426
    377443msgid "Menu Icon"
    378444msgstr "メニューアイコン"
    379445
    380 #: crudiator.php:396 crudiator.php:518
     446#: src/CrudiatorPlugin.php:439 src/CrudiatorPlugin.php:592
    381447msgid "Permission"
    382448msgstr "アクセス許可"
    383449
    384 #: crudiator.php:399
     450#: src/CrudiatorPlugin.php:442
    385451msgid ""
    386452"Select the permissions that allow you to view this menu. <br>It will be "
     
    390456"ユーザーに表示されます。"
    391457
    392 #: crudiator.php:479 crudiator.php:484
     458#: src/CrudiatorPlugin.php:499
     459msgid ""
     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."
     463msgstr ""
     464"カスタム設定をjson形式で記述します。記述例は<a href=\"https://crudiator.com/"
     465"ja/document/\" target=\"_blank\">ドキュメント</a>を参考にしてください。"
     466
     467#: src/CrudiatorPlugin.php:548 src/CrudiatorPlugin.php:553
    393468msgid "Invalid value for meta_key."
    394469msgstr "meta_keyの値が無効です。"
    395470
    396 #: crudiator.php:499
     471#: src/CrudiatorPlugin.php:573
    397472msgid "This string becomes the menu name."
    398473msgstr "この文字列がメニュー名になります。"
    399474
    400 #: crudiator.php:506
     475#: src/CrudiatorPlugin.php:580
    401476msgid "Add menu name"
    402477msgstr "メニュー名を追加"
    403478
    404 #: crudiator.php:513
     479#: src/CrudiatorPlugin.php:587
    405480msgid "Menu Name"
    406481msgstr "メニュー名"
    407482
    408 #: crudiator.php:551
     483#: src/CrudiatorPlugin.php:625
    409484msgid "Show"
    410485msgstr "表示"
     
    430505msgstr "https://twitter.com/kahoo365"
    431506
    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"
    452509
    453510#~ msgid "false was returned in the callback function before data insertion"
    454511#~ msgstr "データ挿入前のコールバック関数内でfalseが返されました"
    455512
    456 #~ msgid "No value returned in callback function before data insertion"
    457 #~ msgstr "データ挿入前のコールバック関数で値が返ってきません"
    458 
    459513#~ msgid "false was returned in the callback function before data update"
    460514#~ msgstr "データ更新前のコールバック関数内でfalseが返されました"
    461515
    462 #~ msgid "No value returned in callback function before data update"
    463 #~ msgstr "データ更新前のコールバック関数で値が返ってきません"
    464 
    465516#~ msgid "false was returned in the callback function before data deletion"
    466517#~ msgstr "データ削除前のコールバック関数内でfalseが返されました"
    467518
    468 #~ msgid "No value returned in callback function before data deletion"
    469 #~ msgstr "データ削除前のコールバック関数で値が返ってきません"
    470 
    471519#~ msgid "false was returned in the callback function before bulk processing"
    472520#~ msgstr "一括処理前のコールバック関数内でfalseが返されました"
    473521
    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 
    495522#~ msgid "Takafumi Suzuki"
    496523#~ msgstr "Takafumi Suzuki"
  • crudiator/trunk/languages/crudiator.pot

    r2818785 r2919445  
    1 # Copyright (C) 2022 Crudiator
     1# Copyright (C) 2023 Crudiator
    22# This file is distributed under the same license as the Crudiator package.
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Crudiator 1.0.2\n"
     5"Project-Id-Version: Crudiator 2.0.0\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/crudiator\n"
    7 "POT-Creation-Date: 2022-11-04 05:10:22+00:00\n"
     7"POT-Creation-Date: 2023-05-31 05:49:30+00:00\n"
    88"MIME-Version: 1.0\n"
    99"Content-Type: text/plain; charset=UTF-8\n"
    1010"Content-Transfer-Encoding: 8bit\n"
    11 "PO-Revision-Date: 2022-MO-DA HO:MI+ZONE\n"
     11"PO-Revision-Date: 2023-MO-DA HO:MI+ZONE\n"
    1212"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
    1313"Language-Team: LANGUAGE <[email protected]>\n"
    1414
    15 #: Crudiator.class.php:162
     15#: src/Crudiator.php:161
    1616msgid "equals"
    1717msgstr ""
    1818
    19 #: Crudiator.class.php:163
     19#: src/Crudiator.php:162
    2020msgid "does not equal"
    2121msgstr ""
    2222
    23 #: Crudiator.class.php:164
     23#: src/Crudiator.php:163
    2424msgid "is greater than"
    2525msgstr ""
    2626
    27 #: Crudiator.class.php:165
     27#: src/Crudiator.php:164
    2828msgid "is greater than or equal to"
    2929msgstr ""
    3030
    31 #: Crudiator.class.php:166
     31#: src/Crudiator.php:165
    3232msgid "is less than"
    3333msgstr ""
    3434
    35 #: Crudiator.class.php:167
     35#: src/Crudiator.php:166
    3636msgid "is less than or equal to"
    3737msgstr ""
    3838
    39 #: Crudiator.class.php:168
     39#: src/Crudiator.php:167
    4040msgid "contains"
    4141msgstr ""
    4242
    43 #: Crudiator.class.php:169
     43#: src/Crudiator.php:168
    4444msgid "does not contain"
    4545msgstr ""
    4646
    47 #: Crudiator.class.php:170
     47#: src/Crudiator.php:169
    4848msgid "starts with"
    4949msgstr ""
    5050
    51 #: Crudiator.class.php:171
     51#: src/Crudiator.php:170
    5252msgid "does not start with"
    5353msgstr ""
    5454
    55 #: Crudiator.class.php:172
     55#: src/Crudiator.php:171
    5656msgid "ends with"
    5757msgstr ""
    5858
    59 #: Crudiator.class.php:173
     59#: src/Crudiator.php:172
    6060msgid "does not ends with"
    6161msgstr ""
    6262
    63 #: Crudiator.class.php:174
     63#: src/Crudiator.php:173
    6464msgid "is null"
    6565msgstr ""
    6666
    67 #: Crudiator.class.php:175
     67#: src/Crudiator.php:174
    6868msgid "is not null"
    6969msgstr ""
    7070
    71 #: Crudiator.class.php:194
     71#: src/Crudiator.php:193
    7272msgid "Do you want to delete the item ?"
    7373msgstr ""
    7474
    75 #: Crudiator.class.php:195
     75#: src/Crudiator.php:194
    7676msgid "Do you want to delete this item ?"
    7777msgstr ""
    7878
    79 #: Crudiator.class.php:196
     79#: src/Crudiator.php:195
    8080msgid "Do you want to delete selected item ?"
    8181msgstr ""
    8282
    83 #: Crudiator.class.php:197
     83#: src/Crudiator.php:196
    8484msgid "Item count : "
    8585msgstr ""
    8686
    87 #: Crudiator.class.php:198
     87#: src/Crudiator.php:197
    8888msgid "Item not selected."
    8989msgstr ""
    9090
    91 #: Crudiator.class.php:199
     91#: src/Crudiator.php:198
    9292msgid "When in View or Filter view, data for that condition will be exported."
    9393msgstr ""
    9494
    95 #: Crudiator.class.php:214 crudiator.php:77
     95#: src/Crudiator.php:233 src/CrudiatorPlugin.php:77
    9696msgid ""
    9797"Crudiator does not work properly because database connection by PDO is not "
     
    9999msgstr ""
    100100
    101 #: Crudiator.class.php:215 crudiator.php:78
     101#: src/Crudiator.php:234 src/CrudiatorPlugin.php:78
    102102msgid "Error Message: "
    103103msgstr ""
    104104
    105 #: Crudiator.class.php:225
     105#: src/Crudiator.php:243 src/Crudiator.php:249
    106106msgid "Unable to retrieve table information."
    107107msgstr ""
    108108
    109 #: Crudiator.class.php:371
     109#: src/Crudiator.php:327 src/Crudiator.php:330
     110msgid "This operation is not allowed."
     111msgstr ""
     112
     113#: src/Crudiator.php:416
    110114msgid "Number of items per page:"
    111115msgstr ""
    112116
    113 #: Crudiator.class.php:470
     117#: src/Crudiator.php:487
     118msgid "All"
     119msgstr ""
     120
     121#: src/Crudiator.php:516
    114122msgid "Bulk delete"
    115123msgstr ""
    116124
    117 #: Crudiator.class.php:493
     125#: src/Crudiator.php:539
    118126msgid "View"
    119127msgstr ""
    120128
    121 #: Crudiator.class.php:499
     129#: src/Crudiator.php:545 src/Crudiator.php:1506
    122130msgid "Edit"
    123131msgstr ""
    124132
    125 #: Crudiator.class.php:510
     133#: src/Crudiator.php:556 src/Crudiator.php:1509
    126134msgid "Delete"
    127135msgstr ""
    128136
    129 #: Crudiator.class.php:1098
     137#: src/Crudiator.php:621
     138msgid "Export"
     139msgstr ""
     140
     141#: src/Crudiator.php:827
     142msgid ""
     143"Only arrays are allowed for the view option. Please check the documentaion."
     144msgstr ""
     145
     146#: src/Crudiator.php:833
     147msgid "The use of MATCH is not permitted in the VIEW."
     148msgstr ""
     149
     150#: src/Crudiator.php:844
     151msgid ""
     152"Only arrays are allowed for the where option. Please check the documentation."
     153msgstr ""
     154
     155#: src/Crudiator.php:851
     156msgid "The use of MATCH is not permitted in the WHERE."
     157msgstr ""
     158
     159#: src/Crudiator.php:1295
    130160msgid " items deleted."
    131161msgstr ""
    132162
    133 #: Crudiator.class.php:1101
     163#: src/Crudiator.php:1298
    134164msgid "Data added."
    135165msgstr ""
    136166
    137 #: Crudiator.class.php:1104
     167#: src/Crudiator.php:1301
    138168msgid "Data updated."
    139169msgstr ""
    140170
    141 #: Crudiator.class.php:1145
     171#: src/Crudiator.php:1342
    142172msgid "An error has occurred."
    143173msgstr ""
    144174
    145 #: Crudiator.class.php:1212
     175#: src/Crudiator.php:1358
     176msgid "Back"
     177msgstr ""
     178
     179#: src/Crudiator.php:1407 src/Crudiator.php:1611 src/CrudiatorPlugin.php:95
     180msgid "Add New"
     181msgstr ""
     182
     183#: src/Crudiator.php:1425
    146184msgid "Search Text"
    147185msgstr ""
    148186
    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
     188msgid "View Data"
     189msgstr ""
     190
     191#: src/Crudiator.php:1537
     192msgid "Add New Data"
     193msgstr ""
     194
     195#: src/Crudiator.php:1540 src/Crudiator.php:1615
     196msgid "* required fields"
     197msgstr ""
     198
     199#: src/Crudiator.php:1576
     200msgid "Save"
     201msgstr ""
     202
     203#: src/Crudiator.php:1609
     204msgid "Edit Data"
     205msgstr ""
     206
     207#: src/Crudiator.php:1663
     208msgid "Save Changes"
     209msgstr ""
     210
     211#: src/Crudiator.php:1671
     212msgid "Search results for"
     213msgstr ""
     214
     215#: src/Crudiator.php:1691
     216msgid "filter condition : "
     217msgstr ""
     218
     219#: src/Crudiator.php:1802
     220msgid "Unknown input type specified"
     221msgstr ""
     222
     223#: src/Crudiator.php:1946
     224msgid "Filter Data"
     225msgstr ""
     226
     227#: src/Crudiator.php:1971
     228msgid "Reset filter"
     229msgstr ""
     230
     231#: src/Crudiator.php:1973
     232msgid "Cancel"
     233msgstr ""
     234
     235#: src/Crudiator.php:1974
     236msgid "Start"
     237msgstr ""
     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
    152241msgid "Invalid parameter"
    153242msgstr ""
    154243
    155 #: Crudiator.class.php:1255 Crudiator.class.php:1357 Crudiator.class.php:1843
    156 #: Crudiator.class.php:1911
     244#: src/Crudiator.php:2133
    157245msgid "Data does not exist."
    158246msgstr ""
    159247
    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
     249msgid "No value returned in callback function before data insertion"
     250msgstr ""
     251
     252#: src/Crudiator.php:2211 src/Crudiator.php:2303 src/Crudiator.php:2367
     253#: src/Crudiator.php:2456 src/Crudiator.php:2531
    210254msgid "Database Error : "
    211255msgstr ""
    212256
    213 #: crudiator.php:44
     257#: src/Crudiator.php:2291
     258msgid "No value returned in callback function before data update"
     259msgstr ""
     260
     261#: src/Crudiator.php:2356
     262msgid "No value returned in callback function before data deletion"
     263msgstr ""
     264
     265#: src/Crudiator.php:2376
     266msgid "Failed to delete."
     267msgstr ""
     268
     269#: src/Crudiator.php:2434
     270msgid "No value is returned in the callback function before bulk processing"
     271msgstr ""
     272
     273#: src/Crudiator.php:2450
     274msgid "The following record could not be deleted. : "
     275msgstr ""
     276
     277#: src/CrudiatorPlugin.php:38
    214278msgid "Top level menu"
    215279msgstr ""
    216280
    217 #: crudiator.php:45
     281#: src/CrudiatorPlugin.php:39
    218282msgid "Sub level menu"
    219283msgstr ""
    220284
    221 #: crudiator.php:49
     285#: src/CrudiatorPlugin.php:43
    222286msgid "Administrator"
    223287msgstr ""
    224288
    225 #: crudiator.php:50
     289#: src/CrudiatorPlugin.php:44
    226290msgid "Editor"
    227291msgstr ""
    228292
    229 #: crudiator.php:51
     293#: src/CrudiatorPlugin.php:45
    230294msgid "Author"
    231295msgstr ""
    232296
    233 #: crudiator.php:52
     297#: src/CrudiatorPlugin.php:46
    234298msgid "Contributor"
    235299msgstr ""
    236300
    237 #: crudiator.php:53
     301#: src/CrudiatorPlugin.php:47
    238302msgid "Subscriber"
    239303msgstr ""
    240304
    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
     309msgid "Crudiator"
     310msgstr ""
     311
     312#: src/CrudiatorPlugin.php:91
    246313msgid "Table"
    247314msgstr ""
    248315
    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
    256317msgid "All Tables"
    257318msgstr ""
    258319
    259 #: crudiator.php:96
     320#: src/CrudiatorPlugin.php:96
    260321msgid "Add New Table"
    261322msgstr ""
    262323
    263 #: crudiator.php:97
     324#: src/CrudiatorPlugin.php:97
    264325msgid "Edit Table"
    265326msgstr ""
    266327
    267 #: crudiator.php:98
     328#: src/CrudiatorPlugin.php:98
    268329msgid "New Table"
    269330msgstr ""
    270331
    271 #: crudiator.php:99
     332#: src/CrudiatorPlugin.php:99
    272333msgid "View Table"
    273334msgstr ""
    274335
    275 #: crudiator.php:100
     336#: src/CrudiatorPlugin.php:100
    276337msgid "Search Tables"
    277338msgstr ""
    278339
    279 #: crudiator.php:101
     340#: src/CrudiatorPlugin.php:101
    280341msgid "No tables found."
    281342msgstr ""
    282343
    283 #: crudiator.php:102
     344#: src/CrudiatorPlugin.php:102
    284345msgid "No tables found in Trash."
    285346msgstr ""
    286347
    287 #: crudiator.php:103
     348#: src/CrudiatorPlugin.php:103
    288349msgid "Parent Tables"
    289350msgstr ""
    290351
    291 #: crudiator.php:224
     352#: src/CrudiatorPlugin.php:241
     353msgid ""
     354"The custom settings do not work because the format of the json string in the "
     355"custom settings is incorrect."
     356msgstr ""
     357
     358#: src/CrudiatorPlugin.php:260
    292359msgid "Base setting"
    293360msgstr ""
    294361
    295 #: crudiator.php:260 crudiator.php:525
     362#: src/CrudiatorPlugin.php:269 src/CrudiatorPlugin.php:496
     363msgid "Custom setting"
     364msgstr ""
     365
     366#: src/CrudiatorPlugin.php:303 src/CrudiatorPlugin.php:590
    296367msgid "Database Table"
    297368msgstr ""
    298369
    299 #: crudiator.php:264
     370#: src/CrudiatorPlugin.php:307
    300371msgid "Select the target table for CRUD on the database."
    301372msgstr ""
    302373
    303 #: crudiator.php:268
     374#: src/CrudiatorPlugin.php:311
    304375msgid "Slug Name"
    305376msgstr ""
    306377
    307 #: crudiator.php:271
     378#: src/CrudiatorPlugin.php:314
    308379msgid ""
    309380"Enter the slug name that will be part of the URL. Only lowercase "
     
    312383msgstr ""
    313384
    314 #: crudiator.php:282 crudiator.php:526
     385#: src/CrudiatorPlugin.php:325 src/CrudiatorPlugin.php:591
    315386msgid "Menu Type"
    316387msgstr ""
    317388
    318 #: crudiator.php:285
     389#: src/CrudiatorPlugin.php:328
    319390msgid ""
    320391"Select whether it is a top-level menu or a submenu within the top level."
    321392msgstr ""
    322393
    323 #: crudiator.php:304
     394#: src/CrudiatorPlugin.php:347
    324395msgid "Parent Menu"
    325396msgstr ""
    326397
    327 #: crudiator.php:307
     398#: src/CrudiatorPlugin.php:350
    328399msgid "Selects the parent menu when the menu type is submenu selection."
    329400msgstr ""
    330401
    331 #: crudiator.php:338 crudiator.php:345
     402#: src/CrudiatorPlugin.php:381 src/CrudiatorPlugin.php:388
    332403msgid "Menu Position"
    333404msgstr ""
    334405
    335 #: crudiator.php:341
     406#: src/CrudiatorPlugin.php:384
    336407msgid ""
    337408"This menu appears below the selected menu.<br>If omitted, it will appear at "
     
    339410msgstr ""
    340411
    341 #: crudiator.php:347
     412#: src/CrudiatorPlugin.php:390
    342413msgid ""
    343414"Specify the position of the submenu to be displayed by any number from 1."
     
    345416msgstr ""
    346417
    347 #: crudiator.php:376
     418#: src/CrudiatorPlugin.php:419
    348419msgid ""
    349420"Select the menu icon.You can check the list of icons on the official <a "
     
    352423msgstr ""
    353424
    354 #: crudiator.php:383
     425#: src/CrudiatorPlugin.php:426
    355426msgid "Menu Icon"
    356427msgstr ""
    357428
    358 #: crudiator.php:396 crudiator.php:527
     429#: src/CrudiatorPlugin.php:439 src/CrudiatorPlugin.php:592
    359430msgid "Permission"
    360431msgstr ""
    361432
    362 #: crudiator.php:399
     433#: src/CrudiatorPlugin.php:442
    363434msgid ""
    364435"Select the permissions that allow you to view this menu. <br>It will be "
     
    366437msgstr ""
    367438
    368 #: crudiator.php:488 crudiator.php:493
     439#: src/CrudiatorPlugin.php:499
     440msgid ""
     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."
     444msgstr ""
     445
     446#: src/CrudiatorPlugin.php:548 src/CrudiatorPlugin.php:553
    369447msgid "Invalid value for meta_key."
    370448msgstr ""
    371449
    372 #: crudiator.php:508
     450#: src/CrudiatorPlugin.php:573
    373451msgid "This string becomes the menu name."
    374452msgstr ""
    375453
    376 #: crudiator.php:515
     454#: src/CrudiatorPlugin.php:580
    377455msgid "Add menu name"
    378456msgstr ""
    379457
    380 #: crudiator.php:522
     458#: src/CrudiatorPlugin.php:587
    381459msgid "Menu Name"
    382460msgstr ""
    383461
    384 #: crudiator.php:560
     462#: src/CrudiatorPlugin.php:625
    385463msgid "Show"
    386464msgstr ""
  • crudiator/trunk/library/MyCsv.php

    r2818785 r2919445  
    11<?php
     2namespace Crudiator;
     3
    24
    35/**
Note: See TracChangeset for help on using the changeset viewer.