summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfisharebest <fisharebest@gmail.com>2011-11-19 09:01:30 +0000
committerfisharebest <fisharebest@gmail.com>2011-11-19 09:01:30 +0000
commitda74eac2df5776dcebad5a180ac018b2a69a1dbc (patch)
tree2627ad028bbd8e91117d7b2cc7755ebfe122d83d
parent78ee35629cd1e1fcc6aeca3444754af86e691a75 (diff)
downloadwebtrees-da74eac2df5776dcebad5a180ac018b2a69a1dbc.tar.gz
webtrees-da74eac2df5776dcebad5a180ac018b2a69a1dbc.tar.bz2
webtrees-da74eac2df5776dcebad5a180ac018b2a69a1dbc.zip
Fix I18N comments
-rw-r--r--admin.php2
-rw-r--r--library/WT/Report/Base.php2
-rw-r--r--setup.php4
3 files changed, 4 insertions, 4 deletions
diff --git a/admin.php b/admin.php
index 7475cc10f3..991be56b08 100644
--- a/admin.php
+++ b/admin.php
@@ -73,7 +73,7 @@ if (WT_USER_IS_ADMIN && $latest_version && version_compare(WT_VERSION, $latest_v
'<div>',
'<h3>', WT_I18N::translate('Upgrade instructions'), '</h3>',
'<ul>',
- '<li>', /* I18N: %s is a URL/link to a .ZIP file */ WT_I18n::translate('Download %s and extract the files.', '<a class="current" href="'.$download_url.'">'.basename($download_url).'</a>'), '</li>';
+ '<li>', /* I18N: %s is a URL/link to a .ZIP file */ WT_I18N::translate('Download %s and extract the files.', '<a class="current" href="'.$download_url.'">'.basename($download_url).'</a>'), '</li>';
if (version_compare(WT_VERSION, $earliest_version)<0) {
echo '<li>', WT_I18N::translate('Accept or reject any pending changes.'), '</li>';
echo '<li>', WT_I18N::translate('Save all your family trees to disk, by using the "export" function for each one.'), '</li>';
diff --git a/library/WT/Report/Base.php b/library/WT/Report/Base.php
index f4a80ef223..441f607245 100644
--- a/library/WT/Report/Base.php
+++ b/library/WT/Report/Base.php
@@ -214,7 +214,7 @@ class WT_Report_Base {
// Set the Keywords
$this->rkeywords = '';
// Generated By...text
- // I18N This is a report footer. %s is the name of the application.
+ // I18N: This is a report footer. %s is the name of the application.
$this->generatedby = WT_I18N::translate('Generated by %s', WT_WEBTREES.' '.WT_VERSION_TEXT);
// For known size pages
diff --git a/setup.php b/setup.php
index a9a5c2f2f3..05c7c11a8c 100644
--- a/setup.php
+++ b/setup.php
@@ -528,10 +528,10 @@ if (empty($_POST['wtname']) || empty($_POST['wtuser']) || strlen($_POST['wtpass'
'>', WT_I18N::translate('none'), '</option>',
'<option value="tls" ',
$_POST['smtpsecure']=='tls' ? 'selected="selected"' : '',
- '>', /* I18n: Transport Layer Security - a secure communications protocol */ WT_I18N::translate('tls'), '</option>',
+ '>', /* I18N: Transport Layer Security - a secure communications protocol */ WT_I18N::translate('tls'), '</option>',
'<option value="ssl" ',
$_POST['smtpsecure']=='ssl' ? 'selected="selected"' : '',
- '>', /* I18n: Secure Sockets Layer - a secure communications protocol*/ WT_I18N::translate('ssl'), '</option>',
+ '>', /* I18N: Secure Sockets Layer - a secure communications protocol*/ WT_I18N::translate('ssl'), '</option>',
'</select></td><td>',
WT_I18N::translate('Most servers do not use secure connections.'),
'</td></tr><tr><td>',