Plugin Directory

Changeset 3100810

Timestamp:
06/10/2024 09:07:45 PM (5 weeks ago)
Author:
morehawes
Message:

v1.2.0

Location:
waymark/trunk
Files:
15 edited

Legend:

Unmodified
Added
Removed
  • waymark/trunk/Waymark.php

    r3088393 r3100810  
    55Plugin URI: https://www.waymark.dev/
    66Description: Mapping with WordPress made easy. With Waymark enabled, click on the "Maps" link in the sidebar to create and edit Maps. Once you are happy with your Map, copy the Waymark shortcode and add it to your content.
    7 Version: 1.1.8
     7Version: 1.
    88Text Domain: waymark
    99Author: Joe Hawes
  • waymark/trunk/inc/Admin/Waymark_Settings.php

    r3082780 r3100810  
    996996                ),
    997997
     998
     999
     1000
     1001
     1002
     1003
     1004
     1005
     1006
     1007
     1008
     1009
     1010
     1011
     1012
     1013
     1014
     1015
     1016
     1017
     1018
     1019
     1020
     1021
     1022
     1023
     1024
     1025
     1026
     1027
     1028
     1029
     1030
     1031
     1032
     1033
     1034
     1035
     1036
     1037
     1038
     1039
     1040
     1041
     1042
     1043
     1044
     1045
     1046
     1047
     1048
     1049
     1050
     1051
     1052
     1053
     1054
     1055
     1056
     1057
     1058
     1059
     1060
     1061
     1062
     1063
     1064
     1065
     1066
     1067
     1068
     1069
     1070
     1071
     1072
     1073
     1074
     1075
     1076
     1077
     1078
     1079
     1080
     1081
     1082
     1083
     1084
     1085
     1086
     1087
     1088
     1089
     1090
     1091
     1092
     1093
     1094
     1095
     1096
     1097
     1098
    9981099                //Collections
    9991100
     
    10221123                ),
    10231124
    1024                 //Shortcode
    1025 
    1026                 'shortcode_options' => array(
    1027                     'title' => esc_html__('Shortcode Options', 'waymark'),
    1028                     'description' => esc_html__('How Maps are embedded into your content using the shortcode.', 'waymark'),
    1029                     'help' => array(
    1030                         'url' => esc_attr(Waymark_Helper::site_url('docs/shortcodes')),
    1031                         'text' => esc_attr__('Shortcode Docs »', 'waymark'),
    1032                     ),
    1033                     'fields' => array(
    1034                         'shortcode_header' => array(
    1035                             'name' => 'shortcode_header',
    1036                             'id' => 'shortcode_header',
    1037                             'type' => 'select',
    1038                             'title' => esc_html__('Shortcode Header', 'waymark'),
    1039                             'default' => Waymark_Config::get_setting('misc', 'shortcode_options', 'shortcode_header'),
    1040                             'tip' => sprintf(esc_attr__('The shortcode header displays the title and link to the Map or Collection. Pro Tip! This will affect all shortcodes, but you can override the setting through the shortcode: %s (the value must be either 0 or 1).', 'waymark'), '[' . Waymark_Config::get_item('shortcode') . ' map_id="1234" shortcode_header="' . Waymark_Config::get_setting('misc', 'shortcode_options', 'shortcode_header') . '"]'),
    1041                             'options' => array(
    1042                                 '1' => esc_html__('Show', 'waymark'),
    1043                                 '0' => esc_html__('Hide', 'waymark'),
    1044                             ),
    1045                         ),
    1046                         'header_override' => array(
    1047                             'name' => 'header_override',
    1048                             'id' => 'header_override',
    1049                             'type' => 'select',
    1050                             'title' => esc_html__('Header for Admin', 'waymark'),
    1051                             'default' => Waymark_Config::get_setting('misc', 'shortcode_options', 'header_override'),
    1052                             'tip' => esc_attr__('Use this Setting to always show the Shortcode Header when signed in as admin, useful for quickly navigating to embeded Maps.', 'waymark'),
    1053                             'options' => array(
    1054                                 '0' => esc_html__('Use Setting', 'waymark'),
    1055                                 '1' => esc_html__('Always Show', 'waymark'),
    1056                             ),
    1057                         ),
    1058                     ),
    1059                 ),
    1060 
    1061                 //Elevation
    1062 
    1063                 'elevation_options' => array(
    1064                     'title' => esc_html__('Elevation Options', 'waymark'),
    1065                     'description' => esc_html__('Lines with elevation data.', 'waymark'),
    1066                     'help' => array(
    1067                         'url' => esc_attr(Waymark_Helper::site_url('docs/elevation-profile-colours')),
    1068                         'text' => esc_attr__('Elevation Styling »', 'waymark'),
    1069                     ),
    1070                     'fields' => array(
    1071                         'show_elevation' => array(
    1072                             'name' => 'show_elevation',
    1073                             'id' => 'show_elevation',
    1074                             'type' => 'select',
    1075                             'title' => esc_html__('Elevation Profile', 'waymark'),
    1076                             'default' => Waymark_Config::get_setting('misc', 'elevation_options', 'show_elevation'),
    1077                             'tip' => sprintf(esc_attr__('Display an interactive elevation profile graph below the Map for Lines that have elevation data. Pro Tip! You can choose to show/hide the elevation graph of an individual Map through the shortcode: %s', 'waymark'), '[' . Waymark_Config::get_item('shortcode') . ' map_id="1234" show_elevation="1"]'),
    1078                             'options' => array(
    1079                                 '2' => esc_html__('Show on Map Details', 'waymark'),
    1080                                 '1' => esc_html__('Show everywhere', 'waymark'),
    1081                                 '0' => esc_html__('Hide everywhere', 'waymark'),
    1082                             ),
    1083                         ),
    1084                         'elevation_units' => array(
    1085                             'name' => 'elevation_units',
    1086                             'id' => 'elevation_units',
    1087                             'type' => 'select',
    1088                             'title' => esc_html__('Elevation Units', 'waymark'),
    1089                             'default' => Waymark_Config::get_setting('misc', 'elevation_options', 'elevation_units'),
    1090                             'tip' => sprintf(esc_attr__('Display elevation data in metric (m/km) or imperial (ft/mi) units.', 'waymark')),
    1091                             'options' => array(
    1092                                 'metric' => esc_html__('Metric (m/km)', 'waymark'),
    1093                                 'imperial' => esc_html__('Imperial (ft/mi)', 'waymark'),
    1094                             ),
    1095                         ),
    1096                         'elevation_colour' => array(
    1097                             'name' => 'elevation_colour',
    1098                             'id' => 'elevation_colour',
    1099                             'type' => 'text',
    1100                             'class' => 'waymark-short-input waymark-colour-picker',
    1101                             'title' => esc_html__('Elevation Colour', 'waymark'),
    1102                             'default' => Waymark_Config::get_setting('misc', 'elevation_options', 'elevation_colour'),
    1103                             'tip' => sprintf(esc_attr__('The colour of the elevation graph and associated Line.', 'waymark')),
    1104                             'input_processing' => array(
    1105                                 '(! empty($param_value)) ? $param_value : "#b42714";', //Fallback
    1106                             ),
    1107                         ),
    1108                         'elevation_initial' => array(
    1109                             'name' => 'elevation_initial',
    1110                             'id' => 'elevation_initial',
    1111                             'type' => 'boolean',
    1112                             'title' => esc_html__('Show Initially?', 'waymark'),
    1113                             'default' => Waymark_Config::get_setting('misc', 'elevation_options', 'elevation_initial'),
    1114                             'tip' => sprintf(esc_attr__('Whether to show the elevation profile when the Map loads. If set to No, the user must click on a Line in order to display the elevation data. If there are multiple Lines with elevation data, the one added to the editor first will be the one shown initially.', 'waymark')),
    1115                         ),
    1116                     ),
    1117                 ),
    1118 
    11191125                //Editor
    11201126
     
    11431149                ),
    11441150
    1145                 //Advanced
     1151                //Permalinks
     1152
    11461153                'permalinks' => array(
    11471154                    'title' => esc_html__('Permalinks', 'waymark'),
     
    11801187                ),
    11811188
    1182                 //Advanced
     1189                // Custom Post Type Supports
     1190
     1191                'post' => [
     1192                    'title' => esc_html__('Post Type', 'waymark'),
     1193                    'description' => 'Enable Custom Post Type features.',
     1194                    'fields' => [
     1195                        'supports' => [
     1196                            'name' => 'supports',
     1197                            'id' => 'supports',
     1198                            'type' => 'select_multi',
     1199                            'title' => esc_html__('Supports', 'waymark'),
     1200                            'default' => Waymark_Config::get_setting('misc', 'post', 'supports'),
     1201                            'tip' => esc_attr__('Enable or disable various WordPress features of the Map Custom Post Type.', 'waymark'),
     1202                            'tip_link' => 'https://developer.wordpress.org/reference/functions/add_post_type_support/',
     1203                            'options' => [
     1204                                'title' => esc_html__('Title', 'waymark'),
     1205                                'author' => esc_html__('Author', 'waymark'),
     1206                                'revisions' => esc_html__('Revisions', 'waymark'),
     1207                                'thumbnail' => esc_html__('Thumbnail', 'waymark'),
     1208                                'comments' => esc_html__('Comments', 'waymark'),
     1209                                'excerpt' => esc_html__('Excerpt', 'waymark'),
     1210                            ],
     1211                        ],
     1212                    ],
     1213                ],
     1214
     1215                //Debug
     1216
    11831217                'advanced' => array(
    11841218                    'title' => esc_html__('Debug', 'waymark'),
  • waymark/trunk/inc/Waymark_Config.php

    r3088393 r3100810  
    1212            'plugin_name_short' => 'Waymark',
    1313            'custom_types' => array(),
    14             'plugin_version' => '1.1.8',
     14            'plugin_version' => '1.',
    1515            'nonce_string' => 'Waymark_Nonce',
    1616            'site_url' => 'https://www.waymark.dev/',
     
    121121                    'permalink_slug_collection' => 'collection',
    122122                ),
     123
     124
     125
     126
    123127                'advanced' => array(
    124128                    'debug_mode' => '0',
  • waymark/trunk/inc/Waymark_Types.php

    r3021681 r3100810  
    3939                    'filter_items_list' => esc_html__('Filter Map list', 'waymark'),
    4040                ),
    41                 'supports' => array('title', 'author', 'revisions', 'thumbnail'),
     41                // Default - overridden below
     42                'supports' => array('title'),
    4243                'hierarchical' => false,
    4344                'public' => true,
     
    6061            ),
    6162        );
     63
     64
     65
     66
     67
     68
     69
     70
     71
     72
     73
    6274
    6375        //Show if debug
  • waymark/trunk/languages/waymark-en_CA.po

    r3088393 r3100810  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Waymark 1.1.8\n"
     5"Project-Id-Version: Waymark 1.\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/waymark\n"
    77"POT-Creation-Date: 2024-01-18 00:24:31+00:00\n"
  • waymark/trunk/languages/waymark-en_GB.po

    r3088393 r3100810  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Waymark 1.1.8\n"
     5"Project-Id-Version: Waymark 1.\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/waymark\n"
    77"POT-Creation-Date: 2024-01-18 00:24:31+00:00\n"
  • waymark/trunk/languages/waymark-es_ES.po

    r3088393 r3100810  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Waymark 1.1.8\n"
     5"Project-Id-Version: Waymark 1.\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/waymark\n"
    77"POT-Creation-Date: 2024-01-18 00:24:31+00:00\n"
  • waymark/trunk/languages/waymark-fr_CA.po

    r3088393 r3100810  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Waymark 1.1.8\n"
     5"Project-Id-Version: Waymark 1.\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/waymark\n"
    77"POT-Creation-Date: 2024-01-18 00:24:31+00:00\n"
  • waymark/trunk/languages/waymark-ja_JP.po

    r3088393 r3100810  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Waymark 1.1.8\n"
     5"Project-Id-Version: Waymark 1.\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/waymark\n"
    77"POT-Creation-Date: 2024-01-23 14:32:30+00:00\n"
  • waymark/trunk/languages/waymark-sv_SE.po

    r3088393 r3100810  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Waymark 1.1.8\n"
     5"Project-Id-Version: Waymark 1.\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/waymark\n"
    77"POT-Creation-Date: 2024-01-18 00:24:31+00:00\n"
  • waymark/trunk/languages/waymark-uk_UA.po

    r3088393 r3100810  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Waymark 1.1.8\n"
     5"Project-Id-Version: Waymark 1.\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/waymark\n"
    77"POT-Creation-Date: 2024-01-18 00:24:31+00:00\n"
  • waymark/trunk/languages/waymark-zh_CN.po

    r3088393 r3100810  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Waymark 1.1.8\n"
     5"Project-Id-Version: Waymark 1.\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/waymark\n"
    77"POT-Creation-Date: 2024-01-23 14:32:30+00:00\n"
  • waymark/trunk/languages/waymark.pot

    r3088393 r3100810  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Waymark 1.1.8\n"
     5"Project-Id-Version: Waymark 1.\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/waymark\n"
    7 "POT-Creation-Date: 2024-05-12 15:04:46+00:00\n"
     7"POT-Creation-Date: 2024-0+00:00\n"
    88"MIME-Version: 1.0\n"
    99"Content-Type: text/plain; charset=utf-8\n"
     
    356356msgstr ""
    357357
    358 #: inc/Admin/Waymark_Settings.php:188 inc/Admin/Waymark_Settings.php:1013
     358#: inc/Admin/Waymark_Settings.php:188 inc/Admin/Waymark_Settings.php:1
    359359msgid "Background"
    360360msgstr ""
     
    512512#: inc/Admin/Waymark_Settings.php:468 inc/Admin/Waymark_Settings.php:560
    513513#: inc/Admin/Waymark_Settings.php:668 inc/Admin/Waymark_Settings.php:729
    514 #: inc/Front/Waymark_Submission.php:215 inc/Helpers/Waymark_Lang.php:31
     514#: inc/Admin/Waymark_Settings.php:1204 inc/Front/Waymark_Submission.php:215
     515#: inc/Helpers/Waymark_Lang.php:31
    515516msgid "Title"
    516517msgstr ""
     
    812813
    813814#: inc/Admin/Waymark_Settings.php:874 inc/Admin/Waymark_Settings.php:886
    814 #: inc/Admin/Waymark_Settings.php:1042
     815#: inc/Admin/Waymark_Settings.php:10
    815816msgid "Show"
    816817msgstr ""
    817818
    818819#: inc/Admin/Waymark_Settings.php:875 inc/Admin/Waymark_Settings.php:887
    819 #: inc/Admin/Waymark_Settings.php:1043
     820#: inc/Admin/Waymark_Settings.php:10
    820821msgid "Hide"
    821822msgstr ""
     
    951952
    952953#: inc/Admin/Waymark_Settings.php:1001
     954
     955
     956
     957
     958
     959
     960
     961
     962
     963
     964
     965
     966
     967
     968
     969
     970
     971
     972
     973
     974
     975
     976
     977
     978
     979
     980
     981
     982
     983
     984
     985
     986
     987
     988
     989
     990
     991
     992
     993
     994
     995
     996
     997
     998
     999
     1000
     1001
     1002
     1003
     1004
     1005
     1006
     1007
     1008
     1009
     1010
     1011
     1012
     1013
     1014
     1015
     1016
     1017
     1018
     1019
     1020
     1021
     1022
     1023
     1024
     1025
     1026
     1027
     1028
     1029
     1030
     1031
     1032
     1033
     1034
     1035
     1036
     1037
     1038
     1039
     1040
     1041
     1042
     1043
     1044
     1045
     1046
     1047
     1048
     1049
     1050
     1051
     1052
     1053
     1054
     1055
     1056
     1057
     1058
     1059
     1060
     1061
     1062
     1063
     1064
     1065
    9531066msgid "Collection Options"
    9541067msgstr ""
    9551068
    956 #: inc/Admin/Waymark_Settings.php:1002
     1069#: inc/Admin/Waymark_Settings.php:1
    9571070msgid "How Collections are displayed."
    9581071msgstr ""
    9591072
    960 #: inc/Admin/Waymark_Settings.php:1005
     1073#: inc/Admin/Waymark_Settings.php:1
    9611074msgid "Collection Docs »"
    9621075msgstr ""
    9631076
    964 #: inc/Admin/Waymark_Settings.php:1014
     1077#: inc/Admin/Waymark_Settings.php:1
    9651078msgid "Embed"
    9661079msgstr ""
    9671080
    968 #: inc/Admin/Waymark_Settings.php:1017
     1081#: inc/Admin/Waymark_Settings.php:1
    9691082msgid "Shortcode Method"
    9701083msgstr ""
    9711084
    972 #: inc/Admin/Waymark_Settings.php:1019
     1085#: inc/Admin/Waymark_Settings.php:1
    9731086msgid ""
    9741087"Whether to load multiple Maps in the Background (uses AJAX to improve page "
     
    9781091msgstr ""
    9791092
    980 #: inc/Admin/Waymark_Settings.php:1027
    981 msgid "Shortcode Options"
    982 msgstr ""
    983 
    984 #: inc/Admin/Waymark_Settings.php:1028
    985 msgid "How Maps are embedded into your content using the shortcode."
    986 msgstr ""
    987 
    988 #: inc/Admin/Waymark_Settings.php:1031
    989 msgid "Shortcode Docs »"
    990 msgstr ""
    991 
    992 #: inc/Admin/Waymark_Settings.php:1038
    993 msgid "Shortcode Header"
    994 msgstr ""
    995 
    996 #: inc/Admin/Waymark_Settings.php:1040
    997 msgid ""
    998 "The shortcode header displays the title and link to the Map or Collection. "
    999 "Pro Tip! This will affect all shortcodes, but you can override the setting "
    1000 "through the shortcode: %s (the value must be either 0 or 1)."
    1001 msgstr ""
    1002 
    1003 #: inc/Admin/Waymark_Settings.php:1050
    1004 msgid "Header for Admin"
    1005 msgstr ""
    1006 
    1007 #: inc/Admin/Waymark_Settings.php:1052
    1008 msgid ""
    1009 "Use this Setting to always show the Shortcode Header when signed in as "
    1010 "admin, useful for quickly navigating to embeded Maps."
    1011 msgstr ""
    1012 
    1013 #: inc/Admin/Waymark_Settings.php:1054
    1014 msgid "Use Setting"
    1015 msgstr ""
    1016 
    1017 #: inc/Admin/Waymark_Settings.php:1055
    1018 msgid "Always Show"
    1019 msgstr ""
    1020 
    1021 #: inc/Admin/Waymark_Settings.php:1064
    1022 msgid "Elevation Options"
    1023 msgstr ""
    1024 
    1025 #: inc/Admin/Waymark_Settings.php:1065
    1026 msgid "Lines with elevation data."
    1027 msgstr ""
    1028 
    1029 #: inc/Admin/Waymark_Settings.php:1068
    1030 msgid "Elevation Styling »"
    1031 msgstr ""
    1032 
    1033 #: inc/Admin/Waymark_Settings.php:1075
    1034 msgid "Elevation Profile"
    1035 msgstr ""
    1036 
    1037 #: inc/Admin/Waymark_Settings.php:1077
    1038 msgid ""
    1039 "Display an interactive elevation profile graph below the Map for Lines that "
    1040 "have elevation data. Pro Tip! You can choose to show/hide the elevation "
    1041 "graph of an individual Map through the shortcode: %s"
    1042 msgstr ""
    1043 
    1044 #: inc/Admin/Waymark_Settings.php:1079
    1045 msgid "Show on Map Details"
    1046 msgstr ""
    1047 
    1048 #: inc/Admin/Waymark_Settings.php:1080
    1049 msgid "Show everywhere"
    1050 msgstr ""
    1051 
    1052 #: inc/Admin/Waymark_Settings.php:1081
    1053 msgid "Hide everywhere"
    1054 msgstr ""
    1055 
    1056 #: inc/Admin/Waymark_Settings.php:1088
    1057 msgid "Elevation Units"
    1058 msgstr ""
    1059 
    1060 #: inc/Admin/Waymark_Settings.php:1090
    1061 msgid "Display elevation data in metric (m/km) or imperial (ft/mi) units."
    1062 msgstr ""
    1063 
    1064 #: inc/Admin/Waymark_Settings.php:1092
    1065 msgid "Metric (m/km)"
    1066 msgstr ""
    1067 
    1068 #: inc/Admin/Waymark_Settings.php:1093
    1069 msgid "Imperial (ft/mi)"
    1070 msgstr ""
    1071 
    1072 #: inc/Admin/Waymark_Settings.php:1101
    1073 msgid "Elevation Colour"
    1074 msgstr ""
    1075 
    1076 #: inc/Admin/Waymark_Settings.php:1103
    1077 msgid "The colour of the elevation graph and associated Line."
    1078 msgstr ""
    1079 
    1080 #: inc/Admin/Waymark_Settings.php:1112
    1081 msgid "Show Initially?"
    1082 msgstr ""
    1083 
    1084 #: inc/Admin/Waymark_Settings.php:1114
    1085 msgid ""
    1086 "Whether to show the elevation profile when the Map loads. If set to No, the "
    1087 "user must click on a Line in order to display the elevation data. If there "
    1088 "are multiple Lines with elevation data, the one added to the editor first "
    1089 "will be the one shown initially."
    1090 msgstr ""
    1091 
    1092 #: inc/Admin/Waymark_Settings.php:1122
     1093#: inc/Admin/Waymark_Settings.php:1128
    10931094msgid "Editor Options"
    10941095msgstr ""
    10951096
    1096 #: inc/Admin/Waymark_Settings.php:1123
     1097#: inc/Admin/Waymark_Settings.php:112
    10971098msgid "Customising the Map Editor."
    10981099msgstr ""
    10991100
    1100 #: inc/Admin/Waymark_Settings.php:1129
     1101#: inc/Admin/Waymark_Settings.php:11
    11011102msgid "Confirm Delete?"
    11021103msgstr ""
    11031104
    1104 #: inc/Admin/Waymark_Settings.php:1131
     1105#: inc/Admin/Waymark_Settings.php:113
    11051106msgid ""
    11061107"Whether to show a confirmation dialog before deleting Markers/Lines/Shapes "
     
    11091110msgstr ""
    11101111
    1111 #: inc/Admin/Waymark_Settings.php:1137
     1112#: inc/Admin/Waymark_Settings.php:11
    11121113msgid "Default Basemap"
    11131114msgstr ""
    11141115
    1115 #: inc/Admin/Waymark_Settings.php:1139
     1116#: inc/Admin/Waymark_Settings.php:11
    11161117msgid "Which Basemap to use as the editor default."
    11171118msgstr ""
    11181119
    1119 #: inc/Admin/Waymark_Settings.php:1147
     1120#: inc/Admin/Waymark_Settings.php:11
    11201121msgid "Permalinks"
    11211122msgstr ""
    11221123
    1123 #: inc/Admin/Waymark_Settings.php:1156
     1124#: inc/Admin/Waymark_Settings.php:11
    11241125msgid "Map Slug"
    11251126msgstr ""
    11261127
    1127 #: inc/Admin/Waymark_Settings.php:1158
     1128#: inc/Admin/Waymark_Settings.php:11
    11281129msgid ""
    11291130"The URL slug that will be used for links to your Maps, i.e. "
     
    11321133msgstr ""
    11331134
    1134 #: inc/Admin/Waymark_Settings.php:1170
     1135#: inc/Admin/Waymark_Settings.php:117
    11351136msgid "Collection Slug"
    11361137msgstr ""
    11371138
    1138 #: inc/Admin/Waymark_Settings.php:1172
     1139#: inc/Admin/Waymark_Settings.php:117
    11391140msgid ""
    11401141"The URL slug that will be used for links to your Collections, i.e. "
     
    11431144msgstr ""
    11441145
    1145 #: inc/Admin/Waymark_Settings.php:1184 inc/Helpers/Waymark_Helper.php:35
     1146#: inc/Admin/Waymark_Settings.php:1192
     1147msgid "Post Type"
     1148msgstr ""
     1149
     1150#: inc/Admin/Waymark_Settings.php:1199
     1151msgid "Supports"
     1152msgstr ""
     1153
     1154#: inc/Admin/Waymark_Settings.php:1201
     1155msgid "Enable or disable various WordPress features of the Map Custom Post Type."
     1156msgstr ""
     1157
     1158#: inc/Admin/Waymark_Settings.php:1205
     1159msgid "Author"
     1160msgstr ""
     1161
     1162#: inc/Admin/Waymark_Settings.php:1206
     1163msgid "Revisions"
     1164msgstr ""
     1165
     1166#: inc/Admin/Waymark_Settings.php:1207
     1167msgid "Thumbnail"
     1168msgstr ""
     1169
     1170#: inc/Admin/Waymark_Settings.php:1208
     1171msgid "Comments"
     1172msgstr ""
     1173
     1174#: inc/Admin/Waymark_Settings.php:1209
     1175msgid "Excerpt"
     1176msgstr ""
     1177
     1178#: inc/Admin/Waymark_Settings.php:1218 inc/Helpers/Waymark_Helper.php:35
    11461179msgid "Debug"
    11471180msgstr ""
    11481181
    1149 #: inc/Admin/Waymark_Settings.php:1191
     1182#: inc/Admin/Waymark_Settings.php:1
    11501183msgid "Debug Mode"
    11511184msgstr ""
    11521185
    1153 #: inc/Admin/Waymark_Settings.php:1193
     1186#: inc/Admin/Waymark_Settings.php:1
    11541187msgid ""
    11551188"With debug mode enabled, the plugin will output Map and Settings data in "
     
    11591192msgstr ""
    11601193
    1161 #: inc/Admin/Waymark_Settings.php:1196
     1194#: inc/Admin/Waymark_Settings.php:1
    11621195msgid "Disable"
    11631196msgstr ""
    11641197
    1165 #: inc/Admin/Waymark_Settings.php:1197
     1198#: inc/Admin/Waymark_Settings.php:1
    11661199msgid "Enable"
    11671200msgstr ""
    11681201
    1169 #: inc/Admin/Waymark_Settings.php:1212
     1202#: inc/Admin/Waymark_Settings.php:12
    11701203msgid "Settings Data"
    11711204msgstr ""
    11721205
    1173 #: inc/Admin/Waymark_Settings.php:1449
     1206#: inc/Admin/Waymark_Settings.php:14
    11741207msgid "Settings Updated"
    11751208msgstr ""
    11761209
    1177 #: inc/Admin/Waymark_Settings.php:1452
     1210#: inc/Admin/Waymark_Settings.php:14
    11781211msgid "Action Complete"
    11791212msgstr ""
     
    15081541msgstr ""
    15091542
    1510 #: inc/Waymark_Config.php:137
     1543#: inc/Waymark_Config.php:1
    15111544msgid "Photo"
    15121545msgstr ""
    15131546
    1514 #: inc/Waymark_Config.php:137
     1547#: inc/Waymark_Config.php:1
    15151548msgid "Information"
    15161549msgstr ""
    15171550
    1518 #: inc/Waymark_Config.php:137
     1551#: inc/Waymark_Config.php:1
    15191552msgid "Alert"
    15201553msgstr ""
    15211554
    1522 #: inc/Waymark_Config.php:137
     1555#: inc/Waymark_Config.php:1
    15231556msgid "Trail Access"
    15241557msgstr ""
    15251558
    1526 #: inc/Waymark_Config.php:137
     1559#: inc/Waymark_Config.php:1
    15271560msgid "Food"
    15281561msgstr ""
    15291562
    1530 #: inc/Waymark_Config.php:137
     1563#: inc/Waymark_Config.php:1
    15311564msgid "Water"
    15321565msgstr ""
    15331566
    1534 #: inc/Waymark_Config.php:137
     1567#: inc/Waymark_Config.php:1
    15351568msgid "Shelter"
    15361569msgstr ""
    15371570
    1538 #: inc/Waymark_Config.php:137
     1571#: inc/Waymark_Config.php:1
    15391572msgid "Beer"
    15401573msgstr ""
    15411574
    1542 #: inc/Waymark_Config.php:137
     1575#: inc/Waymark_Config.php:1
    15431576msgid "Start"
    15441577msgstr ""
    15451578
    1546 #: inc/Waymark_Config.php:137
     1579#: inc/Waymark_Config.php:1
    15471580msgid "Finish"
    15481581msgstr ""
    15491582
    1550 #: inc/Waymark_Config.php:150 inc/Waymark_Config.php:160
     1583#: inc/Waymark_Config.php:15
    15511584msgid "Red"
    15521585msgstr ""
    15531586
    1554 #: inc/Waymark_Config.php:150 inc/Waymark_Config.php:160
     1587#: inc/Waymark_Config.php:15
    15551588msgid "Green"
    15561589msgstr ""
    15571590
    1558 #: inc/Waymark_Config.php:150 inc/Waymark_Config.php:160
     1591#: inc/Waymark_Config.php:15
    15591592msgid "Blue"
    15601593msgstr ""
  • waymark/trunk/readme.md

    r3088393 r3100810  
    55**Tested up to:** 6.5 
    66**Requires PHP:** 5.2 
    7 **Stable tag:** 1.1.8 
     7**Stable tag:** 1. 
    88**License:** GPLv2 or later 
    99**License URI:** http://www.gnu.org/licenses/gpl-2.0.html 
     
    189189## Changelog ##
    190190
     191
     192
     193
     194
    191195### 1.1.8 ###
    192196
  • waymark/trunk/readme.txt

    r3088393 r3100810  
    55Tested up to: 6.5
    66Requires PHP: 5.2
    7 Stable tag: 1.1.8
     7Stable tag: 1.
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    171171== Changelog ==
    172172
     173
     174
     175
     176
    173177= 1.1.8 =
    174178
Note: See TracChangeset for help on using the changeset viewer.