From: <var...@us...> - 2011-10-03 12:33:42
|
Revision: 8155 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=8155&view=rev Author: vargenau Date: 2011-10-03 12:33:36 +0000 (Mon, 03 Oct 2011) Log Message: ----------- Put punctuation inside translated string to be consistent in all themes. Modified Paths: -------------- trunk/themes/Crao/templates/browse.tmpl trunk/themes/MonoBook/templates/browse.tmpl trunk/themes/Portland/templates/browse.tmpl trunk/themes/Wordpress/templates/viewsource.tmpl trunk/themes/blog/templates/browse.tmpl trunk/themes/default/templates/browse.tmpl Modified: trunk/themes/Crao/templates/browse.tmpl =================================================================== --- trunk/themes/Crao/templates/browse.tmpl 2011-10-03 12:28:51 UTC (rev 8154) +++ trunk/themes/Crao/templates/browse.tmpl 2011-10-03 12:33:36 UTC (rev 8155) @@ -5,7 +5,7 @@ <?php if ($revision and !$revision->isCurrent()) { ?> <p><strong><?php echo _("Note:")?></strong> <?php echo _("You are viewing an old revision of this page.")?> - <?php echo Button('browse', _("View the current version"), $page)?>. + <?php echo Button('browse', _("View the current version."), $page)?> </p> <?php } ?> <?php if (!empty($redirected)) { ?> Modified: trunk/themes/MonoBook/templates/browse.tmpl =================================================================== --- trunk/themes/MonoBook/templates/browse.tmpl 2011-10-03 12:28:51 UTC (rev 8154) +++ trunk/themes/MonoBook/templates/browse.tmpl 2011-10-03 12:33:36 UTC (rev 8155) @@ -5,7 +5,7 @@ <?php if ($revision and !$revision->isCurrent()) { ?> <p><strong><?php echo _("Note:")?></strong> <?php echo _("You are viewing an old revision of this page.")?> - <?php echo Button('browse', _("View the current version"), $page)?>. + <?php echo Button('browse', _("View the current version."), $page)?> </p> <?php } ?> <?php if (!empty($redirected)) { ?> Modified: trunk/themes/Portland/templates/browse.tmpl =================================================================== --- trunk/themes/Portland/templates/browse.tmpl 2011-10-03 12:28:51 UTC (rev 8154) +++ trunk/themes/Portland/templates/browse.tmpl 2011-10-03 12:33:36 UTC (rev 8155) @@ -7,7 +7,7 @@ <?php if ($revision and !$revision->isCurrent()) { ?> <p><strong><?php echo _("Note:")?></strong> <?php echo _("You are viewing an old revision of this page.")?> - <?php echo WikiLink($page, 'existing', _("View the current version"))?>.</p> + <?php echo WikiLink($page, 'existing', _("View the current version."))?></p> <hr class="ignore" /> <?php } ?> Modified: trunk/themes/Wordpress/templates/viewsource.tmpl =================================================================== --- trunk/themes/Wordpress/templates/viewsource.tmpl 2011-10-03 12:28:51 UTC (rev 8154) +++ trunk/themes/Wordpress/templates/viewsource.tmpl 2011-10-03 12:33:36 UTC (rev 8155) @@ -12,7 +12,7 @@ <?php } ?> <?php if (! $revision->isCurrent()) { ?> <p class="warning_msg"><?php echo _("You are viewing an old revision of this page.")?> - <?php echo Button('viewsource', _("View the current version"), $page)?>.</p> + <?php echo Button('viewsource', _("View the current version."), $page)?></p> <?php } ?> <textarea class="wikiedit" name="content" Modified: trunk/themes/blog/templates/browse.tmpl =================================================================== --- trunk/themes/blog/templates/browse.tmpl 2011-10-03 12:28:51 UTC (rev 8154) +++ trunk/themes/blog/templates/browse.tmpl 2011-10-03 12:33:36 UTC (rev 8155) @@ -5,7 +5,7 @@ <?php if ($revision and !$revision->isCurrent()) { ?> <p><strong><?php echo _("Note:")?></strong> <?php echo _("You are viewing an old revision of this page.")?> - <?php echo Button('browse', _("View the current version"), $page)?>. + <?php echo Button('browse', _("View the current version."), $page)?> </p> <?php } ?> <?php if (!empty($redirected)) { ?> Modified: trunk/themes/default/templates/browse.tmpl =================================================================== --- trunk/themes/default/templates/browse.tmpl 2011-10-03 12:28:51 UTC (rev 8154) +++ trunk/themes/default/templates/browse.tmpl 2011-10-03 12:33:36 UTC (rev 8155) @@ -5,7 +5,7 @@ <?php if ($revision and !$revision->isCurrent()) { ?> <p><strong><?php echo _("Note:")?></strong> <?php echo _("You are viewing an old revision of this page.")?> - <?php echo Button('browse', _("View the current version"), $page)?>. + <?php echo Button('browse', _("View the current version."), $page)?> </p> <?php } ?> <?php if (!empty($redirected)) { ?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |