summaryrefslogtreecommitdiff
path: root/src/fe-common/irc/notifylist
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2000-04-28 08:25:53 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2000-04-28 08:25:53 +0000
commit8cfcd1b40f2c05c8ef0b361fe7db3f42dd91d642 (patch)
tree6a20a92840ee3939a1cb05ea09ea515845431a87 /src/fe-common/irc/notifylist
parenta5a66264de2f56c5b1ba00e0228eae61f70d5689 (diff)
downloadirssi-8cfcd1b40f2c05c8ef0b361fe7db3f42dd91d642.zip
Removed the N_() from module formats, the internationalization should be
done in theme files instead of in pot files.. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@192 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/fe-common/irc/notifylist')
-rw-r--r--src/fe-common/irc/notifylist/module-formats.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/fe-common/irc/notifylist/module-formats.c b/src/fe-common/irc/notifylist/module-formats.c
index ad1d3f1e..7a673457 100644
--- a/src/fe-common/irc/notifylist/module-formats.c
+++ b/src/fe-common/irc/notifylist/module-formats.c
@@ -23,17 +23,17 @@
FORMAT_REC fecommon_irc_notifylist_formats[] =
{
- { MODULE_NAME, N_("Notifylist"), 0 },
+ { MODULE_NAME, "Notifylist", 0 },
/* ---- */
- { NULL, N_("Notifylist"), 0 },
-
- { "notify_join", N_("%_$0%_ %K[%n$1@$2%K] [%n%_$3%_%K]%n has joined to $4"), 5, { 0, 0, 0, 0, 0 } },
- { "notify_part", N_("%_$0%_ has left $4"), 5, { 0, 0, 0, 0, 0 } },
- { "notify_away", N_("%_$0%_ %K[%n$5%K]%n %K[%n$1@$2%K] [%n%_$3%_%K]%n is now away: $4"), 6, { 0, 0, 0, 0, 0, 0 } },
- { "notify_unaway", N_("%_$0%_ %K[%n$4%K]%n %K[%n$1@$2%K] [%n%_$3%_%K]%n is now unaway"), 5, { 0, 0, 0, 0, 0 } },
- { "notify_unidle", N_("%_$0%_ %K[%n$5%K]%n %K[%n$1@$2%K] [%n%_$3%_%K]%n just stopped idling"), 6, { 0, 0, 0, 0, 0, 0 } },
- { "notify_online", N_("On $0: %_$1%_"), 2, { 0, 0 } },
- { "notify_offline", N_("Offline: $0"), 1, { 0 } },
- { "notify_list", N_("$0: $1 $2 $3"), 4, { 0, 0, 0, 0 } }
+ { NULL, "Notifylist", 0 },
+
+ { "notify_join", "%_$0%_ %K[%n$1@$2%K] [%n%_$3%_%K]%n has joined to $4", 5, { 0, 0, 0, 0, 0 } },
+ { "notify_part", "%_$0%_ has left $4", 5, { 0, 0, 0, 0, 0 } },
+ { "notify_away", "%_$0%_ %K[%n$5%K]%n %K[%n$1@$2%K] [%n%_$3%_%K]%n is now away: $4", 6, { 0, 0, 0, 0, 0, 0 } },
+ { "notify_unaway", "%_$0%_ %K[%n$4%K]%n %K[%n$1@$2%K] [%n%_$3%_%K]%n is now unaway", 5, { 0, 0, 0, 0, 0 } },
+ { "notify_unidle", "%_$0%_ %K[%n$5%K]%n %K[%n$1@$2%K] [%n%_$3%_%K]%n just stopped idling", 6, { 0, 0, 0, 0, 0, 0 } },
+ { "notify_online", "On $0: %_$1%_", 2, { 0, 0 } },
+ { "notify_offline", "Offline: $0", 1, { 0 } },
+ { "notify_list", "$0: $1 $2 $3", 4, { 0, 0, 0, 0 } }
};