From ed7175092c81dafa54be7fec2fa91d0ad88aa780 Mon Sep 17 00:00:00 2001
From: Andy Staudacher
Date: Sat, 21 Mar 2009 07:44:46 +0000
Subject: Refactor all translation strings that have ambiguous placeholders.
E.g. "%link_startClick here%link_end" is now 'Click here'.
Note: This isn't always the best solution. E.g. consider "Foo bar." Now the translator has to deal with
preserving CSS classes too...
---
core/views/admin_block_welcome.html.php | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
(limited to 'core/views')
diff --git a/core/views/admin_block_welcome.html.php b/core/views/admin_block_welcome.html.php
index 89914fb3..a11f2489 100644
--- a/core/views/admin_block_welcome.html.php
+++ b/core/views/admin_block_welcome.html.php
@@ -4,15 +4,15 @@
-
- = t("%link_startGeneral Settings%link_end - General configuation options for your Gallery.",
- array("link_start" => "", "link_end" => "")) ?>
+ = t('General Settings - General configuration options for your Gallery.',
+ array("url" => "#")) ?>
-
- = t("%link_startModules%link_end - Manage available and installed modules.",
- array("link_start" => "", "link_end" => "")) ?>
+ = t('Modules - Manage available and installed modules.',
+ array("url" => url::site("admin/modules"))) ?>
-
- = t("%link_startPresentation%link_end - Choose a theme, set image sizes.",
- array("link_start" => "", "link_end" => "")) ?>
+ = t('Presentation - Choose a theme, set image sizes.',
+ array("url" => "#")) ?>
--
cgit v1.2.3