diff --git a/phpBB/language/lang_english.php b/phpBB/language/lang_english.php
index 0e5c3a7457..a2eafb7d44 100755
--- a/phpBB/language/lang_english.php
+++ b/phpBB/language/lang_english.php
@@ -60,9 +60,13 @@ $lang['Months'] = "Months";
$lang['Year'] = "Year";
$lang['Years'] = "Years";
-$lang['All_times'] = "All times"; // This is followed by GMT and the timezone offset
+$lang['All_times'] = "All times are"; // This is followed by GMT and the timezone offset
$lang['GMT'] = "GMT";
+$lang['Goto_page'] = "Goto page";
+$lang['Page'] = "Page"; // Followed by the current page number then 'of x' where x is total pages
+$lang['of'] = "of"; // See Page above
+
//
// Login
//
@@ -75,6 +79,7 @@ $lang['Forgotten_password'] = "I forgot my password";
//
// Index page
//
+$lang['No_Posts'] = "No Posts";
//
// Viewforum
diff --git a/phpBB/templates/Default/viewtopic_body.tpl b/phpBB/templates/Default/viewtopic_body.tpl
index 56bcb54db0..001269675b 100644
--- a/phpBB/templates/Default/viewtopic_body.tpl
+++ b/phpBB/templates/Default/viewtopic_body.tpl
@@ -68,7 +68,6 @@
{postrow.POSTER_NAME}
{postrow.POSTER_RANK}
{postrow.RANK_IMAGE}
- {postrow.POSTER_AVATAR}
{L_JOINED}: {postrow.POSTER_JOINED}
{L_POSTS}: {postrow.POSTER_POSTS}
{postrow.POSTER_FROM}
@@ -77,7 +76,8 @@
{L_POSTED}: {postrow.POST_DATE} |
- {postrow.MESSAGE}
+ |
+ {postrow.MESSAGE}
{postrow.PROFILE_IMG} {postrow.EMAIL_IMG} {postrow.WWW_IMG} {postrow.ICQ_STATUS_IMG} {postrow.ICQ_ADD_IMG} {postrow.AIM_IMG} {postrow.YIM_IMG} {postrow.MSN_IMG} {postrow.EDIT_IMG} {postrow.QUOTE_IMG} {postrow.PMSG_IMG} {postrow.IP_IMG} {postrow.DELPOST_IMG}
|
@@ -97,7 +97,7 @@
{S_TIMEZONE} |
- This topic is {PAGES} {L_PAGES} long. {PAGINATION} |
+ This topic is {TOTAL_PAGES} {L_PAGES} long. {PAGINATION} |
|
diff --git a/phpBB/templates/PSO/memberlist_body.tpl b/phpBB/templates/PSO/memberlist_body.tpl
index 75b76f85c1..0a7b691073 100644
--- a/phpBB/templates/PSO/memberlist_body.tpl
+++ b/phpBB/templates/PSO/memberlist_body.tpl
@@ -8,7 +8,7 @@
- {L_VIEW_TOP10} | {L_SORTALPHA} |
+  |
{L_USERNAME} |
@@ -29,7 +29,12 @@
- Page >> {PAGINATION} |
+
+
+ {L_PAGE} {ON_PAGE} {L_OF} {TOTAL_PAGES} |
+ {L_GOTO_PAGE}: {PAGINATION} |
+
+ |
|
diff --git a/phpBB/templates/PSO/viewforum_body.tpl b/phpBB/templates/PSO/viewforum_body.tpl
index 71dbaa85e4..781e809593 100644
--- a/phpBB/templates/PSO/viewforum_body.tpl
+++ b/phpBB/templates/PSO/viewforum_body.tpl
@@ -37,8 +37,9 @@
-  |
- {PAGINATION} |
+  |
+ {L_PAGE} {ON_PAGE} {L_OF} {TOTAL_PAGES} |
+ {L_GOTO_PAGE}: {PAGINATION} |
|
diff --git a/phpBB/templates/PSO/viewtopic_body.tpl b/phpBB/templates/PSO/viewtopic_body.tpl
index a4941ddab4..240a9db5fa 100644
--- a/phpBB/templates/PSO/viewtopic_body.tpl
+++ b/phpBB/templates/PSO/viewtopic_body.tpl
@@ -22,7 +22,7 @@
-
+
{postrow.POSTER_NAME} {postrow.POSTER_RANK}
{L_JOINED}: {postrow.POSTER_JOINED} {L_POSTS}: {postrow.POSTER_POSTS} {postrow.POSTER_FROM}
{postrow.POSTER_AVATAR}
|
@@ -30,12 +30,9 @@
Back to top |
|
- Post Subject: {postrow.POST_SUBJECT} |
-
-
-
+
- {L_POSTED}: {postrow.POST_DATE}
|
+ {L_POSTED}: {postrow.POST_DATE} Post Subject: {postrow.POST_SUBJECT}
|
{postrow.MESSAGE} |
@@ -49,8 +46,9 @@
-  |
- {PAGINATION} |
+  |
+ {L_PAGE} {ON_PAGE} {L_OF} {TOTAL_PAGES} |
+ {L_GOTO_PAGE}: {PAGINATION} |
|
| | |