From d7cdd0866495ad9605615bd18d09629880633e76 Mon Sep 17 00:00:00 2001 From: Tomer Shalev Date: Thu, 8 Oct 2009 22:40:38 +0000 Subject: RTL: Add support for DB init message git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23020 a1c6a512-1295-4272-9138-f99709370657 --- apps/main.c | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) (limited to 'apps/main.c') diff --git a/apps/main.c b/apps/main.c index a93231e036..58ff1381b7 100644 --- a/apps/main.c +++ b/apps/main.c @@ -265,9 +265,16 @@ static void init_tagcache(void) } #endif #ifdef HAVE_LCD_BITMAP - splashf(0, "%s [%d/%d]", - str(LANG_TAGCACHE_INIT), ret, - tagcache_get_max_commit_step()); + if (lang_is_rtl()) + { + splashf(0, "[%d/%d] %s", ret, tagcache_get_max_commit_step(), + str(LANG_TAGCACHE_INIT)); + } + else + { + splashf(0, "%s [%d/%d]", str(LANG_TAGCACHE_INIT), ret, + tagcache_get_max_commit_step()); + } #else lcd_double_height(false); snprintf(buf, sizeof(buf), " DB [%d/%d]", ret, -- cgit v1.2.3