Plugin Directory

Changeset 2899017


Ignore:
Timestamp:
04/14/2023 06:41:36 AM (3 years ago)
Author:
thingsym
Message:

Update to version 1.7.0 from GitHub

Location:
wp-auto-updater
Files:
12 edited
1 copied

Legend:

Unmodified
Added
Removed
  • wp-auto-updater/tags/1.7.0/inc/class-wp-auto-updater.php

    r2685869 r2899017  
    5050     *   default options
    5151     *
    52      *   @type string core
    53      *   @type bool   theme    minor|major|minor-only|pre-version|null
     52     *   @type string core    minor|major|minor-only|pre-version|null
     53     *   @type bool   theme
    5454     *   @type bool   plugin
    5555     *   @type bool   translation
     
    5959     *   }
    6060     *   @type array  schedule {
    61      *       @type string interval
    62      *       @type int    day
    63      *       @type string weekday
    64      *       @type int    hour
    65      *       @type int    minute
     61     *       @type string      interval
     62     *       @type int|string  day
     63     *       @type string      weekday
     64     *       @type int         hour
     65     *       @type int         minute
    6666     *   }
    6767     * }
     
    181181        add_filter( 'plugins_auto_update_enabled', '__return_false' );
    182182        add_filter( 'themes_auto_update_enabled', '__return_false' );
     183        add_action( 'after_core_auto_updates_settings', array( $this, 'hidden_auto_update_status' ) );
    183184    }
    184185
     
    188189     * @access public
    189190     *
    190      * @return void
     191     * @return bool
    191192     *
    192193     * @since 1.6.1
     
    218219        $option = $this->get_options( 'schedule' );
    219220        do_action( 'wp_auto_updater/set_cron', $option );
     221
     222        // Set auto_update_core_major to disable.
     223        update_site_option( 'auto_update_core_major' , 'disable' );
    220224    }
    221225
     
    471475        elseif ( 'monthly' === $schedule['interval'] ) {
    472476            $diff_last_day_sec = 0;
     477
     478            if ( 'last_day' === $schedule['day'] ) {
     479                $schedule['day'] = 31;
     480            }
    473481
    474482            if ( 28 <= $schedule['day'] ) {
     
    977985     * @access public
    978986     *
    979      * @return void
     987     * @return boolean
    980988     *
    981989     * @since 1.0.0
    982990     */
    983991    public function load_textdomain() {
    984         load_plugin_textdomain(
     992        return load_plugin_textdomain(
    985993            'wp-auto-updater',
    986994            false,
    987             dirname( plugin_basename( __WP_AUTO_UPDATER__ ) ) . '/languages/'
     995            plugin_dir_path( __WP_AUTO_UPDATER__ ) . 'languages'
    988996        );
    989997    }
     
    10981106        ?>
    10991107<select name="wp_auto_updater_options[core]">
    1100 <option value="minor"<?php selected( 'minor', $option ); ?>><?php esc_html_e( 'Minor Version Update (Recommended)', 'wp-auto-updater' ); ?></option>
     1108<option value="minor"<?php selected( 'minor', $option ); ?>><?php esc_html_e( 'Minor Version Update', 'wp-auto-updater' ); ?></option>
    11011109<option value="major"<?php selected( 'major', $option ); ?>><?php esc_html_e( 'Major Version Update', 'wp-auto-updater' ); ?></option>
    11021110<option value="minor-only"<?php selected( 'minor-only', $option ); ?>><?php esc_html_e( 'Minor Only Version Update', 'wp-auto-updater' ); ?></option>
     
    12891297        foreach ( $schedule_interval as $key => $label ) {
    12901298            // phpcs:ignore WordPress.WP.I18n.NonSingularStringLiteralText
    1291             echo '<p><label><input type="radio" name="wp_auto_updater_options[schedule][interval]" value="' . esc_attr( $key ) . '"' . checked( $key, $option['interval'], false ) . '> ' . esc_html__( $label, 'wp-auto-updater' ) . '</label></p>';
     1299            echo '<p><label><input type="radio" name="wp_auto_updater_options[schedule][interval]" value="' . esc_attr( $key ) . '"' . checked( $key, $option['interval'], false ) . '> ' . esc_html( $label ) . '</label></p>';
    12921300        }
    12931301    }
     
    13131321            echo '<option value="' . esc_attr( $day ) . '"' . selected( $day, $option['day'], false ) . '>' . esc_html( $day ) . '</option>';
    13141322        }
     1323        echo '<option value="last_day"' . selected( 'last_day', $option['day'], false ) . '>' . esc_html__( 'last day', 'wp-auto-updater' ) . '</option>';
    13151324        ?>
    13161325</select></p>
     
    14601469        $output['schedule']['interval'] = isset( $input['schedule']['interval'] ) ? $input['schedule']['interval'] : $this->default_options['schedule']['interval'];
    14611470
    1462         $output['schedule']['day'] = isset( $input['schedule']['day'] ) ? (int) $input['schedule']['day'] : (int) $this->default_options['schedule']['day'];
     1471        $output['schedule']['day'] = (int) $this->default_options['schedule']['day'];
     1472        if ( isset( $input['schedule']['day'] ) ) {
     1473            if ( $input['schedule']['day'] === 'last_day' ) {
     1474                $output['schedule']['day'] = $input['schedule']['day'];
     1475            }
     1476            else {
     1477                $output['schedule']['day'] = (int) $input['schedule']['day'];
     1478            }
     1479        }
    14631480
    14641481        $output['schedule']['weekday'] = empty( $input['schedule']['weekday'] ) ? $this->default_options['schedule']['weekday'] : strtolower( $input['schedule']['weekday'] );
     
    15631580
    15641581    /**
     1582     * Hidden auto update status on the update-core screen
     1583     *
     1584     * @access public
     1585     *
     1586     * @return void
     1587     *
     1588     * @since 1.6.4
     1589     */
     1590    public function hidden_auto_update_status( $auto_update_settings ) {
     1591?>
     1592<style>
     1593.auto-update-status {
     1594    display: none
     1595}
     1596</style><?php
     1597    }
     1598
     1599    /**
    15651600     * Display notice.
    15661601     *
    1567      * @access public static
     1602     * @access public
    15681603     *
    15691604     * @return void
  • wp-auto-updater/tags/1.7.0/languages/wp-auto-updater-ja.po

    r2685869 r2899017  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: WP Auto Updater 1.6.3\n"
     5"Project-Id-Version: WP Auto Updater 1.7.0\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-auto-updater\n"
     7"POT-Creation-Date: 2023-04-14T06:05:38+00:00\n"
     8"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    79"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
    810"Language-Team: LANGUAGE <LL@li.org>\n"
     11"Language: \n"
    912"MIME-Version: 1.0\n"
    1013"Content-Type: text/plain; charset=UTF-8\n"
    1114"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2021-06-03T12:24:43+00:00\n"
    13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1415"X-Generator: WP-CLI 2.4.0\n"
    1516"X-Domain: wp-auto-updater\n"
    1617
    1718#. Plugin Name of the plugin
    18 #: inc/class-wp-auto-updater.php:950
     19#: inc/class-wp-auto-updater.php:1011
    1920msgid "WP Auto Updater"
    2021msgstr "WP Auto Updater"
     
    2526
    2627#. Description of the plugin
    27 msgid "This plugin enables automatic updates of WordPress Core, Themes, Plugins and Translations. Version control of WordPress Core makes automatic update more safely."
    28 msgstr "WP Auto Updater は、WordPress 本体、テーマ、プラグイン、翻訳の自動更新を有効にします。WordPress 本体のバージョンをコントロールして安全な自動更新を実現します。"
     28msgid ""
     29"This plugin enables automatic updates of WordPress Core, Themes, Plugins and "
     30"Translations. Version control of WordPress Core makes automatic update more "
     31"safely."
     32msgstr ""
     33"WP Auto Updater は、WordPress 本体、テーマ、プラグイン、翻訳の自動更新を有効"
     34"にします。WordPress 本体のバージョンをコントロールして安全な自動更新を実現し"
     35"ます。"
    2936
    3037#. Author of the plugin
     
    3744
    3845#. translators: table create notice: 1: table name, 2: table version
    39 #: inc/class-wp-auto-updater-history.php:179
     46#: inc/class-wp-auto-updater-history.php:180
    4047msgid "Table <strong>%1$s (%2$s)</strong> create succeeded."
    4148msgstr "テーブル <strong>%1$s (%2$s)</strong> を作成しました。"
    4249
    4350#. translators: table update notice: 1: table name, 2: table version
    44 #: inc/class-wp-auto-updater-history.php:198
     51#: inc/class-wp-auto-updater-history.php:199
    4552msgid "Table <strong>%1$s (%2$s)</strong> update succeeded."
    4653msgstr "テーブル <strong>%1$s (%2$s)</strong> をアップデートしました。"
    4754
    48 #: inc/class-wp-auto-updater-history.php:443
    4955#: inc/class-wp-auto-updater-history.php:444
    50 #: inc/class-wp-auto-updater-history.php:593
     56#: inc/class-wp-auto-updater-history.php:445
     57#: inc/class-wp-auto-updater-history.php:634
    5158msgid "Update History"
    5259msgstr "アップデート履歴"
    5360
    54 #: inc/class-wp-auto-updater-history.php:498
     61#: inc/class-wp-auto-updater-history.php:524
    5562msgid "First page"
    5663msgstr "はじめのページへ"
    5764
    58 #: inc/class-wp-auto-updater-history.php:512
     65#: inc/class-wp-auto-updater-history.php:538
    5966msgid "Previous page"
    6067msgstr "前のページへ"
    6168
    62 #: inc/class-wp-auto-updater-history.php:526
     69#: inc/class-wp-auto-updater-history.php:561
    6370msgid "Next page"
    6471msgstr "次のページへ"
    6572
    66 #: inc/class-wp-auto-updater-history.php:540
     73#: inc/class-wp-auto-updater-history.php:575
    6774msgid "Last page"
    6875msgstr "最後のページへ"
    6976
    70 #: inc/class-wp-auto-updater-history.php:561
     77#: inc/class-wp-auto-updater-history.php:596
    7178msgid "Table no exists."
    7279msgstr "テーブルはありません。"
    7380
    74 #: inc/class-wp-auto-updater-history.php:595
     81#: inc/class-wp-auto-updater-history.php:636
    7582msgid "Logs cleared."
    7683msgstr "ログをクリアしました。"
    7784
    7885#. translators: item: 1: item, 2: items
    79 #: inc/class-wp-auto-updater-history.php:606
    80 #: inc/class-wp-auto-updater-history.php:670
     86#: inc/class-wp-auto-updater-history.php:647
     87#: inc/class-wp-auto-updater-history.php:704
    8188msgid "%d item"
    8289msgid_plural "%d items"
     
    8491msgstr[1] "%d 個の項目"
    8592
    86 #: inc/class-wp-auto-updater-history.php:620
    87 #: inc/class-wp-auto-updater-history.php:642
     93#: inc/class-wp-auto-updater-history.php:661
     94#: inc/class-wp-auto-updater-history.php:683
    8895msgid "Date"
    8996msgstr "日時"
    9097
    91 #: inc/class-wp-auto-updater-history.php:621
    92 #: inc/class-wp-auto-updater-history.php:643
     98#: inc/class-wp-auto-updater-history.php:662
     99#: inc/class-wp-auto-updater-history.php:684
    93100msgid "User"
    94101msgstr "ユーザー"
    95102
    96 #: inc/class-wp-auto-updater-history.php:622
    97 #: inc/class-wp-auto-updater-history.php:644
     103#: inc/class-wp-auto-updater-history.php:663
     104#: inc/class-wp-auto-updater-history.php:685
    98105msgid "Status"
    99106msgstr "ステイタス"
    100107
    101 #: inc/class-wp-auto-updater-history.php:623
    102 #: inc/class-wp-auto-updater-history.php:645
     108#: inc/class-wp-auto-updater-history.php:664
     109#: inc/class-wp-auto-updater-history.php:686
    103110msgid "Mode"
    104111msgstr "モード"
    105112
    106 #: inc/class-wp-auto-updater-history.php:624
    107 #: inc/class-wp-auto-updater-history.php:646
     113#: inc/class-wp-auto-updater-history.php:665
     114#: inc/class-wp-auto-updater-history.php:687
    108115msgid "Label"
    109116msgstr "ラベル"
    110117
    111 #: inc/class-wp-auto-updater-history.php:625
    112 #: inc/class-wp-auto-updater-history.php:647
     118#: inc/class-wp-auto-updater-history.php:666
     119#: inc/class-wp-auto-updater-history.php:688
    113120msgid "Info"
    114121msgstr "内容"
    115122
    116 #: inc/class-wp-auto-updater-history.php:722
     123#: inc/class-wp-auto-updater-history.php:719
    117124msgid "Select keep logs period"
    118125msgstr "ログを残す期間を選択"
    119126
    120 #: inc/class-wp-auto-updater-history.php:723
     127#: inc/class-wp-auto-updater-history.php:720
    121128msgid "Delete all"
    122129msgstr "すべて削除"
    123130
    124 #: inc/class-wp-auto-updater-history.php:724
     131#: inc/class-wp-auto-updater-history.php:721
    125132msgid "for last 1 month"
    126133msgstr "1ヶ月分を残す"
    127134
    128 #: inc/class-wp-auto-updater-history.php:725
     135#: inc/class-wp-auto-updater-history.php:722
    129136msgid "for last 3 month"
    130137msgstr "3ヶ月分を残す"
    131138
    132 #: inc/class-wp-auto-updater-history.php:726
     139#: inc/class-wp-auto-updater-history.php:723
    133140msgid "for last 6 months"
    134141msgstr "6ヶ月分を残す"
    135142
    136 #: inc/class-wp-auto-updater-history.php:727
     143#: inc/class-wp-auto-updater-history.php:724
    137144msgid "for last 1 year"
    138145msgstr "1年分を残す"
    139146
    140 #: inc/class-wp-auto-updater-history.php:728
     147#: inc/class-wp-auto-updater-history.php:725
    141148msgid "for last 3 years"
    142149msgstr "3年分を残す"
    143150
    144 #: inc/class-wp-auto-updater-history.php:730
     151#: inc/class-wp-auto-updater-history.php:727
    145152msgid "Clear Logs"
    146153msgstr "ログをクリア"
    147154
    148 #: inc/class-wp-auto-updater-history.php:730
     155#: inc/class-wp-auto-updater-history.php:727
    149156msgid "Would you like to delete the logs?"
    150157msgstr "ログを削除しますか?"
     
    161168#. translators: %s: Home URL.
    162169#: inc/class-wp-auto-updater-notification.php:154
    163 msgid "Howdy! Failures occurred when attempting to update themes on your site at %s."
     170msgid ""
     171"Howdy! Failures occurred when attempting to update themes on your site at %s."
    164172msgstr "%s のサイトでテーマを更新しようとしたときにエラーが発生しました。"
    165173
     
    167175#: inc/class-wp-auto-updater-notification.php:180
    168176#: inc/class-wp-auto-updater-notification.php:202
    169 msgid "Please check out your site now. It’s possible that everything is working. If it says you need to update, you should do so."
    170 msgstr "今すぐあなたのサイトをチェックしてください。すべてが機能している可能性があります。更新する必要があると表示されている場合は、更新する必要があります。"
     177msgid ""
     178"Please check out your site now. It’s possible that everything is working. If "
     179"it says you need to update, you should do so."
     180msgstr ""
     181"今すぐあなたのサイトをチェックしてください。すべてが機能している可能性があり"
     182"ます。更新する必要があると表示されている場合は、更新する必要があります。"
    171183
    172184#: inc/class-wp-auto-updater-notification.php:160
     
    185197#. translators: %s: Home URL.
    186198#: inc/class-wp-auto-updater-notification.php:176
    187 msgid "Howdy! Failures occurred when attempting to update plugins on your site at %s."
     199msgid ""
     200"Howdy! Failures occurred when attempting to update plugins on your site at "
     201"%s."
    188202msgstr "%s のサイトでプラグインを更新しようとしたときにエラーが発生しました。"
    189203
     
    203217#. translators: %s: Home URL.
    204218#: inc/class-wp-auto-updater-notification.php:198
    205 msgid "Howdy! Failures occurred when attempting to update translations on your site at %s."
     219msgid ""
     220"Howdy! Failures occurred when attempting to update translations on your site "
     221"at %s."
    206222msgstr "%s のサイトで翻訳を更新しようとしたときにエラーが発生しました。"
    207223
     
    219235
    220236#: inc/class-wp-auto-updater-notification.php:461
    221 #: inc/class-wp-auto-updater.php:726
     237#: inc/class-wp-auto-updater.php:787
    222238msgid "WordPress Core"
    223239msgstr "WordPress本体"
    224240
    225241#: inc/class-wp-auto-updater-notification.php:469
    226 #: inc/class-wp-auto-updater.php:734
     242#: inc/class-wp-auto-updater.php:795
    227243msgid "Theme"
    228244msgstr "テーマ"
    229245
    230246#: inc/class-wp-auto-updater-notification.php:477
    231 #: inc/class-wp-auto-updater.php:742
     247#: inc/class-wp-auto-updater.php:803
    232248msgid "Plugin"
    233249msgstr "プラグイン"
    234250
    235251#: inc/class-wp-auto-updater-notification.php:485
    236 #: inc/class-wp-auto-updater.php:750
     252#: inc/class-wp-auto-updater.php:811
    237253msgid "Translation"
    238254msgstr "翻訳"
     
    254270
    255271#: inc/class-wp-auto-updater-notification.php:601
    256 msgid "WP Auto Updater will send notifications from this email address. Leave blank to use the WordPress default."
    257 msgstr "WP Auto Updater はこのメールアドレスから通知を送信します。WordPressのデフォルトを使用するには、空白のままにします。"
     272msgid ""
     273"WP Auto Updater will send notifications from this email address. Leave blank "
     274"to use the WordPress default."
     275msgstr ""
     276"WP Auto Updater はこのメールアドレスから通知を送信します。WordPressのデフォル"
     277"トを使用するには、空白のままにします。"
    258278
    259279#: inc/class-wp-auto-updater-notification.php:618
    260 msgid "Select one or more recipients. Only users with the Administrator role can select recipients."
    261 msgstr "1人以上の受取人を選択してください。管理者権限グループを持っているユーザーのみ受取人に選択できます。"
     280msgid ""
     281"Select one or more recipients. Only users with the Administrator role can "
     282"select recipients."
     283msgstr ""
     284"1人以上の受取人を選択してください。管理者権限グループを持っているユーザーのみ"
     285"受取人に選択できます。"
    262286
    263287#: inc/class-wp-auto-updater-notification.php:619
     
    265289msgstr "管理者メールアドレス (一般設定)"
    266290
    267 #: inc/class-wp-auto-updater.php:336
     291#: inc/class-wp-auto-updater.php:374
    268292msgid "Once Weekly"
    269293msgstr "週一回"
    270294
    271 #: inc/class-wp-auto-updater.php:341
     295#: inc/class-wp-auto-updater.php:379
    272296msgid "Once Monthly"
    273297msgstr "月一回"
    274298
    275 #: inc/class-wp-auto-updater.php:696
     299#: inc/class-wp-auto-updater.php:757
    276300msgid "WordPress Version"
    277301msgstr "WordPressのバージョン"
    278302
    279 #: inc/class-wp-auto-updater.php:703
     303#: inc/class-wp-auto-updater.php:764
    280304msgid "Current Version"
    281305msgstr "今のバージョン"
    282306
    283 #: inc/class-wp-auto-updater.php:711
     307#: inc/class-wp-auto-updater.php:772
    284308msgid "Newer Version"
    285309msgstr "最新のバージョン"
    286310
    287 #: inc/class-wp-auto-updater.php:719
     311#: inc/class-wp-auto-updater.php:780
    288312msgid "Auto Update Scenario"
    289313msgstr "自動更新シナリオ"
    290314
    291 #: inc/class-wp-auto-updater.php:758
     315#: inc/class-wp-auto-updater.php:819
    292316msgid "Schedule"
    293317msgstr "スケジュール"
    294318
    295 #: inc/class-wp-auto-updater.php:765
     319#: inc/class-wp-auto-updater.php:826
    296320msgid "Next Update Date"
    297321msgstr "次の更新日"
    298322
    299 #: inc/class-wp-auto-updater.php:773
     323#: inc/class-wp-auto-updater.php:834
    300324msgid "Update Interval"
    301325msgstr "更新間隔"
    302326
    303 #: inc/class-wp-auto-updater.php:781
     327#: inc/class-wp-auto-updater.php:842
    304328msgid "Update Date"
    305329msgstr "更新日時"
    306330
    307 #: inc/class-wp-auto-updater.php:789
     331#: inc/class-wp-auto-updater.php:850
    308332msgid "Disable Auto Update Themes"
    309333msgstr "自動更新を停止するテーマ"
    310334
    311 #: inc/class-wp-auto-updater.php:796
     335#: inc/class-wp-auto-updater.php:857
    312336msgid "Themes"
    313337msgstr "テーマ"
    314338
    315 #: inc/class-wp-auto-updater.php:804
     339#: inc/class-wp-auto-updater.php:865
    316340msgid "Disable Auto Update Plugins"
    317341msgstr "自動更新を停止するプラグイン"
    318342
    319 #: inc/class-wp-auto-updater.php:811
     343#: inc/class-wp-auto-updater.php:872
    320344msgid "Plugins"
    321345msgstr "プラグイン"
    322346
    323 #: inc/class-wp-auto-updater.php:843
    324 #: inc/class-wp-auto-updater.php:844
     347#: inc/class-wp-auto-updater.php:904 inc/class-wp-auto-updater.php:905
    325348msgid "Auto Updater"
    326349msgstr "自動更新"
    327350
    328 #: inc/class-wp-auto-updater.php:975
     351#: inc/class-wp-auto-updater.php:1036
    329352msgid "Twice Daily (12 hours interval)"
    330353msgstr "1日2回 (12時間間隔)"
    331354
    332 #: inc/class-wp-auto-updater.php:976
     355#: inc/class-wp-auto-updater.php:1037
    333356msgid "Daily"
    334357msgstr "毎日"
    335358
    336 #: inc/class-wp-auto-updater.php:977
     359#: inc/class-wp-auto-updater.php:1038
    337360msgid "Weekly"
    338361msgstr "毎週"
    339362
    340 #: inc/class-wp-auto-updater.php:978
     363#: inc/class-wp-auto-updater.php:1039
    341364msgid "Monthly"
    342365msgstr "毎月"
    343366
    344 #: inc/class-wp-auto-updater.php:1047
    345 msgid "Minor Version Update (Recommended)"
    346 msgstr "マイナーバージョンをアップデート (推奨)"
    347 
    348 #: inc/class-wp-auto-updater.php:1048
     367#: inc/class-wp-auto-updater.php:1108
     368msgid "Minor Version Update"
     369msgstr "マイナーバージョンをアップデート"
     370
     371#: inc/class-wp-auto-updater.php:1109
    349372msgid "Major Version Update"
    350373msgstr "メジャーバージョンをアップデート"
    351374
    352 #: inc/class-wp-auto-updater.php:1049
     375#: inc/class-wp-auto-updater.php:1110
    353376msgid "Minor Only Version Update"
    354377msgstr "マイナーバージョンだけをアップデート"
    355378
    356 #: inc/class-wp-auto-updater.php:1050
     379#: inc/class-wp-auto-updater.php:1111
    357380msgid "Previous Generation Version Update"
    358381msgstr "一世代前のバージョンをアップデート"
    359382
    360 #: inc/class-wp-auto-updater.php:1051
    361 #: inc/class-wp-auto-updater.php:1072
    362 #: inc/class-wp-auto-updater.php:1091
    363 #: inc/class-wp-auto-updater.php:1110
     383#: inc/class-wp-auto-updater.php:1112 inc/class-wp-auto-updater.php:1133
     384#: inc/class-wp-auto-updater.php:1152 inc/class-wp-auto-updater.php:1171
    364385msgid "Manual Update"
    365386msgstr "手動でアップデート"
    366387
    367 #: inc/class-wp-auto-updater.php:1054
     388#: inc/class-wp-auto-updater.php:1115
    368389msgid "See WordPress Update Process Chart"
    369390msgstr "WordPress 本体のアップデートプロセスチャート"
    370391
    371 #: inc/class-wp-auto-updater.php:1071
    372 #: inc/class-wp-auto-updater.php:1090
    373 #: inc/class-wp-auto-updater.php:1109
     392#: inc/class-wp-auto-updater.php:1132 inc/class-wp-auto-updater.php:1151
     393#: inc/class-wp-auto-updater.php:1170
    374394msgid "Auto Update"
    375395msgstr "自動でアップデート"
    376396
    377 #: inc/class-wp-auto-updater.php:1135
     397#: inc/class-wp-auto-updater.php:1196
    378398msgid "Local time"
    379399msgstr "現地時間"
    380400
    381 #: inc/class-wp-auto-updater.php:1136
     401#: inc/class-wp-auto-updater.php:1197
    382402msgid "GMT"
    383403msgstr "グリニッジ標準時"
    384404
    385 #: inc/class-wp-auto-updater.php:1165
    386 msgid "The cron schedule is out of sync with the set schedule. You may have changed the cron schedule or the timezone somewhere else."
    387 msgstr "cron スケジュールが設定されたスケジュールと同期していません。 cron スケジュールまたはタイムゾーンを別の場所で変更した可能性があります。"
     405#: inc/class-wp-auto-updater.php:1207
     406msgid ""
     407"The cron schedule is out of sync with the set schedule. You may have changed "
     408"the cron schedule or the timezone somewhere else."
     409msgstr ""
     410"cron スケジュールが設定されたスケジュールと同期していません。 cron スケジュー"
     411"ルまたはタイムゾーンを別の場所で変更した可能性があります。"
    388412
    389413#. translators: day: 1: day, 2: days
    390 #: inc/class-wp-auto-updater.php:1153
     414#: inc/class-wp-auto-updater.php:1227
    391415msgid "%d day"
    392416msgid_plural "%d days"
     
    395419
    396420#. translators: hour: 1: hour, 2: hours
    397 #: inc/class-wp-auto-updater.php:1161
    398 #: inc/class-wp-auto-updater.php:1182
     421#: inc/class-wp-auto-updater.php:1235 inc/class-wp-auto-updater.php:1256
    399422msgid "%d hour"
    400423msgid_plural "%d hours"
     
    403426
    404427#. translators: minute: 1: minute, 2: minutes
    405 #: inc/class-wp-auto-updater.php:1170
    406 #: inc/class-wp-auto-updater.php:1189
    407 #: inc/class-wp-auto-updater.php:1201
     428#: inc/class-wp-auto-updater.php:1244 inc/class-wp-auto-updater.php:1263
     429#: inc/class-wp-auto-updater.php:1275
    408430msgid "%d minute"
    409431msgid_plural "%d minutes"
     
    411433msgstr[1] "%d 分"
    412434
    413 #: inc/class-wp-auto-updater.php:1176
    414 #: inc/class-wp-auto-updater.php:1195
    415 #: inc/class-wp-auto-updater.php:1206
     435#: inc/class-wp-auto-updater.php:1250 inc/class-wp-auto-updater.php:1269
     436#: inc/class-wp-auto-updater.php:1280
    416437msgid "ago"
    417438msgstr "前"
    418439
    419 #: inc/class-wp-auto-updater.php:1176
    420 #: inc/class-wp-auto-updater.php:1195
    421 #: inc/class-wp-auto-updater.php:1206
     440#: inc/class-wp-auto-updater.php:1250 inc/class-wp-auto-updater.php:1269
     441#: inc/class-wp-auto-updater.php:1280
    422442msgid "later"
    423443msgstr "後"
    424444
    425 #: inc/class-wp-auto-updater.php:1242
     445#: inc/class-wp-auto-updater.php:1316
    426446msgid "Day: "
    427447msgstr "日: "
    428448
    429 #: inc/class-wp-auto-updater.php:1252
     449#: inc/class-wp-auto-updater.php:1323
     450msgid "last day"
     451msgstr "末日"
     452
     453#: inc/class-wp-auto-updater.php:1327
    430454msgid "Weekday: "
    431455msgstr "曜日: "
    432456
    433 #: inc/class-wp-auto-updater.php:1256
     457#: inc/class-wp-auto-updater.php:1331
    434458msgid "Monday"
    435459msgstr "月曜日"
    436460
    437 #: inc/class-wp-auto-updater.php:1257
     461#: inc/class-wp-auto-updater.php:1332
    438462msgid "Tuesday"
    439463msgstr "火曜日"
    440464
    441 #: inc/class-wp-auto-updater.php:1258
     465#: inc/class-wp-auto-updater.php:1333
    442466msgid "Wednesday"
    443467msgstr "水曜日"
    444468
    445 #: inc/class-wp-auto-updater.php:1259
     469#: inc/class-wp-auto-updater.php:1334
    446470msgid "Thursday"
    447471msgstr "木曜日"
    448472
    449 #: inc/class-wp-auto-updater.php:1260
     473#: inc/class-wp-auto-updater.php:1335
    450474msgid "Friday"
    451475msgstr "金曜日"
    452476
    453 #: inc/class-wp-auto-updater.php:1261
     477#: inc/class-wp-auto-updater.php:1336
    454478msgid "Saturday"
    455479msgstr "土曜日"
    456480
    457 #: inc/class-wp-auto-updater.php:1262
     481#: inc/class-wp-auto-updater.php:1337
    458482msgid "Sunday"
    459483msgstr "日曜日"
    460484
    461 #: inc/class-wp-auto-updater.php:1271
     485#: inc/class-wp-auto-updater.php:1346
    462486msgid "Hour: "
    463487msgstr "時: "
    464488
    465 #: inc/class-wp-auto-updater.php:1281
     489#: inc/class-wp-auto-updater.php:1356
    466490msgid "Minute: "
    467491msgstr "分: "
    468492
    469 #: inc/class-wp-auto-updater.php:1304
     493#: inc/class-wp-auto-updater.php:1379
    470494msgid "Select a theme that you do not want to automatically update."
    471495msgstr "自動更新を停止するテーマを選んでください。"
    472496
    473497#. translators: installed: 1: count
    474 #: inc/class-wp-auto-updater.php:1322
    475 #: inc/class-wp-auto-updater.php:1362
     498#: inc/class-wp-auto-updater.php:1397 inc/class-wp-auto-updater.php:1437
    476499msgid "%d installed"
    477500msgstr "%d 個インストール済み"
    478501
    479 #: inc/class-wp-auto-updater.php:1344
     502#: inc/class-wp-auto-updater.php:1419
    480503msgid "Select a plugin that you do not want to automatically update."
    481504msgstr "自動更新を停止するプラグインを選んでください。"
    482505
    483 #: inc/class-wp-auto-updater.php:1443
     506#: inc/class-wp-auto-updater.php:1532
    484507msgid "Become a sponsor"
    485508msgstr "スポンサーになる"
    486509
    487 #: inc/class-wp-auto-updater.php:1465
     510#: inc/class-wp-auto-updater.php:1554
    488511msgid "Settings"
    489512msgstr "設定"
    490513
    491 #: inc/class-wp-auto-updater.php:1504
     514#: inc/class-wp-auto-updater.php:1611
    492515msgid "Automatic updating is not possible."
    493516msgstr "自動更新はできません。"
  • wp-auto-updater/tags/1.7.0/languages/wp-auto-updater.pot

    r2685869 r2899017  
    1 # Copyright (C) 2021 thingsym
    2 # This file is distributed under the same license as the WP Auto Updater plugin.
     1# Copyright (C) 2023 thingsym
     2# This file is distributed under the GPLv2 or later.
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: WP Auto Updater 1.6.3\n"
     5"Project-Id-Version: WP Auto Updater 1.7.0\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-auto-updater\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2021-06-03T12:33:09+00:00\n"
     12"POT-Creation-Date: 2023-04-14T06:05:38+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    14 "X-Generator: WP-CLI 2.4.0\n"
     14"X-Generator: WP-CLI 2.7.1\n"
    1515"X-Domain: wp-auto-updater\n"
    1616
    1717#. Plugin Name of the plugin
    18 #: inc/class-wp-auto-updater.php:969
     18#: inc/class-wp-auto-updater.php:1011
    1919msgid "WP Auto Updater"
    2020msgstr ""
     
    3737
    3838#. translators: table create notice: 1: table name, 2: table version
    39 #: inc/class-wp-auto-updater-history.php:183
     39#: inc/class-wp-auto-updater-history.php:180
    4040msgid "Table <strong>%1$s (%2$s)</strong> create succeeded."
    4141msgstr ""
    4242
    4343#. translators: table update notice: 1: table name, 2: table version
    44 #: inc/class-wp-auto-updater-history.php:202
     44#: inc/class-wp-auto-updater-history.php:199
    4545msgid "Table <strong>%1$s (%2$s)</strong> update succeeded."
    4646msgstr ""
    4747
    48 #: inc/class-wp-auto-updater-history.php:447
    49 #: inc/class-wp-auto-updater-history.php:448
    50 #: inc/class-wp-auto-updater-history.php:637
     48#: inc/class-wp-auto-updater-history.php:444
     49#: inc/class-wp-auto-updater-history.php:445
     50#: inc/class-wp-auto-updater-history.php:634
    5151msgid "Update History"
    5252msgstr ""
    5353
    54 #: inc/class-wp-auto-updater-history.php:527
     54#: inc/class-wp-auto-updater-history.php:524
    5555msgid "First page"
    5656msgstr ""
    5757
    58 #: inc/class-wp-auto-updater-history.php:541
     58#: inc/class-wp-auto-updater-history.php:538
    5959msgid "Previous page"
    6060msgstr ""
    6161
    62 #: inc/class-wp-auto-updater-history.php:564
     62#: inc/class-wp-auto-updater-history.php:561
    6363msgid "Next page"
    6464msgstr ""
    6565
    66 #: inc/class-wp-auto-updater-history.php:578
     66#: inc/class-wp-auto-updater-history.php:575
    6767msgid "Last page"
    6868msgstr ""
    6969
    70 #: inc/class-wp-auto-updater-history.php:599
     70#: inc/class-wp-auto-updater-history.php:596
    7171msgid "Table no exists."
    7272msgstr ""
    7373
    74 #: inc/class-wp-auto-updater-history.php:639
     74#: inc/class-wp-auto-updater-history.php:636
    7575msgid "Logs cleared."
    7676msgstr ""
    7777
    7878#. translators: item: 1: item, 2: items
    79 #: inc/class-wp-auto-updater-history.php:650
    80 #: inc/class-wp-auto-updater-history.php:707
     79#: inc/class-wp-auto-updater-history.php:647
     80#: inc/class-wp-auto-updater-history.php:704
    8181msgid "%d item"
    8282msgid_plural "%d items"
     
    8484msgstr[1] ""
    8585
     86#: inc/class-wp-auto-updater-history.php:661
     87#: inc/class-wp-auto-updater-history.php:683
     88msgid "Date"
     89msgstr ""
     90
     91#: inc/class-wp-auto-updater-history.php:662
     92#: inc/class-wp-auto-updater-history.php:684
     93msgid "User"
     94msgstr ""
     95
     96#: inc/class-wp-auto-updater-history.php:663
     97#: inc/class-wp-auto-updater-history.php:685
     98msgid "Status"
     99msgstr ""
     100
    86101#: inc/class-wp-auto-updater-history.php:664
    87102#: inc/class-wp-auto-updater-history.php:686
    88 msgid "Date"
     103msgid "Mode"
    89104msgstr ""
    90105
    91106#: inc/class-wp-auto-updater-history.php:665
    92107#: inc/class-wp-auto-updater-history.php:687
    93 msgid "User"
     108msgid "Label"
    94109msgstr ""
    95110
    96111#: inc/class-wp-auto-updater-history.php:666
    97112#: inc/class-wp-auto-updater-history.php:688
    98 msgid "Status"
    99 msgstr ""
    100 
    101 #: inc/class-wp-auto-updater-history.php:667
    102 #: inc/class-wp-auto-updater-history.php:689
    103 msgid "Mode"
    104 msgstr ""
    105 
    106 #: inc/class-wp-auto-updater-history.php:668
    107 #: inc/class-wp-auto-updater-history.php:690
    108 msgid "Label"
    109 msgstr ""
    110 
    111 #: inc/class-wp-auto-updater-history.php:669
    112 #: inc/class-wp-auto-updater-history.php:691
    113113msgid "Info"
    114114msgstr ""
    115115
     116#: inc/class-wp-auto-updater-history.php:719
     117msgid "Select keep logs period"
     118msgstr ""
     119
     120#: inc/class-wp-auto-updater-history.php:720
     121msgid "Delete all"
     122msgstr ""
     123
     124#: inc/class-wp-auto-updater-history.php:721
     125msgid "for last 1 month"
     126msgstr ""
     127
    116128#: inc/class-wp-auto-updater-history.php:722
    117 msgid "Select keep logs period"
     129msgid "for last 3 month"
    118130msgstr ""
    119131
    120132#: inc/class-wp-auto-updater-history.php:723
    121 msgid "Delete all"
     133msgid "for last 6 months"
    122134msgstr ""
    123135
    124136#: inc/class-wp-auto-updater-history.php:724
    125 msgid "for last 1 month"
     137msgid "for last 1 year"
    126138msgstr ""
    127139
    128140#: inc/class-wp-auto-updater-history.php:725
    129 msgid "for last 3 month"
    130 msgstr ""
    131 
    132 #: inc/class-wp-auto-updater-history.php:726
    133 msgid "for last 6 months"
     141msgid "for last 3 years"
    134142msgstr ""
    135143
    136144#: inc/class-wp-auto-updater-history.php:727
    137 msgid "for last 1 year"
    138 msgstr ""
    139 
    140 #: inc/class-wp-auto-updater-history.php:728
    141 msgid "for last 3 years"
    142 msgstr ""
    143 
    144 #: inc/class-wp-auto-updater-history.php:730
    145145msgid "Clear Logs"
    146146msgstr ""
    147147
    148 #: inc/class-wp-auto-updater-history.php:730
     148#: inc/class-wp-auto-updater-history.php:727
    149149msgid "Would you like to delete the logs?"
    150150msgstr ""
     
    219219
    220220#: inc/class-wp-auto-updater-notification.php:461
    221 #: inc/class-wp-auto-updater.php:745
     221#: inc/class-wp-auto-updater.php:787
    222222msgid "WordPress Core"
    223223msgstr ""
    224224
    225225#: inc/class-wp-auto-updater-notification.php:469
    226 #: inc/class-wp-auto-updater.php:753
     226#: inc/class-wp-auto-updater.php:795
    227227msgid "Theme"
    228228msgstr ""
    229229
    230230#: inc/class-wp-auto-updater-notification.php:477
    231 #: inc/class-wp-auto-updater.php:761
     231#: inc/class-wp-auto-updater.php:803
    232232msgid "Plugin"
    233233msgstr ""
    234234
    235235#: inc/class-wp-auto-updater-notification.php:485
    236 #: inc/class-wp-auto-updater.php:769
     236#: inc/class-wp-auto-updater.php:811
    237237msgid "Translation"
    238238msgstr ""
     
    265265msgstr ""
    266266
    267 #: inc/class-wp-auto-updater.php:336
     267#: inc/class-wp-auto-updater.php:374
    268268msgid "Once Weekly"
    269269msgstr ""
    270270
    271 #: inc/class-wp-auto-updater.php:341
     271#: inc/class-wp-auto-updater.php:379
    272272msgid "Once Monthly"
    273273msgstr ""
    274274
    275 #: inc/class-wp-auto-updater.php:715
     275#: inc/class-wp-auto-updater.php:757
    276276msgid "WordPress Version"
    277277msgstr ""
    278278
    279 #: inc/class-wp-auto-updater.php:722
     279#: inc/class-wp-auto-updater.php:764
    280280msgid "Current Version"
    281281msgstr ""
    282282
    283 #: inc/class-wp-auto-updater.php:730
     283#: inc/class-wp-auto-updater.php:772
    284284msgid "Newer Version"
    285285msgstr ""
    286286
    287 #: inc/class-wp-auto-updater.php:738
     287#: inc/class-wp-auto-updater.php:780
    288288msgid "Auto Update Scenario"
    289289msgstr ""
    290290
    291 #: inc/class-wp-auto-updater.php:777
     291#: inc/class-wp-auto-updater.php:819
    292292msgid "Schedule"
    293293msgstr ""
    294294
    295 #: inc/class-wp-auto-updater.php:784
     295#: inc/class-wp-auto-updater.php:826
    296296msgid "Next Update Date"
    297297msgstr ""
    298298
    299 #: inc/class-wp-auto-updater.php:792
     299#: inc/class-wp-auto-updater.php:834
    300300msgid "Update Interval"
    301301msgstr ""
    302302
    303 #: inc/class-wp-auto-updater.php:800
     303#: inc/class-wp-auto-updater.php:842
    304304msgid "Update Date"
    305305msgstr ""
    306306
    307 #: inc/class-wp-auto-updater.php:808
     307#: inc/class-wp-auto-updater.php:850
    308308msgid "Disable Auto Update Themes"
    309309msgstr ""
    310310
    311 #: inc/class-wp-auto-updater.php:815
     311#: inc/class-wp-auto-updater.php:857
    312312msgid "Themes"
    313313msgstr ""
    314314
    315 #: inc/class-wp-auto-updater.php:823
     315#: inc/class-wp-auto-updater.php:865
    316316msgid "Disable Auto Update Plugins"
    317317msgstr ""
    318318
    319 #: inc/class-wp-auto-updater.php:830
     319#: inc/class-wp-auto-updater.php:872
    320320msgid "Plugins"
    321321msgstr ""
    322322
    323 #: inc/class-wp-auto-updater.php:862
    324 #: inc/class-wp-auto-updater.php:863
     323#: inc/class-wp-auto-updater.php:904
     324#: inc/class-wp-auto-updater.php:905
    325325msgid "Auto Updater"
    326326msgstr ""
    327327
    328 #: inc/class-wp-auto-updater.php:994
     328#: inc/class-wp-auto-updater.php:1036
    329329msgid "Twice Daily (12 hours interval)"
    330330msgstr ""
    331331
    332 #: inc/class-wp-auto-updater.php:995
     332#: inc/class-wp-auto-updater.php:1037
    333333msgid "Daily"
    334334msgstr ""
    335335
    336 #: inc/class-wp-auto-updater.php:996
     336#: inc/class-wp-auto-updater.php:1038
    337337msgid "Weekly"
    338338msgstr ""
    339339
    340 #: inc/class-wp-auto-updater.php:997
     340#: inc/class-wp-auto-updater.php:1039
    341341msgid "Monthly"
    342342msgstr ""
    343343
    344 #: inc/class-wp-auto-updater.php:1066
    345 msgid "Minor Version Update (Recommended)"
    346 msgstr ""
    347 
    348 #: inc/class-wp-auto-updater.php:1067
     344#: inc/class-wp-auto-updater.php:1108
     345msgid "Minor Version Update"
     346msgstr ""
     347
     348#: inc/class-wp-auto-updater.php:1109
    349349msgid "Major Version Update"
    350350msgstr ""
    351351
    352 #: inc/class-wp-auto-updater.php:1068
     352#: inc/class-wp-auto-updater.php:1110
    353353msgid "Minor Only Version Update"
    354354msgstr ""
    355355
    356 #: inc/class-wp-auto-updater.php:1069
     356#: inc/class-wp-auto-updater.php:1111
    357357msgid "Previous Generation Version Update"
    358358msgstr ""
    359359
    360 #: inc/class-wp-auto-updater.php:1070
    361 #: inc/class-wp-auto-updater.php:1091
    362 #: inc/class-wp-auto-updater.php:1110
    363 #: inc/class-wp-auto-updater.php:1129
     360#: inc/class-wp-auto-updater.php:1112
     361#: inc/class-wp-auto-updater.php:1133
     362#: inc/class-wp-auto-updater.php:1152
     363#: inc/class-wp-auto-updater.php:1171
    364364msgid "Manual Update"
    365365msgstr ""
    366366
    367 #: inc/class-wp-auto-updater.php:1073
     367#: inc/class-wp-auto-updater.php:1115
    368368msgid "See WordPress Update Process Chart"
    369369msgstr ""
    370370
    371 #: inc/class-wp-auto-updater.php:1090
    372 #: inc/class-wp-auto-updater.php:1109
    373 #: inc/class-wp-auto-updater.php:1128
     371#: inc/class-wp-auto-updater.php:1132
     372#: inc/class-wp-auto-updater.php:1151
     373#: inc/class-wp-auto-updater.php:1170
    374374msgid "Auto Update"
    375375msgstr ""
    376376
    377 #: inc/class-wp-auto-updater.php:1154
     377#: inc/class-wp-auto-updater.php:1196
    378378msgid "Local time"
    379379msgstr ""
    380380
    381 #: inc/class-wp-auto-updater.php:1155
     381#: inc/class-wp-auto-updater.php:1197
    382382msgid "GMT"
    383383msgstr ""
    384384
    385 #: inc/class-wp-auto-updater.php:1165
     385#: inc/class-wp-auto-updater.php:1207
    386386msgid "The cron schedule is out of sync with the set schedule. You may have changed the cron schedule or the timezone somewhere else."
    387387msgstr ""
    388388
    389389#. translators: day: 1: day, 2: days
    390 #: inc/class-wp-auto-updater.php:1172
     390#: inc/class-wp-auto-updater.php:1227
    391391msgid "%d day"
    392392msgid_plural "%d days"
     
    395395
    396396#. translators: hour: 1: hour, 2: hours
    397 #: inc/class-wp-auto-updater.php:1180
    398 #: inc/class-wp-auto-updater.php:1201
     397#: inc/class-wp-auto-updater.php:1235
     398#: inc/class-wp-auto-updater.php:1256
    399399msgid "%d hour"
    400400msgid_plural "%d hours"
     
    403403
    404404#. translators: minute: 1: minute, 2: minutes
    405 #: inc/class-wp-auto-updater.php:1189
    406 #: inc/class-wp-auto-updater.php:1208
    407 #: inc/class-wp-auto-updater.php:1220
     405#: inc/class-wp-auto-updater.php:1244
     406#: inc/class-wp-auto-updater.php:1263
     407#: inc/class-wp-auto-updater.php:1275
    408408msgid "%d minute"
    409409msgid_plural "%d minutes"
     
    411411msgstr[1] ""
    412412
    413 #: inc/class-wp-auto-updater.php:1195
    414 #: inc/class-wp-auto-updater.php:1214
    415 #: inc/class-wp-auto-updater.php:1225
     413#: inc/class-wp-auto-updater.php:1250
     414#: inc/class-wp-auto-updater.php:1269
     415#: inc/class-wp-auto-updater.php:1280
    416416msgid "ago"
    417417msgstr ""
    418418
    419 #: inc/class-wp-auto-updater.php:1195
    420 #: inc/class-wp-auto-updater.php:1214
    421 #: inc/class-wp-auto-updater.php:1225
     419#: inc/class-wp-auto-updater.php:1250
     420#: inc/class-wp-auto-updater.php:1269
     421#: inc/class-wp-auto-updater.php:1280
    422422msgid "later"
    423423msgstr ""
    424424
    425 #: inc/class-wp-auto-updater.php:1261
     425#: inc/class-wp-auto-updater.php:1316
    426426msgid "Day: "
    427427msgstr ""
    428428
    429 #: inc/class-wp-auto-updater.php:1271
     429#: inc/class-wp-auto-updater.php:1323
     430msgid "last day"
     431msgstr ""
     432
     433#: inc/class-wp-auto-updater.php:1327
    430434msgid "Weekday: "
    431435msgstr ""
    432436
    433 #: inc/class-wp-auto-updater.php:1275
     437#: inc/class-wp-auto-updater.php:1331
    434438msgid "Monday"
    435439msgstr ""
    436440
    437 #: inc/class-wp-auto-updater.php:1276
     441#: inc/class-wp-auto-updater.php:1332
    438442msgid "Tuesday"
    439443msgstr ""
    440444
    441 #: inc/class-wp-auto-updater.php:1277
     445#: inc/class-wp-auto-updater.php:1333
    442446msgid "Wednesday"
    443447msgstr ""
    444448
    445 #: inc/class-wp-auto-updater.php:1278
     449#: inc/class-wp-auto-updater.php:1334
    446450msgid "Thursday"
    447451msgstr ""
    448452
    449 #: inc/class-wp-auto-updater.php:1279
     453#: inc/class-wp-auto-updater.php:1335
    450454msgid "Friday"
    451455msgstr ""
    452456
    453 #: inc/class-wp-auto-updater.php:1280
     457#: inc/class-wp-auto-updater.php:1336
    454458msgid "Saturday"
    455459msgstr ""
    456460
    457 #: inc/class-wp-auto-updater.php:1281
     461#: inc/class-wp-auto-updater.php:1337
    458462msgid "Sunday"
    459463msgstr ""
    460464
    461 #: inc/class-wp-auto-updater.php:1290
     465#: inc/class-wp-auto-updater.php:1346
    462466msgid "Hour: "
    463467msgstr ""
    464468
    465 #: inc/class-wp-auto-updater.php:1300
     469#: inc/class-wp-auto-updater.php:1356
    466470msgid "Minute: "
    467471msgstr ""
    468472
    469 #: inc/class-wp-auto-updater.php:1323
     473#: inc/class-wp-auto-updater.php:1379
    470474msgid "Select a theme that you do not want to automatically update."
    471475msgstr ""
    472476
    473477#. translators: installed: 1: count
    474 #: inc/class-wp-auto-updater.php:1341
    475 #: inc/class-wp-auto-updater.php:1381
     478#: inc/class-wp-auto-updater.php:1397
     479#: inc/class-wp-auto-updater.php:1437
    476480msgid "%d installed"
    477481msgstr ""
    478482
    479 #: inc/class-wp-auto-updater.php:1363
     483#: inc/class-wp-auto-updater.php:1419
    480484msgid "Select a plugin that you do not want to automatically update."
    481485msgstr ""
    482486
    483 #: inc/class-wp-auto-updater.php:1462
     487#: inc/class-wp-auto-updater.php:1532
    484488msgid "Become a sponsor"
    485489msgstr ""
    486490
    487 #: inc/class-wp-auto-updater.php:1484
     491#: inc/class-wp-auto-updater.php:1554
    488492msgid "Settings"
    489493msgstr ""
    490494
    491 #: inc/class-wp-auto-updater.php:1523
     495#: inc/class-wp-auto-updater.php:1611
    492496msgid "Automatic updating is not possible."
    493497msgstr ""
  • wp-auto-updater/tags/1.7.0/readme.txt

    r2736885 r2899017  
    44Donate link: https://github.com/sponsors/thingsym
    55Tags: updates, auto update, automatic updates, background updates, core updates, theme updates, translation updates, plugin updates
    6 Stable tag: 1.6.3
    7 Tested up to: 6.0.0
     6Stable tag: 1.7.0
     7Tested up to: 6.2.0
    88Requires at least: 4.9
    99Requires PHP: 5.6
     
    1111License URI: http://www.gnu.org/licenses/gpl-2.0.html
    1212
    13 This WordPress plugin enables automatic updates of WordPress Core, Themes, Plugins and Translations. Version control of WordPress Core makes automatic update more safely.
     13WP Auto Updater plugin enables automatic updates of WordPress Core, Themes, Plugins and Translations. Version control of WordPress Core makes automatic update more safely.
    1414
    1515== Description ==
    1616
    17 This WordPress plugin enables automatic updates of WordPress Core, Themes, Plugins and Translations. Version control of WordPress Core makes automatic update more safely.
     17WP Auto Updater plugin enables automatic updates of WordPress Core, Themes, Plugins and Translations. Version control of WordPress Core makes automatic update more safely.
    1818
    1919= Features =
     
    3434You can choose from the following five automatic updates of WordPress Core.
    3535
    36 * Minor Version Update (Recommended)
     36* Minor Version Update
    3737* Major Version Update
    3838* Minor Only Version Update
     
    4040* Manual Update
    4141
    42 = Minor Version Update (Recommended) =
    43 
    44 **Minor Version Update (Recommended)** enable minor updates. Minor updates is default behavior in WordPress for security updates. The transition of the version number is as follows: update from 4.8 to 4.8.1, 4.8.2 ...
     42= Minor Version Update =
     43
     44**Minor Version Update** enable minor updates. Minor updates is default behavior in WordPress for security updates. The transition of the version number is as follows: update from 4.8 to 4.8.1, 4.8.2 ...
    4545
    4646= Major Version Update =
     
    5050= Minor Only Version Update =
    5151
    52 **Minor Only Version Update** enable major updates and minor updates **except version x.y.0**.
     52**Minor Only Version Update** enable major updates and minor updates **except version x.y.0**. It make sense to take a "skip" approach to avoid introducing new vulnerabilities into the latest major version release.
    5353
    5454Update the WordPress Core version (eg. x.y.1 or later) with security fixed. Not automatically update the latest major version of x.y.0. The transition of the version number is as follows: update from 4.7.z to 4.8.z, 4.9.z ... skiped 4.7.0, 4.8.0, 4.9.0 ...
     
    5656= Previous Generation Version Update =
    5757
    58 **Previous Generation Version Update** enable major updates and minor updates **except the latest major version**.
     58**Previous Generation Version Update** enable major updates and minor updates **except the latest major version**. It make sense to take a "wait and see" approach to ensure the latest major version release is stable before.
    5959
    6060With the installed WordPress Core version as 4.6.z. If the latest WordPress Core version released to 4.8.0, automatically update it to version 4.7.z. It will be always automatically updated to the previous generation WordPress Core version with probably security fixed.
     
    8181At the time of automatic update, Automatically updates WordPress Core, Themes, Plugins and Translations to be updated.
    8282
     83= Support =
     84
     85If you have any trouble, you can use the forums or report bugs.
     86
     87* Forum: [https://wordpress.org/support/plugin/wp-auto-updater/](https://wordpress.org/support/plugin/wp-auto-updater/)
     88* Issues: [https://github.com/thingsym/wp-auto-updater/issues](https://github.com/thingsym/wp-auto-updater/issues)
     89
     90= Contribution =
     91
     92Small patches and bug reports can be submitted a issue tracker in Github. Forking on Github is another good way. You can send a pull request.
     93
     94Translating a plugin takes a lot of time, effort, and patience. I really appreciate the hard work from these contributors.
     95
     96If you have created or updated your own language pack, you can send gettext PO and MO files to author. I can bundle it into plugin.
     97
     98* [VCS - GitHub](https://github.com/thingsym/wp-auto-updater)
     99* [Homepage - WordPress Plugin](https://wordpress.org/plugins/wp-auto-updater/)
     100* [Translate WP Auto Updater into your language.](https://translate.wordpress.org/projects/wp-plugins/wp-auto-updater)
     101
     102You can also contribute by answering issues on the forums.
     103
     104* Forum: [https://wordpress.org/support/plugin/wp-auto-updater/](https://wordpress.org/support/plugin/wp-auto-updater/)
     105* Issues: [https://github.com/thingsym/wp-auto-updater/issues](https://github.com/thingsym/wp-auto-updater/issues)
     106
     107= Contribute guidlines =
     108
     109If you would like to contribute, here are some notes and guidlines.
     110
     111* All development happens on the **develop** branch, so it is always the most up-to-date
     112* The **master** branch only contains tagged releases
     113* If you are going to be submitting a pull request, please submit your pull request to the **develop** branch
     114* See about [forking](https://help.github.com/articles/fork-a-repo/) and [pull requests](https://help.github.com/articles/using-pull-requests/)
     115
    83116= Test Matrix =
    84117
    85118For operation compatibility between PHP version and WordPress version, see below [Github Actions](https://github.com/thingsym/wp-auto-updater/actions).
    86 
    87 = Contributing =
    88 
    89 = Patches and Bug Fixes =
    90 
    91 Small patches and bug reports can be submitted a issue tracker in Github. Forking on Github is another good way. You can send a pull request.
    92 
    93 * [wp-auto-updater - GitHub](https://github.com/thingsym/wp-auto-updater)
    94 * [WP Auto Updater - WordPress Plugin](https://wordpress.org/plugins/wp-auto-updater/)
    95119
    96120== Installation ==
     
    136160
    137161== Changelog ==
     162
     163= 1.7.0 =
     164* tested up to 6.2.0
     165* update japanese translation
     166* update pot
     167* add test case
     168* add last day to schedule
     169* fix composer scripts
     170* update github actions
     171* set auto_update_core_major to disable when activate
     172* add support section and enhance contribution section
     173* add support section and enhance contribution section to README
     174* fix license
     175* fix wp-plugin-unit-test.yml
    138176
    139177= 1.6.3 =
  • wp-auto-updater/tags/1.7.0/wp-auto-updater.php

    r2685869 r2899017  
    44 * Plugin URI:  https://github.com/thingsym/wp-auto-updater
    55 * Description: This plugin enables automatic updates of WordPress Core, Themes, Plugins and Translations. Version control of WordPress Core makes automatic update more safely.
    6  * Version:     1.6.3
     6 * Version:     1.7.0
    77 * Author:      thingsym
    88 * Author URI:  https://management.thingslabo.com/
    9  * License:     GPL2 or later
     9 * License:     GPLv2 or later
    1010 * License URI: http://www.gnu.org/licenses/gpl-2.0.html
    1111 * Text Domain: wp-auto-updater
  • wp-auto-updater/trunk/inc/class-wp-auto-updater.php

    r2685869 r2899017  
    5050     *   default options
    5151     *
    52      *   @type string core
    53      *   @type bool   theme    minor|major|minor-only|pre-version|null
     52     *   @type string core    minor|major|minor-only|pre-version|null
     53     *   @type bool   theme
    5454     *   @type bool   plugin
    5555     *   @type bool   translation
     
    5959     *   }
    6060     *   @type array  schedule {
    61      *       @type string interval
    62      *       @type int    day
    63      *       @type string weekday
    64      *       @type int    hour
    65      *       @type int    minute
     61     *       @type string      interval
     62     *       @type int|string  day
     63     *       @type string      weekday
     64     *       @type int         hour
     65     *       @type int         minute
    6666     *   }
    6767     * }
     
    181181        add_filter( 'plugins_auto_update_enabled', '__return_false' );
    182182        add_filter( 'themes_auto_update_enabled', '__return_false' );
     183        add_action( 'after_core_auto_updates_settings', array( $this, 'hidden_auto_update_status' ) );
    183184    }
    184185
     
    188189     * @access public
    189190     *
    190      * @return void
     191     * @return bool
    191192     *
    192193     * @since 1.6.1
     
    218219        $option = $this->get_options( 'schedule' );
    219220        do_action( 'wp_auto_updater/set_cron', $option );
     221
     222        // Set auto_update_core_major to disable.
     223        update_site_option( 'auto_update_core_major' , 'disable' );
    220224    }
    221225
     
    471475        elseif ( 'monthly' === $schedule['interval'] ) {
    472476            $diff_last_day_sec = 0;
     477
     478            if ( 'last_day' === $schedule['day'] ) {
     479                $schedule['day'] = 31;
     480            }
    473481
    474482            if ( 28 <= $schedule['day'] ) {
     
    977985     * @access public
    978986     *
    979      * @return void
     987     * @return boolean
    980988     *
    981989     * @since 1.0.0
    982990     */
    983991    public function load_textdomain() {
    984         load_plugin_textdomain(
     992        return load_plugin_textdomain(
    985993            'wp-auto-updater',
    986994            false,
    987             dirname( plugin_basename( __WP_AUTO_UPDATER__ ) ) . '/languages/'
     995            plugin_dir_path( __WP_AUTO_UPDATER__ ) . 'languages'
    988996        );
    989997    }
     
    10981106        ?>
    10991107<select name="wp_auto_updater_options[core]">
    1100 <option value="minor"<?php selected( 'minor', $option ); ?>><?php esc_html_e( 'Minor Version Update (Recommended)', 'wp-auto-updater' ); ?></option>
     1108<option value="minor"<?php selected( 'minor', $option ); ?>><?php esc_html_e( 'Minor Version Update', 'wp-auto-updater' ); ?></option>
    11011109<option value="major"<?php selected( 'major', $option ); ?>><?php esc_html_e( 'Major Version Update', 'wp-auto-updater' ); ?></option>
    11021110<option value="minor-only"<?php selected( 'minor-only', $option ); ?>><?php esc_html_e( 'Minor Only Version Update', 'wp-auto-updater' ); ?></option>
     
    12891297        foreach ( $schedule_interval as $key => $label ) {
    12901298            // phpcs:ignore WordPress.WP.I18n.NonSingularStringLiteralText
    1291             echo '<p><label><input type="radio" name="wp_auto_updater_options[schedule][interval]" value="' . esc_attr( $key ) . '"' . checked( $key, $option['interval'], false ) . '> ' . esc_html__( $label, 'wp-auto-updater' ) . '</label></p>';
     1299            echo '<p><label><input type="radio" name="wp_auto_updater_options[schedule][interval]" value="' . esc_attr( $key ) . '"' . checked( $key, $option['interval'], false ) . '> ' . esc_html( $label ) . '</label></p>';
    12921300        }
    12931301    }
     
    13131321            echo '<option value="' . esc_attr( $day ) . '"' . selected( $day, $option['day'], false ) . '>' . esc_html( $day ) . '</option>';
    13141322        }
     1323        echo '<option value="last_day"' . selected( 'last_day', $option['day'], false ) . '>' . esc_html__( 'last day', 'wp-auto-updater' ) . '</option>';
    13151324        ?>
    13161325</select></p>
     
    14601469        $output['schedule']['interval'] = isset( $input['schedule']['interval'] ) ? $input['schedule']['interval'] : $this->default_options['schedule']['interval'];
    14611470
    1462         $output['schedule']['day'] = isset( $input['schedule']['day'] ) ? (int) $input['schedule']['day'] : (int) $this->default_options['schedule']['day'];
     1471        $output['schedule']['day'] = (int) $this->default_options['schedule']['day'];
     1472        if ( isset( $input['schedule']['day'] ) ) {
     1473            if ( $input['schedule']['day'] === 'last_day' ) {
     1474                $output['schedule']['day'] = $input['schedule']['day'];
     1475            }
     1476            else {
     1477                $output['schedule']['day'] = (int) $input['schedule']['day'];
     1478            }
     1479        }
    14631480
    14641481        $output['schedule']['weekday'] = empty( $input['schedule']['weekday'] ) ? $this->default_options['schedule']['weekday'] : strtolower( $input['schedule']['weekday'] );
     
    15631580
    15641581    /**
     1582     * Hidden auto update status on the update-core screen
     1583     *
     1584     * @access public
     1585     *
     1586     * @return void
     1587     *
     1588     * @since 1.6.4
     1589     */
     1590    public function hidden_auto_update_status( $auto_update_settings ) {
     1591?>
     1592<style>
     1593.auto-update-status {
     1594    display: none
     1595}
     1596</style><?php
     1597    }
     1598
     1599    /**
    15651600     * Display notice.
    15661601     *
    1567      * @access public static
     1602     * @access public
    15681603     *
    15691604     * @return void
  • wp-auto-updater/trunk/languages/wp-auto-updater-ja.po

    r2685869 r2899017  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: WP Auto Updater 1.6.3\n"
     5"Project-Id-Version: WP Auto Updater 1.7.0\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-auto-updater\n"
     7"POT-Creation-Date: 2023-04-14T06:05:38+00:00\n"
     8"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    79"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
    810"Language-Team: LANGUAGE <LL@li.org>\n"
     11"Language: \n"
    912"MIME-Version: 1.0\n"
    1013"Content-Type: text/plain; charset=UTF-8\n"
    1114"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2021-06-03T12:24:43+00:00\n"
    13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1415"X-Generator: WP-CLI 2.4.0\n"
    1516"X-Domain: wp-auto-updater\n"
    1617
    1718#. Plugin Name of the plugin
    18 #: inc/class-wp-auto-updater.php:950
     19#: inc/class-wp-auto-updater.php:1011
    1920msgid "WP Auto Updater"
    2021msgstr "WP Auto Updater"
     
    2526
    2627#. Description of the plugin
    27 msgid "This plugin enables automatic updates of WordPress Core, Themes, Plugins and Translations. Version control of WordPress Core makes automatic update more safely."
    28 msgstr "WP Auto Updater は、WordPress 本体、テーマ、プラグイン、翻訳の自動更新を有効にします。WordPress 本体のバージョンをコントロールして安全な自動更新を実現します。"
     28msgid ""
     29"This plugin enables automatic updates of WordPress Core, Themes, Plugins and "
     30"Translations. Version control of WordPress Core makes automatic update more "
     31"safely."
     32msgstr ""
     33"WP Auto Updater は、WordPress 本体、テーマ、プラグイン、翻訳の自動更新を有効"
     34"にします。WordPress 本体のバージョンをコントロールして安全な自動更新を実現し"
     35"ます。"
    2936
    3037#. Author of the plugin
     
    3744
    3845#. translators: table create notice: 1: table name, 2: table version
    39 #: inc/class-wp-auto-updater-history.php:179
     46#: inc/class-wp-auto-updater-history.php:180
    4047msgid "Table <strong>%1$s (%2$s)</strong> create succeeded."
    4148msgstr "テーブル <strong>%1$s (%2$s)</strong> を作成しました。"
    4249
    4350#. translators: table update notice: 1: table name, 2: table version
    44 #: inc/class-wp-auto-updater-history.php:198
     51#: inc/class-wp-auto-updater-history.php:199
    4552msgid "Table <strong>%1$s (%2$s)</strong> update succeeded."
    4653msgstr "テーブル <strong>%1$s (%2$s)</strong> をアップデートしました。"
    4754
    48 #: inc/class-wp-auto-updater-history.php:443
    4955#: inc/class-wp-auto-updater-history.php:444
    50 #: inc/class-wp-auto-updater-history.php:593
     56#: inc/class-wp-auto-updater-history.php:445
     57#: inc/class-wp-auto-updater-history.php:634
    5158msgid "Update History"
    5259msgstr "アップデート履歴"
    5360
    54 #: inc/class-wp-auto-updater-history.php:498
     61#: inc/class-wp-auto-updater-history.php:524
    5562msgid "First page"
    5663msgstr "はじめのページへ"
    5764
    58 #: inc/class-wp-auto-updater-history.php:512
     65#: inc/class-wp-auto-updater-history.php:538
    5966msgid "Previous page"
    6067msgstr "前のページへ"
    6168
    62 #: inc/class-wp-auto-updater-history.php:526
     69#: inc/class-wp-auto-updater-history.php:561
    6370msgid "Next page"
    6471msgstr "次のページへ"
    6572
    66 #: inc/class-wp-auto-updater-history.php:540
     73#: inc/class-wp-auto-updater-history.php:575
    6774msgid "Last page"
    6875msgstr "最後のページへ"
    6976
    70 #: inc/class-wp-auto-updater-history.php:561
     77#: inc/class-wp-auto-updater-history.php:596
    7178msgid "Table no exists."
    7279msgstr "テーブルはありません。"
    7380
    74 #: inc/class-wp-auto-updater-history.php:595
     81#: inc/class-wp-auto-updater-history.php:636
    7582msgid "Logs cleared."
    7683msgstr "ログをクリアしました。"
    7784
    7885#. translators: item: 1: item, 2: items
    79 #: inc/class-wp-auto-updater-history.php:606
    80 #: inc/class-wp-auto-updater-history.php:670
     86#: inc/class-wp-auto-updater-history.php:647
     87#: inc/class-wp-auto-updater-history.php:704
    8188msgid "%d item"
    8289msgid_plural "%d items"
     
    8491msgstr[1] "%d 個の項目"
    8592
    86 #: inc/class-wp-auto-updater-history.php:620
    87 #: inc/class-wp-auto-updater-history.php:642
     93#: inc/class-wp-auto-updater-history.php:661
     94#: inc/class-wp-auto-updater-history.php:683
    8895msgid "Date"
    8996msgstr "日時"
    9097
    91 #: inc/class-wp-auto-updater-history.php:621
    92 #: inc/class-wp-auto-updater-history.php:643
     98#: inc/class-wp-auto-updater-history.php:662
     99#: inc/class-wp-auto-updater-history.php:684
    93100msgid "User"
    94101msgstr "ユーザー"
    95102
    96 #: inc/class-wp-auto-updater-history.php:622
    97 #: inc/class-wp-auto-updater-history.php:644
     103#: inc/class-wp-auto-updater-history.php:663
     104#: inc/class-wp-auto-updater-history.php:685
    98105msgid "Status"
    99106msgstr "ステイタス"
    100107
    101 #: inc/class-wp-auto-updater-history.php:623
    102 #: inc/class-wp-auto-updater-history.php:645
     108#: inc/class-wp-auto-updater-history.php:664
     109#: inc/class-wp-auto-updater-history.php:686
    103110msgid "Mode"
    104111msgstr "モード"
    105112
    106 #: inc/class-wp-auto-updater-history.php:624
    107 #: inc/class-wp-auto-updater-history.php:646
     113#: inc/class-wp-auto-updater-history.php:665
     114#: inc/class-wp-auto-updater-history.php:687
    108115msgid "Label"
    109116msgstr "ラベル"
    110117
    111 #: inc/class-wp-auto-updater-history.php:625
    112 #: inc/class-wp-auto-updater-history.php:647
     118#: inc/class-wp-auto-updater-history.php:666
     119#: inc/class-wp-auto-updater-history.php:688
    113120msgid "Info"
    114121msgstr "内容"
    115122
    116 #: inc/class-wp-auto-updater-history.php:722
     123#: inc/class-wp-auto-updater-history.php:719
    117124msgid "Select keep logs period"
    118125msgstr "ログを残す期間を選択"
    119126
    120 #: inc/class-wp-auto-updater-history.php:723
     127#: inc/class-wp-auto-updater-history.php:720
    121128msgid "Delete all"
    122129msgstr "すべて削除"
    123130
    124 #: inc/class-wp-auto-updater-history.php:724
     131#: inc/class-wp-auto-updater-history.php:721
    125132msgid "for last 1 month"
    126133msgstr "1ヶ月分を残す"
    127134
    128 #: inc/class-wp-auto-updater-history.php:725
     135#: inc/class-wp-auto-updater-history.php:722
    129136msgid "for last 3 month"
    130137msgstr "3ヶ月分を残す"
    131138
    132 #: inc/class-wp-auto-updater-history.php:726
     139#: inc/class-wp-auto-updater-history.php:723
    133140msgid "for last 6 months"
    134141msgstr "6ヶ月分を残す"
    135142
    136 #: inc/class-wp-auto-updater-history.php:727
     143#: inc/class-wp-auto-updater-history.php:724
    137144msgid "for last 1 year"
    138145msgstr "1年分を残す"
    139146
    140 #: inc/class-wp-auto-updater-history.php:728
     147#: inc/class-wp-auto-updater-history.php:725
    141148msgid "for last 3 years"
    142149msgstr "3年分を残す"
    143150
    144 #: inc/class-wp-auto-updater-history.php:730
     151#: inc/class-wp-auto-updater-history.php:727
    145152msgid "Clear Logs"
    146153msgstr "ログをクリア"
    147154
    148 #: inc/class-wp-auto-updater-history.php:730
     155#: inc/class-wp-auto-updater-history.php:727
    149156msgid "Would you like to delete the logs?"
    150157msgstr "ログを削除しますか?"
     
    161168#. translators: %s: Home URL.
    162169#: inc/class-wp-auto-updater-notification.php:154
    163 msgid "Howdy! Failures occurred when attempting to update themes on your site at %s."
     170msgid ""
     171"Howdy! Failures occurred when attempting to update themes on your site at %s."
    164172msgstr "%s のサイトでテーマを更新しようとしたときにエラーが発生しました。"
    165173
     
    167175#: inc/class-wp-auto-updater-notification.php:180
    168176#: inc/class-wp-auto-updater-notification.php:202
    169 msgid "Please check out your site now. It’s possible that everything is working. If it says you need to update, you should do so."
    170 msgstr "今すぐあなたのサイトをチェックしてください。すべてが機能している可能性があります。更新する必要があると表示されている場合は、更新する必要があります。"
     177msgid ""
     178"Please check out your site now. It’s possible that everything is working. If "
     179"it says you need to update, you should do so."
     180msgstr ""
     181"今すぐあなたのサイトをチェックしてください。すべてが機能している可能性があり"
     182"ます。更新する必要があると表示されている場合は、更新する必要があります。"
    171183
    172184#: inc/class-wp-auto-updater-notification.php:160
     
    185197#. translators: %s: Home URL.
    186198#: inc/class-wp-auto-updater-notification.php:176
    187 msgid "Howdy! Failures occurred when attempting to update plugins on your site at %s."
     199msgid ""
     200"Howdy! Failures occurred when attempting to update plugins on your site at "
     201"%s."
    188202msgstr "%s のサイトでプラグインを更新しようとしたときにエラーが発生しました。"
    189203
     
    203217#. translators: %s: Home URL.
    204218#: inc/class-wp-auto-updater-notification.php:198
    205 msgid "Howdy! Failures occurred when attempting to update translations on your site at %s."
     219msgid ""
     220"Howdy! Failures occurred when attempting to update translations on your site "
     221"at %s."
    206222msgstr "%s のサイトで翻訳を更新しようとしたときにエラーが発生しました。"
    207223
     
    219235
    220236#: inc/class-wp-auto-updater-notification.php:461
    221 #: inc/class-wp-auto-updater.php:726
     237#: inc/class-wp-auto-updater.php:787
    222238msgid "WordPress Core"
    223239msgstr "WordPress本体"
    224240
    225241#: inc/class-wp-auto-updater-notification.php:469
    226 #: inc/class-wp-auto-updater.php:734
     242#: inc/class-wp-auto-updater.php:795
    227243msgid "Theme"
    228244msgstr "テーマ"
    229245
    230246#: inc/class-wp-auto-updater-notification.php:477
    231 #: inc/class-wp-auto-updater.php:742
     247#: inc/class-wp-auto-updater.php:803
    232248msgid "Plugin"
    233249msgstr "プラグイン"
    234250
    235251#: inc/class-wp-auto-updater-notification.php:485
    236 #: inc/class-wp-auto-updater.php:750
     252#: inc/class-wp-auto-updater.php:811
    237253msgid "Translation"
    238254msgstr "翻訳"
     
    254270
    255271#: inc/class-wp-auto-updater-notification.php:601
    256 msgid "WP Auto Updater will send notifications from this email address. Leave blank to use the WordPress default."
    257 msgstr "WP Auto Updater はこのメールアドレスから通知を送信します。WordPressのデフォルトを使用するには、空白のままにします。"
     272msgid ""
     273"WP Auto Updater will send notifications from this email address. Leave blank "
     274"to use the WordPress default."
     275msgstr ""
     276"WP Auto Updater はこのメールアドレスから通知を送信します。WordPressのデフォル"
     277"トを使用するには、空白のままにします。"
    258278
    259279#: inc/class-wp-auto-updater-notification.php:618
    260 msgid "Select one or more recipients. Only users with the Administrator role can select recipients."
    261 msgstr "1人以上の受取人を選択してください。管理者権限グループを持っているユーザーのみ受取人に選択できます。"
     280msgid ""
     281"Select one or more recipients. Only users with the Administrator role can "
     282"select recipients."
     283msgstr ""
     284"1人以上の受取人を選択してください。管理者権限グループを持っているユーザーのみ"
     285"受取人に選択できます。"
    262286
    263287#: inc/class-wp-auto-updater-notification.php:619
     
    265289msgstr "管理者メールアドレス (一般設定)"
    266290
    267 #: inc/class-wp-auto-updater.php:336
     291#: inc/class-wp-auto-updater.php:374
    268292msgid "Once Weekly"
    269293msgstr "週一回"
    270294
    271 #: inc/class-wp-auto-updater.php:341
     295#: inc/class-wp-auto-updater.php:379
    272296msgid "Once Monthly"
    273297msgstr "月一回"
    274298
    275 #: inc/class-wp-auto-updater.php:696
     299#: inc/class-wp-auto-updater.php:757
    276300msgid "WordPress Version"
    277301msgstr "WordPressのバージョン"
    278302
    279 #: inc/class-wp-auto-updater.php:703
     303#: inc/class-wp-auto-updater.php:764
    280304msgid "Current Version"
    281305msgstr "今のバージョン"
    282306
    283 #: inc/class-wp-auto-updater.php:711
     307#: inc/class-wp-auto-updater.php:772
    284308msgid "Newer Version"
    285309msgstr "最新のバージョン"
    286310
    287 #: inc/class-wp-auto-updater.php:719
     311#: inc/class-wp-auto-updater.php:780
    288312msgid "Auto Update Scenario"
    289313msgstr "自動更新シナリオ"
    290314
    291 #: inc/class-wp-auto-updater.php:758
     315#: inc/class-wp-auto-updater.php:819
    292316msgid "Schedule"
    293317msgstr "スケジュール"
    294318
    295 #: inc/class-wp-auto-updater.php:765
     319#: inc/class-wp-auto-updater.php:826
    296320msgid "Next Update Date"
    297321msgstr "次の更新日"
    298322
    299 #: inc/class-wp-auto-updater.php:773
     323#: inc/class-wp-auto-updater.php:834
    300324msgid "Update Interval"
    301325msgstr "更新間隔"
    302326
    303 #: inc/class-wp-auto-updater.php:781
     327#: inc/class-wp-auto-updater.php:842
    304328msgid "Update Date"
    305329msgstr "更新日時"
    306330
    307 #: inc/class-wp-auto-updater.php:789
     331#: inc/class-wp-auto-updater.php:850
    308332msgid "Disable Auto Update Themes"
    309333msgstr "自動更新を停止するテーマ"
    310334
    311 #: inc/class-wp-auto-updater.php:796
     335#: inc/class-wp-auto-updater.php:857
    312336msgid "Themes"
    313337msgstr "テーマ"
    314338
    315 #: inc/class-wp-auto-updater.php:804
     339#: inc/class-wp-auto-updater.php:865
    316340msgid "Disable Auto Update Plugins"
    317341msgstr "自動更新を停止するプラグイン"
    318342
    319 #: inc/class-wp-auto-updater.php:811
     343#: inc/class-wp-auto-updater.php:872
    320344msgid "Plugins"
    321345msgstr "プラグイン"
    322346
    323 #: inc/class-wp-auto-updater.php:843
    324 #: inc/class-wp-auto-updater.php:844
     347#: inc/class-wp-auto-updater.php:904 inc/class-wp-auto-updater.php:905
    325348msgid "Auto Updater"
    326349msgstr "自動更新"
    327350
    328 #: inc/class-wp-auto-updater.php:975
     351#: inc/class-wp-auto-updater.php:1036
    329352msgid "Twice Daily (12 hours interval)"
    330353msgstr "1日2回 (12時間間隔)"
    331354
    332 #: inc/class-wp-auto-updater.php:976
     355#: inc/class-wp-auto-updater.php:1037
    333356msgid "Daily"
    334357msgstr "毎日"
    335358
    336 #: inc/class-wp-auto-updater.php:977
     359#: inc/class-wp-auto-updater.php:1038
    337360msgid "Weekly"
    338361msgstr "毎週"
    339362
    340 #: inc/class-wp-auto-updater.php:978
     363#: inc/class-wp-auto-updater.php:1039
    341364msgid "Monthly"
    342365msgstr "毎月"
    343366
    344 #: inc/class-wp-auto-updater.php:1047
    345 msgid "Minor Version Update (Recommended)"
    346 msgstr "マイナーバージョンをアップデート (推奨)"
    347 
    348 #: inc/class-wp-auto-updater.php:1048
     367#: inc/class-wp-auto-updater.php:1108
     368msgid "Minor Version Update"
     369msgstr "マイナーバージョンをアップデート"
     370
     371#: inc/class-wp-auto-updater.php:1109
    349372msgid "Major Version Update"
    350373msgstr "メジャーバージョンをアップデート"
    351374
    352 #: inc/class-wp-auto-updater.php:1049
     375#: inc/class-wp-auto-updater.php:1110
    353376msgid "Minor Only Version Update"
    354377msgstr "マイナーバージョンだけをアップデート"
    355378
    356 #: inc/class-wp-auto-updater.php:1050
     379#: inc/class-wp-auto-updater.php:1111
    357380msgid "Previous Generation Version Update"
    358381msgstr "一世代前のバージョンをアップデート"
    359382
    360 #: inc/class-wp-auto-updater.php:1051
    361 #: inc/class-wp-auto-updater.php:1072
    362 #: inc/class-wp-auto-updater.php:1091
    363 #: inc/class-wp-auto-updater.php:1110
     383#: inc/class-wp-auto-updater.php:1112 inc/class-wp-auto-updater.php:1133
     384#: inc/class-wp-auto-updater.php:1152 inc/class-wp-auto-updater.php:1171
    364385msgid "Manual Update"
    365386msgstr "手動でアップデート"
    366387
    367 #: inc/class-wp-auto-updater.php:1054
     388#: inc/class-wp-auto-updater.php:1115
    368389msgid "See WordPress Update Process Chart"
    369390msgstr "WordPress 本体のアップデートプロセスチャート"
    370391
    371 #: inc/class-wp-auto-updater.php:1071
    372 #: inc/class-wp-auto-updater.php:1090
    373 #: inc/class-wp-auto-updater.php:1109
     392#: inc/class-wp-auto-updater.php:1132 inc/class-wp-auto-updater.php:1151
     393#: inc/class-wp-auto-updater.php:1170
    374394msgid "Auto Update"
    375395msgstr "自動でアップデート"
    376396
    377 #: inc/class-wp-auto-updater.php:1135
     397#: inc/class-wp-auto-updater.php:1196
    378398msgid "Local time"
    379399msgstr "現地時間"
    380400
    381 #: inc/class-wp-auto-updater.php:1136
     401#: inc/class-wp-auto-updater.php:1197
    382402msgid "GMT"
    383403msgstr "グリニッジ標準時"
    384404
    385 #: inc/class-wp-auto-updater.php:1165
    386 msgid "The cron schedule is out of sync with the set schedule. You may have changed the cron schedule or the timezone somewhere else."
    387 msgstr "cron スケジュールが設定されたスケジュールと同期していません。 cron スケジュールまたはタイムゾーンを別の場所で変更した可能性があります。"
     405#: inc/class-wp-auto-updater.php:1207
     406msgid ""
     407"The cron schedule is out of sync with the set schedule. You may have changed "
     408"the cron schedule or the timezone somewhere else."
     409msgstr ""
     410"cron スケジュールが設定されたスケジュールと同期していません。 cron スケジュー"
     411"ルまたはタイムゾーンを別の場所で変更した可能性があります。"
    388412
    389413#. translators: day: 1: day, 2: days
    390 #: inc/class-wp-auto-updater.php:1153
     414#: inc/class-wp-auto-updater.php:1227
    391415msgid "%d day"
    392416msgid_plural "%d days"
     
    395419
    396420#. translators: hour: 1: hour, 2: hours
    397 #: inc/class-wp-auto-updater.php:1161
    398 #: inc/class-wp-auto-updater.php:1182
     421#: inc/class-wp-auto-updater.php:1235 inc/class-wp-auto-updater.php:1256
    399422msgid "%d hour"
    400423msgid_plural "%d hours"
     
    403426
    404427#. translators: minute: 1: minute, 2: minutes
    405 #: inc/class-wp-auto-updater.php:1170
    406 #: inc/class-wp-auto-updater.php:1189
    407 #: inc/class-wp-auto-updater.php:1201
     428#: inc/class-wp-auto-updater.php:1244 inc/class-wp-auto-updater.php:1263
     429#: inc/class-wp-auto-updater.php:1275
    408430msgid "%d minute"
    409431msgid_plural "%d minutes"
     
    411433msgstr[1] "%d 分"
    412434
    413 #: inc/class-wp-auto-updater.php:1176
    414 #: inc/class-wp-auto-updater.php:1195
    415 #: inc/class-wp-auto-updater.php:1206
     435#: inc/class-wp-auto-updater.php:1250 inc/class-wp-auto-updater.php:1269
     436#: inc/class-wp-auto-updater.php:1280
    416437msgid "ago"
    417438msgstr "前"
    418439
    419 #: inc/class-wp-auto-updater.php:1176
    420 #: inc/class-wp-auto-updater.php:1195
    421 #: inc/class-wp-auto-updater.php:1206
     440#: inc/class-wp-auto-updater.php:1250 inc/class-wp-auto-updater.php:1269
     441#: inc/class-wp-auto-updater.php:1280
    422442msgid "later"
    423443msgstr "後"
    424444
    425 #: inc/class-wp-auto-updater.php:1242
     445#: inc/class-wp-auto-updater.php:1316
    426446msgid "Day: "
    427447msgstr "日: "
    428448
    429 #: inc/class-wp-auto-updater.php:1252
     449#: inc/class-wp-auto-updater.php:1323
     450msgid "last day"
     451msgstr "末日"
     452
     453#: inc/class-wp-auto-updater.php:1327
    430454msgid "Weekday: "
    431455msgstr "曜日: "
    432456
    433 #: inc/class-wp-auto-updater.php:1256
     457#: inc/class-wp-auto-updater.php:1331
    434458msgid "Monday"
    435459msgstr "月曜日"
    436460
    437 #: inc/class-wp-auto-updater.php:1257
     461#: inc/class-wp-auto-updater.php:1332
    438462msgid "Tuesday"
    439463msgstr "火曜日"
    440464
    441 #: inc/class-wp-auto-updater.php:1258
     465#: inc/class-wp-auto-updater.php:1333
    442466msgid "Wednesday"
    443467msgstr "水曜日"
    444468
    445 #: inc/class-wp-auto-updater.php:1259
     469#: inc/class-wp-auto-updater.php:1334
    446470msgid "Thursday"
    447471msgstr "木曜日"
    448472
    449 #: inc/class-wp-auto-updater.php:1260
     473#: inc/class-wp-auto-updater.php:1335
    450474msgid "Friday"
    451475msgstr "金曜日"
    452476
    453 #: inc/class-wp-auto-updater.php:1261
     477#: inc/class-wp-auto-updater.php:1336
    454478msgid "Saturday"
    455479msgstr "土曜日"
    456480
    457 #: inc/class-wp-auto-updater.php:1262
     481#: inc/class-wp-auto-updater.php:1337
    458482msgid "Sunday"
    459483msgstr "日曜日"
    460484
    461 #: inc/class-wp-auto-updater.php:1271
     485#: inc/class-wp-auto-updater.php:1346
    462486msgid "Hour: "
    463487msgstr "時: "
    464488
    465 #: inc/class-wp-auto-updater.php:1281
     489#: inc/class-wp-auto-updater.php:1356
    466490msgid "Minute: "
    467491msgstr "分: "
    468492
    469 #: inc/class-wp-auto-updater.php:1304
     493#: inc/class-wp-auto-updater.php:1379
    470494msgid "Select a theme that you do not want to automatically update."
    471495msgstr "自動更新を停止するテーマを選んでください。"
    472496
    473497#. translators: installed: 1: count
    474 #: inc/class-wp-auto-updater.php:1322
    475 #: inc/class-wp-auto-updater.php:1362
     498#: inc/class-wp-auto-updater.php:1397 inc/class-wp-auto-updater.php:1437
    476499msgid "%d installed"
    477500msgstr "%d 個インストール済み"
    478501
    479 #: inc/class-wp-auto-updater.php:1344
     502#: inc/class-wp-auto-updater.php:1419
    480503msgid "Select a plugin that you do not want to automatically update."
    481504msgstr "自動更新を停止するプラグインを選んでください。"
    482505
    483 #: inc/class-wp-auto-updater.php:1443
     506#: inc/class-wp-auto-updater.php:1532
    484507msgid "Become a sponsor"
    485508msgstr "スポンサーになる"
    486509
    487 #: inc/class-wp-auto-updater.php:1465
     510#: inc/class-wp-auto-updater.php:1554
    488511msgid "Settings"
    489512msgstr "設定"
    490513
    491 #: inc/class-wp-auto-updater.php:1504
     514#: inc/class-wp-auto-updater.php:1611
    492515msgid "Automatic updating is not possible."
    493516msgstr "自動更新はできません。"
  • wp-auto-updater/trunk/languages/wp-auto-updater.pot

    r2685869 r2899017  
    1 # Copyright (C) 2021 thingsym
    2 # This file is distributed under the same license as the WP Auto Updater plugin.
     1# Copyright (C) 2023 thingsym
     2# This file is distributed under the GPLv2 or later.
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: WP Auto Updater 1.6.3\n"
     5"Project-Id-Version: WP Auto Updater 1.7.0\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-auto-updater\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2021-06-03T12:33:09+00:00\n"
     12"POT-Creation-Date: 2023-04-14T06:05:38+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    14 "X-Generator: WP-CLI 2.4.0\n"
     14"X-Generator: WP-CLI 2.7.1\n"
    1515"X-Domain: wp-auto-updater\n"
    1616
    1717#. Plugin Name of the plugin
    18 #: inc/class-wp-auto-updater.php:969
     18#: inc/class-wp-auto-updater.php:1011
    1919msgid "WP Auto Updater"
    2020msgstr ""
     
    3737
    3838#. translators: table create notice: 1: table name, 2: table version
    39 #: inc/class-wp-auto-updater-history.php:183
     39#: inc/class-wp-auto-updater-history.php:180
    4040msgid "Table <strong>%1$s (%2$s)</strong> create succeeded."
    4141msgstr ""
    4242
    4343#. translators: table update notice: 1: table name, 2: table version
    44 #: inc/class-wp-auto-updater-history.php:202
     44#: inc/class-wp-auto-updater-history.php:199
    4545msgid "Table <strong>%1$s (%2$s)</strong> update succeeded."
    4646msgstr ""
    4747
    48 #: inc/class-wp-auto-updater-history.php:447
    49 #: inc/class-wp-auto-updater-history.php:448
    50 #: inc/class-wp-auto-updater-history.php:637
     48#: inc/class-wp-auto-updater-history.php:444
     49#: inc/class-wp-auto-updater-history.php:445
     50#: inc/class-wp-auto-updater-history.php:634
    5151msgid "Update History"
    5252msgstr ""
    5353
    54 #: inc/class-wp-auto-updater-history.php:527
     54#: inc/class-wp-auto-updater-history.php:524
    5555msgid "First page"
    5656msgstr ""
    5757
    58 #: inc/class-wp-auto-updater-history.php:541
     58#: inc/class-wp-auto-updater-history.php:538
    5959msgid "Previous page"
    6060msgstr ""
    6161
    62 #: inc/class-wp-auto-updater-history.php:564
     62#: inc/class-wp-auto-updater-history.php:561
    6363msgid "Next page"
    6464msgstr ""
    6565
    66 #: inc/class-wp-auto-updater-history.php:578
     66#: inc/class-wp-auto-updater-history.php:575
    6767msgid "Last page"
    6868msgstr ""
    6969
    70 #: inc/class-wp-auto-updater-history.php:599
     70#: inc/class-wp-auto-updater-history.php:596
    7171msgid "Table no exists."
    7272msgstr ""
    7373
    74 #: inc/class-wp-auto-updater-history.php:639
     74#: inc/class-wp-auto-updater-history.php:636
    7575msgid "Logs cleared."
    7676msgstr ""
    7777
    7878#. translators: item: 1: item, 2: items
    79 #: inc/class-wp-auto-updater-history.php:650
    80 #: inc/class-wp-auto-updater-history.php:707
     79#: inc/class-wp-auto-updater-history.php:647
     80#: inc/class-wp-auto-updater-history.php:704
    8181msgid "%d item"
    8282msgid_plural "%d items"
     
    8484msgstr[1] ""
    8585
     86#: inc/class-wp-auto-updater-history.php:661
     87#: inc/class-wp-auto-updater-history.php:683
     88msgid "Date"
     89msgstr ""
     90
     91#: inc/class-wp-auto-updater-history.php:662
     92#: inc/class-wp-auto-updater-history.php:684
     93msgid "User"
     94msgstr ""
     95
     96#: inc/class-wp-auto-updater-history.php:663
     97#: inc/class-wp-auto-updater-history.php:685
     98msgid "Status"
     99msgstr ""
     100
    86101#: inc/class-wp-auto-updater-history.php:664
    87102#: inc/class-wp-auto-updater-history.php:686
    88 msgid "Date"
     103msgid "Mode"
    89104msgstr ""
    90105
    91106#: inc/class-wp-auto-updater-history.php:665
    92107#: inc/class-wp-auto-updater-history.php:687
    93 msgid "User"
     108msgid "Label"
    94109msgstr ""
    95110
    96111#: inc/class-wp-auto-updater-history.php:666
    97112#: inc/class-wp-auto-updater-history.php:688
    98 msgid "Status"
    99 msgstr ""
    100 
    101 #: inc/class-wp-auto-updater-history.php:667
    102 #: inc/class-wp-auto-updater-history.php:689
    103 msgid "Mode"
    104 msgstr ""
    105 
    106 #: inc/class-wp-auto-updater-history.php:668
    107 #: inc/class-wp-auto-updater-history.php:690
    108 msgid "Label"
    109 msgstr ""
    110 
    111 #: inc/class-wp-auto-updater-history.php:669
    112 #: inc/class-wp-auto-updater-history.php:691
    113113msgid "Info"
    114114msgstr ""
    115115
     116#: inc/class-wp-auto-updater-history.php:719
     117msgid "Select keep logs period"
     118msgstr ""
     119
     120#: inc/class-wp-auto-updater-history.php:720
     121msgid "Delete all"
     122msgstr ""
     123
     124#: inc/class-wp-auto-updater-history.php:721
     125msgid "for last 1 month"
     126msgstr ""
     127
    116128#: inc/class-wp-auto-updater-history.php:722
    117 msgid "Select keep logs period"
     129msgid "for last 3 month"
    118130msgstr ""
    119131
    120132#: inc/class-wp-auto-updater-history.php:723
    121 msgid "Delete all"
     133msgid "for last 6 months"
    122134msgstr ""
    123135
    124136#: inc/class-wp-auto-updater-history.php:724
    125 msgid "for last 1 month"
     137msgid "for last 1 year"
    126138msgstr ""
    127139
    128140#: inc/class-wp-auto-updater-history.php:725
    129 msgid "for last 3 month"
    130 msgstr ""
    131 
    132 #: inc/class-wp-auto-updater-history.php:726
    133 msgid "for last 6 months"
     141msgid "for last 3 years"
    134142msgstr ""
    135143
    136144#: inc/class-wp-auto-updater-history.php:727
    137 msgid "for last 1 year"
    138 msgstr ""
    139 
    140 #: inc/class-wp-auto-updater-history.php:728
    141 msgid "for last 3 years"
    142 msgstr ""
    143 
    144 #: inc/class-wp-auto-updater-history.php:730
    145145msgid "Clear Logs"
    146146msgstr ""
    147147
    148 #: inc/class-wp-auto-updater-history.php:730
     148#: inc/class-wp-auto-updater-history.php:727
    149149msgid "Would you like to delete the logs?"
    150150msgstr ""
     
    219219
    220220#: inc/class-wp-auto-updater-notification.php:461
    221 #: inc/class-wp-auto-updater.php:745
     221#: inc/class-wp-auto-updater.php:787
    222222msgid "WordPress Core"
    223223msgstr ""
    224224
    225225#: inc/class-wp-auto-updater-notification.php:469
    226 #: inc/class-wp-auto-updater.php:753
     226#: inc/class-wp-auto-updater.php:795
    227227msgid "Theme"
    228228msgstr ""
    229229
    230230#: inc/class-wp-auto-updater-notification.php:477
    231 #: inc/class-wp-auto-updater.php:761
     231#: inc/class-wp-auto-updater.php:803
    232232msgid "Plugin"
    233233msgstr ""
    234234
    235235#: inc/class-wp-auto-updater-notification.php:485
    236 #: inc/class-wp-auto-updater.php:769
     236#: inc/class-wp-auto-updater.php:811
    237237msgid "Translation"
    238238msgstr ""
     
    265265msgstr ""
    266266
    267 #: inc/class-wp-auto-updater.php:336
     267#: inc/class-wp-auto-updater.php:374
    268268msgid "Once Weekly"
    269269msgstr ""
    270270
    271 #: inc/class-wp-auto-updater.php:341
     271#: inc/class-wp-auto-updater.php:379
    272272msgid "Once Monthly"
    273273msgstr ""
    274274
    275 #: inc/class-wp-auto-updater.php:715
     275#: inc/class-wp-auto-updater.php:757
    276276msgid "WordPress Version"
    277277msgstr ""
    278278
    279 #: inc/class-wp-auto-updater.php:722
     279#: inc/class-wp-auto-updater.php:764
    280280msgid "Current Version"
    281281msgstr ""
    282282
    283 #: inc/class-wp-auto-updater.php:730
     283#: inc/class-wp-auto-updater.php:772
    284284msgid "Newer Version"
    285285msgstr ""
    286286
    287 #: inc/class-wp-auto-updater.php:738
     287#: inc/class-wp-auto-updater.php:780
    288288msgid "Auto Update Scenario"
    289289msgstr ""
    290290
    291 #: inc/class-wp-auto-updater.php:777
     291#: inc/class-wp-auto-updater.php:819
    292292msgid "Schedule"
    293293msgstr ""
    294294
    295 #: inc/class-wp-auto-updater.php:784
     295#: inc/class-wp-auto-updater.php:826
    296296msgid "Next Update Date"
    297297msgstr ""
    298298
    299 #: inc/class-wp-auto-updater.php:792
     299#: inc/class-wp-auto-updater.php:834
    300300msgid "Update Interval"
    301301msgstr ""
    302302
    303 #: inc/class-wp-auto-updater.php:800
     303#: inc/class-wp-auto-updater.php:842
    304304msgid "Update Date"
    305305msgstr ""
    306306
    307 #: inc/class-wp-auto-updater.php:808
     307#: inc/class-wp-auto-updater.php:850
    308308msgid "Disable Auto Update Themes"
    309309msgstr ""
    310310
    311 #: inc/class-wp-auto-updater.php:815
     311#: inc/class-wp-auto-updater.php:857
    312312msgid "Themes"
    313313msgstr ""
    314314
    315 #: inc/class-wp-auto-updater.php:823
     315#: inc/class-wp-auto-updater.php:865
    316316msgid "Disable Auto Update Plugins"
    317317msgstr ""
    318318
    319 #: inc/class-wp-auto-updater.php:830
     319#: inc/class-wp-auto-updater.php:872
    320320msgid "Plugins"
    321321msgstr ""
    322322
    323 #: inc/class-wp-auto-updater.php:862
    324 #: inc/class-wp-auto-updater.php:863
     323#: inc/class-wp-auto-updater.php:904
     324#: inc/class-wp-auto-updater.php:905
    325325msgid "Auto Updater"
    326326msgstr ""
    327327
    328 #: inc/class-wp-auto-updater.php:994
     328#: inc/class-wp-auto-updater.php:1036
    329329msgid "Twice Daily (12 hours interval)"
    330330msgstr ""
    331331
    332 #: inc/class-wp-auto-updater.php:995
     332#: inc/class-wp-auto-updater.php:1037
    333333msgid "Daily"
    334334msgstr ""
    335335
    336 #: inc/class-wp-auto-updater.php:996
     336#: inc/class-wp-auto-updater.php:1038
    337337msgid "Weekly"
    338338msgstr ""
    339339
    340 #: inc/class-wp-auto-updater.php:997
     340#: inc/class-wp-auto-updater.php:1039
    341341msgid "Monthly"
    342342msgstr ""
    343343
    344 #: inc/class-wp-auto-updater.php:1066
    345 msgid "Minor Version Update (Recommended)"
    346 msgstr ""
    347 
    348 #: inc/class-wp-auto-updater.php:1067
     344#: inc/class-wp-auto-updater.php:1108
     345msgid "Minor Version Update"
     346msgstr ""
     347
     348#: inc/class-wp-auto-updater.php:1109
    349349msgid "Major Version Update"
    350350msgstr ""
    351351
    352 #: inc/class-wp-auto-updater.php:1068
     352#: inc/class-wp-auto-updater.php:1110
    353353msgid "Minor Only Version Update"
    354354msgstr ""
    355355
    356 #: inc/class-wp-auto-updater.php:1069
     356#: inc/class-wp-auto-updater.php:1111
    357357msgid "Previous Generation Version Update"
    358358msgstr ""
    359359
    360 #: inc/class-wp-auto-updater.php:1070
    361 #: inc/class-wp-auto-updater.php:1091
    362 #: inc/class-wp-auto-updater.php:1110
    363 #: inc/class-wp-auto-updater.php:1129
     360#: inc/class-wp-auto-updater.php:1112
     361#: inc/class-wp-auto-updater.php:1133
     362#: inc/class-wp-auto-updater.php:1152
     363#: inc/class-wp-auto-updater.php:1171
    364364msgid "Manual Update"
    365365msgstr ""
    366366
    367 #: inc/class-wp-auto-updater.php:1073
     367#: inc/class-wp-auto-updater.php:1115
    368368msgid "See WordPress Update Process Chart"
    369369msgstr ""
    370370
    371 #: inc/class-wp-auto-updater.php:1090
    372 #: inc/class-wp-auto-updater.php:1109
    373 #: inc/class-wp-auto-updater.php:1128
     371#: inc/class-wp-auto-updater.php:1132
     372#: inc/class-wp-auto-updater.php:1151
     373#: inc/class-wp-auto-updater.php:1170
    374374msgid "Auto Update"
    375375msgstr ""
    376376
    377 #: inc/class-wp-auto-updater.php:1154
     377#: inc/class-wp-auto-updater.php:1196
    378378msgid "Local time"
    379379msgstr ""
    380380
    381 #: inc/class-wp-auto-updater.php:1155
     381#: inc/class-wp-auto-updater.php:1197
    382382msgid "GMT"
    383383msgstr ""
    384384
    385 #: inc/class-wp-auto-updater.php:1165
     385#: inc/class-wp-auto-updater.php:1207
    386386msgid "The cron schedule is out of sync with the set schedule. You may have changed the cron schedule or the timezone somewhere else."
    387387msgstr ""
    388388
    389389#. translators: day: 1: day, 2: days
    390 #: inc/class-wp-auto-updater.php:1172
     390#: inc/class-wp-auto-updater.php:1227
    391391msgid "%d day"
    392392msgid_plural "%d days"
     
    395395
    396396#. translators: hour: 1: hour, 2: hours
    397 #: inc/class-wp-auto-updater.php:1180
    398 #: inc/class-wp-auto-updater.php:1201
     397#: inc/class-wp-auto-updater.php:1235
     398#: inc/class-wp-auto-updater.php:1256
    399399msgid "%d hour"
    400400msgid_plural "%d hours"
     
    403403
    404404#. translators: minute: 1: minute, 2: minutes
    405 #: inc/class-wp-auto-updater.php:1189
    406 #: inc/class-wp-auto-updater.php:1208
    407 #: inc/class-wp-auto-updater.php:1220
     405#: inc/class-wp-auto-updater.php:1244
     406#: inc/class-wp-auto-updater.php:1263
     407#: inc/class-wp-auto-updater.php:1275
    408408msgid "%d minute"
    409409msgid_plural "%d minutes"
     
    411411msgstr[1] ""
    412412
    413 #: inc/class-wp-auto-updater.php:1195
    414 #: inc/class-wp-auto-updater.php:1214
    415 #: inc/class-wp-auto-updater.php:1225
     413#: inc/class-wp-auto-updater.php:1250
     414#: inc/class-wp-auto-updater.php:1269
     415#: inc/class-wp-auto-updater.php:1280
    416416msgid "ago"
    417417msgstr ""
    418418
    419 #: inc/class-wp-auto-updater.php:1195
    420 #: inc/class-wp-auto-updater.php:1214
    421 #: inc/class-wp-auto-updater.php:1225
     419#: inc/class-wp-auto-updater.php:1250
     420#: inc/class-wp-auto-updater.php:1269
     421#: inc/class-wp-auto-updater.php:1280
    422422msgid "later"
    423423msgstr ""
    424424
    425 #: inc/class-wp-auto-updater.php:1261
     425#: inc/class-wp-auto-updater.php:1316
    426426msgid "Day: "
    427427msgstr ""
    428428
    429 #: inc/class-wp-auto-updater.php:1271
     429#: inc/class-wp-auto-updater.php:1323
     430msgid "last day"
     431msgstr ""
     432
     433#: inc/class-wp-auto-updater.php:1327
    430434msgid "Weekday: "
    431435msgstr ""
    432436
    433 #: inc/class-wp-auto-updater.php:1275
     437#: inc/class-wp-auto-updater.php:1331
    434438msgid "Monday"
    435439msgstr ""
    436440
    437 #: inc/class-wp-auto-updater.php:1276
     441#: inc/class-wp-auto-updater.php:1332
    438442msgid "Tuesday"
    439443msgstr ""
    440444
    441 #: inc/class-wp-auto-updater.php:1277
     445#: inc/class-wp-auto-updater.php:1333
    442446msgid "Wednesday"
    443447msgstr ""
    444448
    445 #: inc/class-wp-auto-updater.php:1278
     449#: inc/class-wp-auto-updater.php:1334
    446450msgid "Thursday"
    447451msgstr ""
    448452
    449 #: inc/class-wp-auto-updater.php:1279
     453#: inc/class-wp-auto-updater.php:1335
    450454msgid "Friday"
    451455msgstr ""
    452456
    453 #: inc/class-wp-auto-updater.php:1280
     457#: inc/class-wp-auto-updater.php:1336
    454458msgid "Saturday"
    455459msgstr ""
    456460
    457 #: inc/class-wp-auto-updater.php:1281
     461#: inc/class-wp-auto-updater.php:1337
    458462msgid "Sunday"
    459463msgstr ""
    460464
    461 #: inc/class-wp-auto-updater.php:1290
     465#: inc/class-wp-auto-updater.php:1346
    462466msgid "Hour: "
    463467msgstr ""
    464468
    465 #: inc/class-wp-auto-updater.php:1300
     469#: inc/class-wp-auto-updater.php:1356
    466470msgid "Minute: "
    467471msgstr ""
    468472
    469 #: inc/class-wp-auto-updater.php:1323
     473#: inc/class-wp-auto-updater.php:1379
    470474msgid "Select a theme that you do not want to automatically update."
    471475msgstr ""
    472476
    473477#. translators: installed: 1: count
    474 #: inc/class-wp-auto-updater.php:1341
    475 #: inc/class-wp-auto-updater.php:1381
     478#: inc/class-wp-auto-updater.php:1397
     479#: inc/class-wp-auto-updater.php:1437
    476480msgid "%d installed"
    477481msgstr ""
    478482
    479 #: inc/class-wp-auto-updater.php:1363
     483#: inc/class-wp-auto-updater.php:1419
    480484msgid "Select a plugin that you do not want to automatically update."
    481485msgstr ""
    482486
    483 #: inc/class-wp-auto-updater.php:1462
     487#: inc/class-wp-auto-updater.php:1532
    484488msgid "Become a sponsor"
    485489msgstr ""
    486490
    487 #: inc/class-wp-auto-updater.php:1484
     491#: inc/class-wp-auto-updater.php:1554
    488492msgid "Settings"
    489493msgstr ""
    490494
    491 #: inc/class-wp-auto-updater.php:1523
     495#: inc/class-wp-auto-updater.php:1611
    492496msgid "Automatic updating is not possible."
    493497msgstr ""
  • wp-auto-updater/trunk/readme.txt

    r2736885 r2899017  
    44Donate link: https://github.com/sponsors/thingsym
    55Tags: updates, auto update, automatic updates, background updates, core updates, theme updates, translation updates, plugin updates
    6 Stable tag: 1.6.3
    7 Tested up to: 6.0.0
     6Stable tag: 1.7.0
     7Tested up to: 6.2.0
    88Requires at least: 4.9
    99Requires PHP: 5.6
     
    1111License URI: http://www.gnu.org/licenses/gpl-2.0.html
    1212
    13 This WordPress plugin enables automatic updates of WordPress Core, Themes, Plugins and Translations. Version control of WordPress Core makes automatic update more safely.
     13WP Auto Updater plugin enables automatic updates of WordPress Core, Themes, Plugins and Translations. Version control of WordPress Core makes automatic update more safely.
    1414
    1515== Description ==
    1616
    17 This WordPress plugin enables automatic updates of WordPress Core, Themes, Plugins and Translations. Version control of WordPress Core makes automatic update more safely.
     17WP Auto Updater plugin enables automatic updates of WordPress Core, Themes, Plugins and Translations. Version control of WordPress Core makes automatic update more safely.
    1818
    1919= Features =
     
    3434You can choose from the following five automatic updates of WordPress Core.
    3535
    36 * Minor Version Update (Recommended)
     36* Minor Version Update
    3737* Major Version Update
    3838* Minor Only Version Update
     
    4040* Manual Update
    4141
    42 = Minor Version Update (Recommended) =
    43 
    44 **Minor Version Update (Recommended)** enable minor updates. Minor updates is default behavior in WordPress for security updates. The transition of the version number is as follows: update from 4.8 to 4.8.1, 4.8.2 ...
     42= Minor Version Update =
     43
     44**Minor Version Update** enable minor updates. Minor updates is default behavior in WordPress for security updates. The transition of the version number is as follows: update from 4.8 to 4.8.1, 4.8.2 ...
    4545
    4646= Major Version Update =
     
    5050= Minor Only Version Update =
    5151
    52 **Minor Only Version Update** enable major updates and minor updates **except version x.y.0**.
     52**Minor Only Version Update** enable major updates and minor updates **except version x.y.0**. It make sense to take a "skip" approach to avoid introducing new vulnerabilities into the latest major version release.
    5353
    5454Update the WordPress Core version (eg. x.y.1 or later) with security fixed. Not automatically update the latest major version of x.y.0. The transition of the version number is as follows: update from 4.7.z to 4.8.z, 4.9.z ... skiped 4.7.0, 4.8.0, 4.9.0 ...
     
    5656= Previous Generation Version Update =
    5757
    58 **Previous Generation Version Update** enable major updates and minor updates **except the latest major version**.
     58**Previous Generation Version Update** enable major updates and minor updates **except the latest major version**. It make sense to take a "wait and see" approach to ensure the latest major version release is stable before.
    5959
    6060With the installed WordPress Core version as 4.6.z. If the latest WordPress Core version released to 4.8.0, automatically update it to version 4.7.z. It will be always automatically updated to the previous generation WordPress Core version with probably security fixed.
     
    8181At the time of automatic update, Automatically updates WordPress Core, Themes, Plugins and Translations to be updated.
    8282
     83= Support =
     84
     85If you have any trouble, you can use the forums or report bugs.
     86
     87* Forum: [https://wordpress.org/support/plugin/wp-auto-updater/](https://wordpress.org/support/plugin/wp-auto-updater/)
     88* Issues: [https://github.com/thingsym/wp-auto-updater/issues](https://github.com/thingsym/wp-auto-updater/issues)
     89
     90= Contribution =
     91
     92Small patches and bug reports can be submitted a issue tracker in Github. Forking on Github is another good way. You can send a pull request.
     93
     94Translating a plugin takes a lot of time, effort, and patience. I really appreciate the hard work from these contributors.
     95
     96If you have created or updated your own language pack, you can send gettext PO and MO files to author. I can bundle it into plugin.
     97
     98* [VCS - GitHub](https://github.com/thingsym/wp-auto-updater)
     99* [Homepage - WordPress Plugin](https://wordpress.org/plugins/wp-auto-updater/)
     100* [Translate WP Auto Updater into your language.](https://translate.wordpress.org/projects/wp-plugins/wp-auto-updater)
     101
     102You can also contribute by answering issues on the forums.
     103
     104* Forum: [https://wordpress.org/support/plugin/wp-auto-updater/](https://wordpress.org/support/plugin/wp-auto-updater/)
     105* Issues: [https://github.com/thingsym/wp-auto-updater/issues](https://github.com/thingsym/wp-auto-updater/issues)
     106
     107= Contribute guidlines =
     108
     109If you would like to contribute, here are some notes and guidlines.
     110
     111* All development happens on the **develop** branch, so it is always the most up-to-date
     112* The **master** branch only contains tagged releases
     113* If you are going to be submitting a pull request, please submit your pull request to the **develop** branch
     114* See about [forking](https://help.github.com/articles/fork-a-repo/) and [pull requests](https://help.github.com/articles/using-pull-requests/)
     115
    83116= Test Matrix =
    84117
    85118For operation compatibility between PHP version and WordPress version, see below [Github Actions](https://github.com/thingsym/wp-auto-updater/actions).
    86 
    87 = Contributing =
    88 
    89 = Patches and Bug Fixes =
    90 
    91 Small patches and bug reports can be submitted a issue tracker in Github. Forking on Github is another good way. You can send a pull request.
    92 
    93 * [wp-auto-updater - GitHub](https://github.com/thingsym/wp-auto-updater)
    94 * [WP Auto Updater - WordPress Plugin](https://wordpress.org/plugins/wp-auto-updater/)
    95119
    96120== Installation ==
     
    136160
    137161== Changelog ==
     162
     163= 1.7.0 =
     164* tested up to 6.2.0
     165* update japanese translation
     166* update pot
     167* add test case
     168* add last day to schedule
     169* fix composer scripts
     170* update github actions
     171* set auto_update_core_major to disable when activate
     172* add support section and enhance contribution section
     173* add support section and enhance contribution section to README
     174* fix license
     175* fix wp-plugin-unit-test.yml
    138176
    139177= 1.6.3 =
  • wp-auto-updater/trunk/wp-auto-updater.php

    r2685869 r2899017  
    44 * Plugin URI:  https://github.com/thingsym/wp-auto-updater
    55 * Description: This plugin enables automatic updates of WordPress Core, Themes, Plugins and Translations. Version control of WordPress Core makes automatic update more safely.
    6  * Version:     1.6.3
     6 * Version:     1.7.0
    77 * Author:      thingsym
    88 * Author URI:  https://management.thingslabo.com/
    9  * License:     GPL2 or later
     9 * License:     GPLv2 or later
    1010 * License URI: http://www.gnu.org/licenses/gpl-2.0.html
    1111 * Text Domain: wp-auto-updater
Note: See TracChangeset for help on using the changeset viewer.