diff options
author | Linus Nielsen Feltzing <linus@haxx.se> | 2004-10-07 06:11:01 +0000 |
---|---|---|
committer | Linus Nielsen Feltzing <linus@haxx.se> | 2004-10-07 06:11:01 +0000 |
commit | 97426aa4db24e4b2888430161f7a4cef8b16870b (patch) | |
tree | 93726511bf3fd6ebdc8ed602f0786fff84bca80c | |
parent | ba0348eb833821a76474fc3be2dd2daa31636356 (diff) |
Patch #1041556 by Eric Lassauge, correct language for plugin load error in simulator
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5199 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | apps/plugin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugin.c b/apps/plugin.c index 24a9dd4da6..af6770213d 100644 --- a/apps/plugin.c +++ b/apps/plugin.c @@ -299,7 +299,7 @@ int plugin_load(const char* plugin, void* parameter) pd = dlopen(path, RTLD_NOW); if (!pd) { - snprintf(buf, sizeof buf, "Can't open %s", plugin); + snprintf(buf, sizeof buf, str(LANG_PLUGIN_CANT_OPEN), plugin); splash(HZ*2, true, buf); DEBUGF("dlopen(%s): %s\n",path,dlerror()); dlclose(pd); |