Changeset 1819380
- Timestamp:
- 02/09/2018 08:58:25 PM (8 years ago)
- Location:
- devotionalium
- Files:
-
- 14 edited
-
tags/1.0/devotionalium-wp.php (modified) (2 diffs)
-
tags/1.0/readme.txt (modified) (1 diff)
-
tags/1.0/src/Model/Widget.php (modified) (1 diff)
-
tags/1.0/src/Plugin.php (modified) (6 diffs)
-
tags/1.0/src/View/devotionalium-widget.phtml (modified) (1 diff)
-
tags/1.0/src/View/devotionalium.phtml (modified) (1 diff)
-
tags/1.0/src/View/error.phtml (modified) (1 diff)
-
trunk/devotionalium-wp.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/src/Model/Widget.php (modified) (1 diff)
-
trunk/src/Plugin.php (modified) (6 diffs)
-
trunk/src/View/devotionalium-widget.phtml (modified) (1 diff)
-
trunk/src/View/devotionalium.phtml (modified) (1 diff)
-
trunk/src/View/error.phtml (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
devotionalium/tags/1.0/devotionalium-wp.php
r1816708 r1819380 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html 11 Text Domain: devotionalium -wp11 Text Domain: devotionalium 12 12 Domain Path: /languages 13 13 */ … … 22 22 { 23 23 load_plugin_textdomain( 24 'devotionalium -wp',24 'devotionalium', 25 25 false, 26 26 basename(dirname(__FILE__)).'/languages/' -
devotionalium/tags/1.0/readme.txt
r1818543 r1819380 6 6 Stable tag: 1.0 7 7 Requires PHP: 5.6 8 Text Domain: devotionalium 9 Domain Path: /languages 8 10 License: GPLv2 or later 9 11 License URI: https://www.gnu.org/licenses/gpl-2.0.html -
devotionalium/tags/1.0/src/Model/Widget.php
r1816706 r1819380 35 35 'devotionalium', 36 36 'Devotionalium', 37 ['description' => __('Displays daily bible verses from devotionalium.com', 'devotionalium -wp')]37 ['description' => __('Displays daily bible verses from devotionalium.com', 'devotionalium')] 38 38 ); 39 39 } -
devotionalium/tags/1.0/src/Plugin.php
r1816706 r1819380 78 78 new Setting( 79 79 ConfigAccessor::KEY_IS_ORIGINAL_LANGUAGE, 80 __('Original languages', 'devotionalium -wp'),81 __('Display bible verses in original languages greek and hebrew as well.', 'devotionalium -wp'),80 __('Original languages', 'devotionalium'), 81 __('Display bible verses in original languages greek and hebrew as well.', 'devotionalium'), 82 82 new \Devotionalium\Block\Setting('/View/config/setting/boolean.phtml') 83 83 ), 84 84 new Setting\Select( 85 85 ConfigAccessor::KEY_VERSION, 86 __('Bible Version', 'devotionalium -wp'),87 __('Choose a bible version to display the bible verses in.', 'devotionalium -wp'),86 __('Bible Version', 'devotionalium'), 87 __('Choose a bible version to display the bible verses in.', 'devotionalium'), 88 88 $versionsArray, 89 89 new \Devotionalium\Block\Setting('/View/config/setting/select.phtml') … … 91 91 new Setting( 92 92 ConfigAccessor::KEY_OUTGOING_LINKS, 93 __('Outgoing links', 'devotionalium -wp'),94 __('Include hyperlinks to the full readings on devotionalium.com (recommended).', 'devotionalium -wp'),93 __('Outgoing links', 'devotionalium'), 94 __('Include hyperlinks to the full readings on devotionalium.com (recommended).', 'devotionalium'), 95 95 new \Devotionalium\Block\Setting('/View/config/setting/boolean.phtml') 96 96 ), … … 99 99 new Setting\Select( 100 100 ConfigAccessor::KEY_LANGUAGE, 101 __('Language', 'devotionalium -wp'),102 __('Choose a language for text displayed by the plugin.', 'devotionalium -wp'),101 __('Language', 'devotionalium'), 102 __('Choose a language for text displayed by the plugin.', 'devotionalium'), 103 103 [ 104 'en' => __('English', 'devotionalium -wp'),105 'de' => __('German', 'devotionalium -wp')104 'en' => __('English', 'devotionalium'), 105 'de' => __('German', 'devotionalium') 106 106 ], 107 107 new \Devotionalium\Block\Setting('/View/config/setting/select.phtml') … … 109 109 new Setting( 110 110 ConfigAccessor::KEY_DAY_OFFSET, 111 __('Day Offset', 'devotionalium -wp'),112 __('Offset the displayed Devotionalium by the given amount of days (-7 to 7).', 'devotionalium -wp'),111 __('Day Offset', 'devotionalium'), 112 __('Offset the displayed Devotionalium by the given amount of days (-7 to 7).', 'devotionalium'), 113 113 new \Devotionalium\Block\Setting('/View/config/setting/text.phtml') 114 114 ), 115 115 new Setting( 116 116 ConfigAccessor::KEY_CUSTOM_CSS, 117 __('Custom CSS', 'devotionalium -wp'),117 __('Custom CSS', 'devotionalium'), 118 118 __( 119 119 'Define custom styles for displaying Devotionalium. Use class ".devotionalium-wp" to limit changes to the plugin', 120 'devotionalium -wp'120 'devotionalium' 121 121 ), 122 122 new \Devotionalium\Block\Setting('/View/config/setting/textarea.phtml') … … 132 132 new Section( 133 133 'experimental', 134 __('Experimental', 'devotionalium -wp'),134 __('Experimental', 'devotionalium'), 135 135 $experimentalSettings, 136 136 new \Devotionalium\Block\Section('/View/config/section.phtml'), 137 __("Don't touch this if you don't know what you are doing.", 'devotionalium -wp')137 __("Don't touch this if you don't know what you are doing.", 'devotionalium') 138 138 ) 139 139 ]; 140 $configPage = new Settings(__('Devotionalium', 'devotionalium -wp'), $sections);140 $configPage = new Settings(__('Devotionalium', 'devotionalium'), $sections); 141 141 142 142 return $configPage; … … 175 175 { 176 176 load_plugin_textdomain( 177 'devotionalium -wp',177 'devotionalium', 178 178 false, 179 179 'devotionalium-wp/languages' -
devotionalium/tags/1.0/src/View/devotionalium-widget.phtml
r1816706 r1819380 10 10 Devotionalium 11 11 <?php endif; ?> 12 <?php echo __('for', 'devotionalium -wp'); ?>12 <?php echo __('for', 'devotionalium'); ?> 13 13 <?php echo date_i18n( 14 14 get_option('date_format'), -
devotionalium/tags/1.0/src/View/devotionalium.phtml
r1816706 r1819380 10 10 Devotionalium 11 11 <?php endif; ?> 12 <?php echo __('for', 'devotionalium -wp'); ?>12 <?php echo __('for', 'devotionalium'); ?> 13 13 <?php echo date_i18n( 14 14 get_option('date_format'), -
devotionalium/tags/1.0/src/View/error.phtml
r1816706 r1819380 2 2 <div class="devotionalium-wp"> 3 3 <em class="error"> 4 <?php echo __('There was a problem loading today\'s verses.', 'devotionalium -wp') ?>4 <?php echo __('There was a problem loading today\'s verses.', 'devotionalium') ?> 5 5 </em> 6 6 </div> -
devotionalium/trunk/devotionalium-wp.php
r1816706 r1819380 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html 11 Text Domain: devotionalium -wp11 Text Domain: devotionalium 12 12 Domain Path: /languages 13 13 */ … … 22 22 { 23 23 load_plugin_textdomain( 24 'devotionalium -wp',24 'devotionalium', 25 25 false, 26 26 basename(dirname(__FILE__)).'/languages/' -
devotionalium/trunk/readme.txt
r1818543 r1819380 6 6 Stable tag: 1.0 7 7 Requires PHP: 5.6 8 Text Domain: devotionalium 9 Domain Path: /languages 8 10 License: GPLv2 or later 9 11 License URI: https://www.gnu.org/licenses/gpl-2.0.html -
devotionalium/trunk/src/Model/Widget.php
r1816706 r1819380 35 35 'devotionalium', 36 36 'Devotionalium', 37 ['description' => __('Displays daily bible verses from devotionalium.com', 'devotionalium -wp')]37 ['description' => __('Displays daily bible verses from devotionalium.com', 'devotionalium')] 38 38 ); 39 39 } -
devotionalium/trunk/src/Plugin.php
r1816706 r1819380 78 78 new Setting( 79 79 ConfigAccessor::KEY_IS_ORIGINAL_LANGUAGE, 80 __('Original languages', 'devotionalium -wp'),81 __('Display bible verses in original languages greek and hebrew as well.', 'devotionalium -wp'),80 __('Original languages', 'devotionalium'), 81 __('Display bible verses in original languages greek and hebrew as well.', 'devotionalium'), 82 82 new \Devotionalium\Block\Setting('/View/config/setting/boolean.phtml') 83 83 ), 84 84 new Setting\Select( 85 85 ConfigAccessor::KEY_VERSION, 86 __('Bible Version', 'devotionalium -wp'),87 __('Choose a bible version to display the bible verses in.', 'devotionalium -wp'),86 __('Bible Version', 'devotionalium'), 87 __('Choose a bible version to display the bible verses in.', 'devotionalium'), 88 88 $versionsArray, 89 89 new \Devotionalium\Block\Setting('/View/config/setting/select.phtml') … … 91 91 new Setting( 92 92 ConfigAccessor::KEY_OUTGOING_LINKS, 93 __('Outgoing links', 'devotionalium -wp'),94 __('Include hyperlinks to the full readings on devotionalium.com (recommended).', 'devotionalium -wp'),93 __('Outgoing links', 'devotionalium'), 94 __('Include hyperlinks to the full readings on devotionalium.com (recommended).', 'devotionalium'), 95 95 new \Devotionalium\Block\Setting('/View/config/setting/boolean.phtml') 96 96 ), … … 99 99 new Setting\Select( 100 100 ConfigAccessor::KEY_LANGUAGE, 101 __('Language', 'devotionalium -wp'),102 __('Choose a language for text displayed by the plugin.', 'devotionalium -wp'),101 __('Language', 'devotionalium'), 102 __('Choose a language for text displayed by the plugin.', 'devotionalium'), 103 103 [ 104 'en' => __('English', 'devotionalium -wp'),105 'de' => __('German', 'devotionalium -wp')104 'en' => __('English', 'devotionalium'), 105 'de' => __('German', 'devotionalium') 106 106 ], 107 107 new \Devotionalium\Block\Setting('/View/config/setting/select.phtml') … … 109 109 new Setting( 110 110 ConfigAccessor::KEY_DAY_OFFSET, 111 __('Day Offset', 'devotionalium -wp'),112 __('Offset the displayed Devotionalium by the given amount of days (-7 to 7).', 'devotionalium -wp'),111 __('Day Offset', 'devotionalium'), 112 __('Offset the displayed Devotionalium by the given amount of days (-7 to 7).', 'devotionalium'), 113 113 new \Devotionalium\Block\Setting('/View/config/setting/text.phtml') 114 114 ), 115 115 new Setting( 116 116 ConfigAccessor::KEY_CUSTOM_CSS, 117 __('Custom CSS', 'devotionalium -wp'),117 __('Custom CSS', 'devotionalium'), 118 118 __( 119 119 'Define custom styles for displaying Devotionalium. Use class ".devotionalium-wp" to limit changes to the plugin', 120 'devotionalium -wp'120 'devotionalium' 121 121 ), 122 122 new \Devotionalium\Block\Setting('/View/config/setting/textarea.phtml') … … 132 132 new Section( 133 133 'experimental', 134 __('Experimental', 'devotionalium -wp'),134 __('Experimental', 'devotionalium'), 135 135 $experimentalSettings, 136 136 new \Devotionalium\Block\Section('/View/config/section.phtml'), 137 __("Don't touch this if you don't know what you are doing.", 'devotionalium -wp')137 __("Don't touch this if you don't know what you are doing.", 'devotionalium') 138 138 ) 139 139 ]; 140 $configPage = new Settings(__('Devotionalium', 'devotionalium -wp'), $sections);140 $configPage = new Settings(__('Devotionalium', 'devotionalium'), $sections); 141 141 142 142 return $configPage; … … 175 175 { 176 176 load_plugin_textdomain( 177 'devotionalium -wp',177 'devotionalium', 178 178 false, 179 179 'devotionalium-wp/languages' -
devotionalium/trunk/src/View/devotionalium-widget.phtml
r1816706 r1819380 10 10 Devotionalium 11 11 <?php endif; ?> 12 <?php echo __('for', 'devotionalium -wp'); ?>12 <?php echo __('for', 'devotionalium'); ?> 13 13 <?php echo date_i18n( 14 14 get_option('date_format'), -
devotionalium/trunk/src/View/devotionalium.phtml
r1816706 r1819380 10 10 Devotionalium 11 11 <?php endif; ?> 12 <?php echo __('for', 'devotionalium -wp'); ?>12 <?php echo __('for', 'devotionalium'); ?> 13 13 <?php echo date_i18n( 14 14 get_option('date_format'), -
devotionalium/trunk/src/View/error.phtml
r1816706 r1819380 2 2 <div class="devotionalium-wp"> 3 3 <em class="error"> 4 <?php echo __('There was a problem loading today\'s verses.', 'devotionalium -wp') ?>4 <?php echo __('There was a problem loading today\'s verses.', 'devotionalium') ?> 5 5 </em> 6 6 </div>
Note: See TracChangeset
for help on using the changeset viewer.