Plugin Directory

Changeset 2184045


Ignore:
Timestamp:
10/31/2019 06:06:08 PM (6 years ago)
Author:
RedWoodCIty
Message:

テキスト変更

Location:
qr-code-management
Files:
10 edited

Legend:

Unmodified
Added
Removed
  • qr-code-management/tags/1.0/includes/admin/setting.php

    r2184030 r2184045  
    9494                                               id="rwc_qrcm_display_list_image" value="on"
    9595                                            <?php if ( isset( $rwc_qrcm['display']['list']['image'] ) ) {
    96                                                 esc_attr_e( 'checked' );
     96                                                echo esc_attr( 'checked' );
    9797                                            } ?>>
    9898                                        <label for="rwc_qrcm_display_list_image"><?php esc_html_e( 'Image', 'rwc-qrcm' ); ?></label>
     
    100100                                               id="rwc_qrcm_display_list_download" value="on"
    101101                                            <?php if ( isset( $rwc_qrcm['display']['list']['download'] ) ) {
    102                                                 esc_attr_e( 'checked' );
     102                                                echo esc_attr( 'checked' );
    103103                                            } ?>>
    104104                                        <label for="rwc_qrcm_display_list_download"><?php esc_html_e( 'Download', 'rwc-qrcm' ); ?></label>
     
    122122                                                   value="on"
    123123                                                <?php if ( isset( $rwc_qrcm['role']['post_type'][ $post_type ] ) ) {
    124                                                     esc_attr_e( 'checked' );
     124                                                    echo esc_attr( 'checked' );
    125125                                                } ?>>
    126126                                            <label for="rwc_qrcm_role_post_type_<?php esc_attr_e( $post_type ); ?>"><?php esc_html_e( $post_type_object->label ); ?></label>
     
    139139                                               id="rwc_qrcm_output_format_jpg" value="on"
    140140                                            <?php if ( isset( $rwc_qrcm['output']['format']['jpg'] ) ) {
    141                                                 esc_attr_e( 'checked' );
     141                                                echo esc_attr( 'checked' );
    142142                                            } ?>>
    143143                                        <label for="rwc_qrcm_output_format_jpg"><?php esc_html_e( 'jpeg', 'rwc-qrcm' ); ?></label>
     
    145145                                               id="rwc_qrcm_output_format_png" value="on"
    146146                                            <?php if ( isset( $rwc_qrcm['output']['format']['png'] ) ) {
    147                                                 esc_attr_e( 'checked' );
     147                                                echo esc_attr( 'checked' );
    148148                                            } ?>>
    149149                                        <label for="rwc_qrcm_output_format_png"><?php esc_html_e( 'png', 'rwc-qrcm' ); ?></label>
     
    151151                                               id="rwc_qrcm_output_format_eps" value="on"
    152152                                            <?php if ( isset( $rwc_qrcm['output']['format']['eps'] ) ) {
    153                                                 esc_attr_e( 'checked' );
     153                                                echo esc_attr( 'checked' );
    154154                                            } ?>>
    155155                                        <label for="rwc_qrcm_output_format_eps"><?php esc_html_e( 'eps', 'rwc-qrcm' ); ?></label>
     
    157157                                               id="rwc_qrcm_output_format_svg" value="on"
    158158                                            <?php if ( isset( $rwc_qrcm['output']['format']['svg'] ) ) {
    159                                                 esc_attr_e( 'checked' );
     159                                                echo esc_attr( 'checked' );
    160160                                            } ?>>
    161161                                        <label for="rwc_qrcm_output_format_svg"><?php esc_html_e( 'svg', 'rwc-qrcm' ); ?></label>
     
    172172                                               id="rwc_qrcm_redirect_presence_valid" value="valid"
    173173                                            <?php if ( isset( $rwc_qrcm['redirect']['presence'] ) && $rwc_qrcm['redirect']['presence'] == 'valid' ) {
    174                                                 esc_attr_e( 'checked' );
     174                                                echo esc_attr( 'checked' );
    175175                                            } ?>>
    176176                                        <label for="rwc_qrcm_redirect_presence_valid"><?php esc_html_e( 'Valid', 'rwc-qrcm' ); ?></label>
     
    178178                                               id="rwc_qrcm_redirect_presence_invalid" value="invalid"
    179179                                            <?php if ( isset( $rwc_qrcm['redirect']['presence'] ) && $rwc_qrcm['redirect']['presence'] == 'invalid' ) {
    180                                                 esc_attr_e( 'checked' );
     180                                                echo esc_attr( 'checked' );
    181181                                            } ?>>
    182182                                        <label for="rwc_qrcm_redirect_presence_invalid"><?php esc_html_e( 'Invalid', 'rwc-qrcm' ); ?></label>
  • qr-code-management/tags/1.0/languages/rwc-qrcm-ja.po

    r2184030 r2184045  
    22msgstr ""
    33"Project-Id-Version: QR code management\n"
    4 "POT-Creation-Date: 2019-10-30 17:22+0900\n"
    5 "PO-Revision-Date: 2019-10-30 17:22+0900\n"
     4"POT-Creation-Date: 2019-11-01 03:03+0900\n"
     5"PO-Revision-Date: 2019-11-01 03:03+0900\n"
    66"Last-Translator: Redwoodcity Inc. <mail@redwoodcity.jp>\n"
    77"Language-Team: Redwoodcity Inc. <mail@redwoodcity.jp>\n"
     
    5959msgstr "カスタム投稿タイプ設定"
    6060
    61 #: includes/admin/setting.php:184
     61#: includes/admin/setting.php:133
    6262msgid "Output setting"
    6363msgstr "出力設定"
    6464
    65 #: includes/admin/setting.php:187
     65#: includes/admin/setting.php:136
    6666msgid "Format"
    6767msgstr "形式"
    6868
    69 #: includes/admin/setting.php:194 includes/qrcode.php:193
     69#: includes/admin/setting.php:143 includes/qrcode.php:195
    7070msgid "jpeg"
    7171msgstr "JPEG"
    7272
    73 #: includes/admin/setting.php:200 includes/qrcode.php:172
     73#: includes/admin/setting.php:149 includes/qrcode.php:174
    7474msgid "png"
    7575msgstr "PNG"
    7676
    77 #: includes/admin/setting.php:206 includes/qrcode.php:186
     77#: includes/admin/setting.php:155 includes/qrcode.php:188
    7878msgid "eps"
    7979msgstr "EPS"
    8080
    81 #: includes/admin/setting.php:212 includes/qrcode.php:179
     81#: includes/admin/setting.php:161 includes/qrcode.php:181
    8282msgid "svg"
    8383msgstr "SVG"
    8484
    85 #: includes/admin/setting.php:217
     85#: includes/admin/setting.php:166
    8686msgid "Redirect settings"
    8787msgstr "リダイレクト設定"
    8888
    89 #: includes/admin/setting.php:220
     89#: includes/admin/setting.php:169
    9090msgid "Presence"
    9191msgstr "有効/無効"
    9292
    93 #: includes/admin/setting.php:227
     93#: includes/admin/setting.php:176
    9494msgid "Valid"
    9595msgstr "有効"
    9696
    97 #: includes/admin/setting.php:233
     97#: includes/admin/setting.php:182
    9898msgid "Invalid"
    9999msgstr "無効"
    100100
    101 #: includes/admin/setting.php:244
     101#: includes/admin/setting.php:193
    102102msgid "Save"
    103103msgstr "保存"
    104104
    105 #: includes/admin/setting.php:255 includes/admin/setting.php:275
    106 #: includes/admin/setting.php:296
     105#: includes/admin/setting.php:204 includes/admin/setting.php:224
     106#: includes/admin/setting.php:245
    107107msgid "Report"
    108108msgstr "レポート"
    109109
    110 #: includes/qrcode.php:58
     110#: includes/qrcode.php:60
    111111msgid "QR Code"
    112112msgstr "QRコード"
     
    132132msgstr "https://www.redwoodcity.jp/"
    133133
     134#~ msgid "checked"
     135#~ msgstr "checked"
     136
    134137#~ msgid ""
    135138#~ "This plug-in can implement an easy-to-use stamp rally using browser "
  • qr-code-management/tags/1.0/readme.txt

    r2184030 r2184045  
    1 === QR code management ===
     1=== QR Code Management ===
    22Contributors: Redwoodcity
    33Donate link: https://www.redwoodcity.jp/qrcode-management/
  • qr-code-management/tags/1.0/rwc-qrcode-management.php

    r2184030 r2184045  
    11<?php
    22/**
    3  * Plugin Name: QR code management
     3 * Plugin Name: QR Code Management
    44 * Description: A plug-in that issues a QR code for public pages of posts, fixed pages, and custom post types. The QR code format is PNG, SVG, EPSJ, JPEG.
    55 * Version: 1.0
  • qr-code-management/trunk/includes/admin/setting.php

    r2184025 r2184045  
    9494                                               id="rwc_qrcm_display_list_image" value="on"
    9595                                            <?php if ( isset( $rwc_qrcm['display']['list']['image'] ) ) {
    96                                                 esc_attr_e( 'checked' );
     96                                                echo esc_attr( 'checked' );
    9797                                            } ?>>
    9898                                        <label for="rwc_qrcm_display_list_image"><?php esc_html_e( 'Image', 'rwc-qrcm' ); ?></label>
     
    100100                                               id="rwc_qrcm_display_list_download" value="on"
    101101                                            <?php if ( isset( $rwc_qrcm['display']['list']['download'] ) ) {
    102                                                 esc_attr_e( 'checked' );
     102                                                echo esc_attr( 'checked' );
    103103                                            } ?>>
    104104                                        <label for="rwc_qrcm_display_list_download"><?php esc_html_e( 'Download', 'rwc-qrcm' ); ?></label>
     
    122122                                                   value="on"
    123123                                                <?php if ( isset( $rwc_qrcm['role']['post_type'][ $post_type ] ) ) {
    124                                                     esc_attr_e( 'checked' );
     124                                                    echo esc_attr( 'checked' );
    125125                                                } ?>>
    126126                                            <label for="rwc_qrcm_role_post_type_<?php esc_attr_e( $post_type ); ?>"><?php esc_html_e( $post_type_object->label ); ?></label>
     
    139139                                               id="rwc_qrcm_output_format_jpg" value="on"
    140140                                            <?php if ( isset( $rwc_qrcm['output']['format']['jpg'] ) ) {
    141                                                 esc_attr_e( 'checked' );
     141                                                echo esc_attr( 'checked' );
    142142                                            } ?>>
    143143                                        <label for="rwc_qrcm_output_format_jpg"><?php esc_html_e( 'jpeg', 'rwc-qrcm' ); ?></label>
     
    145145                                               id="rwc_qrcm_output_format_png" value="on"
    146146                                            <?php if ( isset( $rwc_qrcm['output']['format']['png'] ) ) {
    147                                                 esc_attr_e( 'checked' );
     147                                                echo esc_attr( 'checked' );
    148148                                            } ?>>
    149149                                        <label for="rwc_qrcm_output_format_png"><?php esc_html_e( 'png', 'rwc-qrcm' ); ?></label>
     
    151151                                               id="rwc_qrcm_output_format_eps" value="on"
    152152                                            <?php if ( isset( $rwc_qrcm['output']['format']['eps'] ) ) {
    153                                                 esc_attr_e( 'checked' );
     153                                                echo esc_attr( 'checked' );
    154154                                            } ?>>
    155155                                        <label for="rwc_qrcm_output_format_eps"><?php esc_html_e( 'eps', 'rwc-qrcm' ); ?></label>
     
    157157                                               id="rwc_qrcm_output_format_svg" value="on"
    158158                                            <?php if ( isset( $rwc_qrcm['output']['format']['svg'] ) ) {
    159                                                 esc_attr_e( 'checked' );
     159                                                echo esc_attr( 'checked' );
    160160                                            } ?>>
    161161                                        <label for="rwc_qrcm_output_format_svg"><?php esc_html_e( 'svg', 'rwc-qrcm' ); ?></label>
     
    172172                                               id="rwc_qrcm_redirect_presence_valid" value="valid"
    173173                                            <?php if ( isset( $rwc_qrcm['redirect']['presence'] ) && $rwc_qrcm['redirect']['presence'] == 'valid' ) {
    174                                                 esc_attr_e( 'checked' );
     174                                                echo esc_attr( 'checked' );
    175175                                            } ?>>
    176176                                        <label for="rwc_qrcm_redirect_presence_valid"><?php esc_html_e( 'Valid', 'rwc-qrcm' ); ?></label>
     
    178178                                               id="rwc_qrcm_redirect_presence_invalid" value="invalid"
    179179                                            <?php if ( isset( $rwc_qrcm['redirect']['presence'] ) && $rwc_qrcm['redirect']['presence'] == 'invalid' ) {
    180                                                 esc_attr_e( 'checked' );
     180                                                echo esc_attr( 'checked' );
    181181                                            } ?>>
    182182                                        <label for="rwc_qrcm_redirect_presence_invalid"><?php esc_html_e( 'Invalid', 'rwc-qrcm' ); ?></label>
  • qr-code-management/trunk/languages/rwc-qrcm-ja.po

    r2184025 r2184045  
    22msgstr ""
    33"Project-Id-Version: QR code management\n"
    4 "POT-Creation-Date: 2019-10-30 17:22+0900\n"
    5 "PO-Revision-Date: 2019-10-30 17:22+0900\n"
     4"POT-Creation-Date: 2019-11-01 03:03+0900\n"
     5"PO-Revision-Date: 2019-11-01 03:03+0900\n"
    66"Last-Translator: Redwoodcity Inc. <mail@redwoodcity.jp>\n"
    77"Language-Team: Redwoodcity Inc. <mail@redwoodcity.jp>\n"
     
    5959msgstr "カスタム投稿タイプ設定"
    6060
    61 #: includes/admin/setting.php:184
     61#: includes/admin/setting.php:133
    6262msgid "Output setting"
    6363msgstr "出力設定"
    6464
    65 #: includes/admin/setting.php:187
     65#: includes/admin/setting.php:136
    6666msgid "Format"
    6767msgstr "形式"
    6868
    69 #: includes/admin/setting.php:194 includes/qrcode.php:193
     69#: includes/admin/setting.php:143 includes/qrcode.php:195
    7070msgid "jpeg"
    7171msgstr "JPEG"
    7272
    73 #: includes/admin/setting.php:200 includes/qrcode.php:172
     73#: includes/admin/setting.php:149 includes/qrcode.php:174
    7474msgid "png"
    7575msgstr "PNG"
    7676
    77 #: includes/admin/setting.php:206 includes/qrcode.php:186
     77#: includes/admin/setting.php:155 includes/qrcode.php:188
    7878msgid "eps"
    7979msgstr "EPS"
    8080
    81 #: includes/admin/setting.php:212 includes/qrcode.php:179
     81#: includes/admin/setting.php:161 includes/qrcode.php:181
    8282msgid "svg"
    8383msgstr "SVG"
    8484
    85 #: includes/admin/setting.php:217
     85#: includes/admin/setting.php:166
    8686msgid "Redirect settings"
    8787msgstr "リダイレクト設定"
    8888
    89 #: includes/admin/setting.php:220
     89#: includes/admin/setting.php:169
    9090msgid "Presence"
    9191msgstr "有効/無効"
    9292
    93 #: includes/admin/setting.php:227
     93#: includes/admin/setting.php:176
    9494msgid "Valid"
    9595msgstr "有効"
    9696
    97 #: includes/admin/setting.php:233
     97#: includes/admin/setting.php:182
    9898msgid "Invalid"
    9999msgstr "無効"
    100100
    101 #: includes/admin/setting.php:244
     101#: includes/admin/setting.php:193
    102102msgid "Save"
    103103msgstr "保存"
    104104
    105 #: includes/admin/setting.php:255 includes/admin/setting.php:275
    106 #: includes/admin/setting.php:296
     105#: includes/admin/setting.php:204 includes/admin/setting.php:224
     106#: includes/admin/setting.php:245
    107107msgid "Report"
    108108msgstr "レポート"
    109109
    110 #: includes/qrcode.php:58
     110#: includes/qrcode.php:60
    111111msgid "QR Code"
    112112msgstr "QRコード"
     
    132132msgstr "https://www.redwoodcity.jp/"
    133133
     134#~ msgid "checked"
     135#~ msgstr "checked"
     136
    134137#~ msgid ""
    135138#~ "This plug-in can implement an easy-to-use stamp rally using browser "
  • qr-code-management/trunk/readme.txt

    r2184025 r2184045  
    1 === QR code management ===
     1=== QR Code Management ===
    22Contributors: Redwoodcity
    33Donate link: https://www.redwoodcity.jp/qrcode-management/
  • qr-code-management/trunk/rwc-qrcode-management.php

    r2184025 r2184045  
    11<?php
    22/**
    3  * Plugin Name: QR code management
     3 * Plugin Name: QR Code Management
    44 * Description: A plug-in that issues a QR code for public pages of posts, fixed pages, and custom post types. The QR code format is PNG, SVG, EPSJ, JPEG.
    55 * Version: 1.0
Note: See TracChangeset for help on using the changeset viewer.