diff options
author | trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b <trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-11-07 03:36:30 +0000 |
---|---|---|
committer | trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b <trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-11-07 03:36:30 +0000 |
commit | c58d37f49dfc674920ae2ccd93d6fd32df68544d (patch) | |
tree | cc978d68faceecbac0b087cd2a6e8218ca23643d /lang | |
parent | b4489cffedcc217d72403f00c3087e446e4b7348 (diff) |
BUILD : 1.7.6 (439) BUGS : 68, 170, 209 NOTES : 1. DrSteins XOP patch (bug# 170), 2. Cleaned up the English language file for grammar (bug# 209), 3. Patch that fixes segfaults under NetBSD, 4. Cleaned up some places that could lead to segfaults, 5. DrSteins patch for NS ACCESS LIST, 6. Chanserv taking modes more than once (bug #68), 7. Fixed errors when doing "make" under some BSD systems, 8. Fixed syntax error when NSForceEmail is disabled
git-svn-id: svn://svn.anope.org/anope/trunk@439 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@294 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'lang')
-rw-r--r-- | lang/Makefile | 34 | ||||
-rw-r--r-- | lang/cat.l | 4 | ||||
-rw-r--r-- | lang/de.l | 4 | ||||
-rw-r--r-- | lang/en_us.l | 26 | ||||
-rw-r--r-- | lang/es.l | 4 | ||||
-rw-r--r-- | lang/fr.l | 4 | ||||
-rw-r--r-- | lang/gr.l | 4 | ||||
-rw-r--r-- | lang/hun.l | 4 | ||||
-rw-r--r-- | lang/it.l | 4 | ||||
-rw-r--r-- | lang/nl.l | 4 | ||||
-rw-r--r-- | lang/pl.l | 4 | ||||
-rw-r--r-- | lang/pt.l | 4 | ||||
-rw-r--r-- | lang/ru.l | 4 | ||||
-rw-r--r-- | lang/tr.l | 4 |
14 files changed, 81 insertions, 27 deletions
diff --git a/lang/Makefile b/lang/Makefile index 3c7849284..a302e6d9a 100644 --- a/lang/Makefile +++ b/lang/Makefile @@ -18,22 +18,24 @@ all: $(LANGOBJS) distclean: clean spotless install: all - mkdir -p $(DATDEST)/languages -ifdef RUNGROUP - chgrp $(RUNGROUP) $(DATDEST)/languages - chmod 770 $(DATDEST)/languages -else - chmod 700 $(DATDEST)/languages -endif - cp $(LANGOBJS) $(DATDEST)/languages -ifdef RUNGROUP - chgrp $(RUNGROUP) $(DATDEST)/languages/* - chmod 660 $(DATDEST)/languages/* -else - chmod 600 $(DATDEST)/languages/* -endif - - + test -d $(DATDEST)/languages || mkdir $(DATDEST)/languages + @if [ "$(RUNGROUP)" ] ; then \ + echo chgrp -R $(RUNGROUP) $(DATDEST)/languages ; \ + chgrp -R $(RUNGROUP) $(DATDEST)/languages ; \ + echo chmod -R g+rw $(DATDEST)/languages ; \ + chmod -R g+rw $(DATDEST)/languages ; \ + $(CP) $(LANGOBJS) $(DATDEST)/languages ; \ + echo chgrp -R $(RUNGROUP) $(DATDEST)/languages ; \ + chgrp -R $(RUNGROUP) $(DATDEST)/languages/* ; \ + echo chmod -R g+rw $(DATDEST)/languages/* ; \ + chmod -R g+rw $(DATDEST)/languages/* ; \ + fi + @if [ ! "$(RUNGROUP)" ] ; then \ + chmod 700 $(DATDEST)/languages/ ; \ + $(CP) $(LANGOBJS) $(DATDEST)/languages ; \ + chmod 600 $(DATDEST)/languages/* ; \ + fi + clean: rm -f $(LANGOBJS) langcomp diff --git a/lang/cat.l b/lang/cat.l index ff9590dff..d17bea766 100644 --- a/lang/cat.l +++ b/lang/cat.l @@ -550,6 +550,10 @@ NICK_ACCESS_LIST Lllista d'accés: NICK_ACCESS_LIST_X Lllista d'accés per %s: +NICK_ACCESS_LIST_EMPTY + Your access list is empty. +NICK_ACCESS_LIST_X_EMPTY + Access list for %s is empty. # Status messages NICK_STATUS_0 @@ -570,6 +570,10 @@ NICK_ACCESS_LIST Access-Liste: NICK_ACCESS_LIST_X Access-List von %s: +NICK_ACCESS_LIST_EMPTY + Your access list is empty. +NICK_ACCESS_LIST_X_EMPTY + Access list for %s is empty. # Status messages NICK_STATUS_0 diff --git a/lang/en_us.l b/lang/en_us.l index 291e89301..251eeee47 100644 --- a/lang/en_us.l +++ b/lang/en_us.l @@ -540,6 +540,10 @@ NICK_ACCESS_LIST Access list: NICK_ACCESS_LIST_X Access list for %s: +NICK_ACCESS_LIST_EMPTY + Your access list is empty. +NICK_ACCESS_LIST_X_EMPTY + Access list for %s is empty. # Status messages NICK_STATUS_0 @@ -589,7 +593,7 @@ NICK_INFO_GREET NICK_INFO_OPTIONS Options: %s NICK_INFO_EXPIRE - Expires in: %s + Expires on: %s # These strings MUST NOT be empty NICK_INFO_OPT_KILL Protection @@ -1394,7 +1398,7 @@ CHAN_INFO_OPT_NONE CHAN_INFO_MODE_LOCK Mode lock: %s CHAN_INFO_EXPIRE - Expires in: %s + Expires on: %s CHAN_INFO_NO_EXPIRE This channel will not expire. @@ -2573,29 +2577,29 @@ OPER_SET_IGNORE_OFF OPER_SET_IGNORE_ERROR Setting for IGNORE must be ON or OFF. OPER_SET_READONLY_ON - Services is now in read-only mode. + Services are now in read-only mode. OPER_SET_READONLY_OFF - Services is now in read-write mode. + Services are now in read-write mode. OPER_SET_READONLY_ERROR Setting for READONLY must be ON or OFF. OPER_SET_LOGCHAN_ON - Services is now reporting log messages to %s. + Services are now reporting log messages to %s. OPER_SET_LOGCHAN_OFF - Services is no longer reporting log messages to a channel. + Services are no longer reporting log messages to a channel. OPER_SET_LOGCHAN_ERROR Setting for LOGCHAN must be ON or OFF and LogChannel must be defined. OPER_SET_DEBUG_ON - Services is now in debug mode. + Services are now in debug mode. OPER_SET_DEBUG_OFF - Services is now in non-debug mode. + Services are now in non-debug mode. OPER_SET_DEBUG_LEVEL - Services is now in debug mode (level %d). + Services are now in debug mode (level %d). OPER_SET_DEBUG_ERROR Setting for DEBUG must be ON, OFF, or a positive number. OPER_SET_NOEXPIRE_ON - Services is now in no expire mode. + Services are now in no expire mode. OPER_SET_NOEXPIRE_OFF - Services is now in expire mode. + Services are now in expire mode. OPER_SET_NOEXPIRE_ERROR Setting for NOEXPIRE must be ON or OFF. OPER_SET_UNKNOWN_OPTION @@ -554,6 +554,10 @@ NICK_ACCESS_LIST Lista de acceso: NICK_ACCESS_LIST_X Lista de acceso para %s: +NICK_ACCESS_LIST_EMPTY + Tu lista de acceso esta vacia. +NICK_ACCESS_LIST_X_EMPTY + La lista de acceso para %s esta vacia. # Status messages NICK_STATUS_0 @@ -552,6 +552,10 @@ NICK_ACCESS_LIST Liste d'accès: NICK_ACCESS_LIST_X Liste d'accès de %s: +NICK_ACCESS_LIST_EMPTY + Your access list is empty. +NICK_ACCESS_LIST_X_EMPTY + Access list for %s is empty. # Status messages NICK_STATUS_0 @@ -548,6 +548,10 @@ NICK_ACCESS_LIST Ëßóôá ðñüóâáóçò: NICK_ACCESS_LIST_X Ëßóôá ðñüóâáóçò ãéá %s: +NICK_ACCESS_LIST_EMPTY + Your access list is empty. +NICK_ACCESS_LIST_X_EMPTY + Access list for %s is empty. # Status messages NICK_STATUS_0 diff --git a/lang/hun.l b/lang/hun.l index 2ee18e29a..3f31a8010 100644 --- a/lang/hun.l +++ b/lang/hun.l @@ -547,6 +547,10 @@ NICK_ACCESS_LIST Hozzáférési lista: NICK_ACCESS_LIST_X %s hozzáférési listája: +NICK_ACCESS_LIST_EMPTY + Your access list is empty. +NICK_ACCESS_LIST_X_EMPTY + Access list for %s is empty. # Status messages NICK_STATUS_0 @@ -549,6 +549,10 @@ NICK_ACCESS_LIST Lista di accesso: NICK_ACCESS_LIST_X Lista di accesso di %s: +NICK_ACCESS_LIST_EMPTY + Your access list is empty. +NICK_ACCESS_LIST_X_EMPTY + Access list for %s is empty. # Status messages NICK_STATUS_0 @@ -551,6 +551,10 @@ NICK_ACCESS_LIST Toegangslijst: NICK_ACCESS_LIST_X Toegangslijst voor %s: +NICK_ACCESS_LIST_EMPTY + Your access list is empty. +NICK_ACCESS_LIST_X_EMPTY + Access list for %s is empty. # Status messages NICK_STATUS_0 @@ -601,6 +601,10 @@ NICK_ACCESS_LIST Lista dostêpu: NICK_ACCESS_LIST_X Lista dostêpu dla %s: +NICK_ACCESS_LIST_EMPTY + Your access list is empty. +NICK_ACCESS_LIST_X_EMPTY + Access list for %s is empty. # Status messages NICK_STATUS_0 @@ -548,6 +548,10 @@ NICK_ACCESS_LIST Lista de acesso: NICK_ACCESS_LIST_X Lista de acesso para %s: +NICK_ACCESS_LIST_EMPTY + Your access list is empty. +NICK_ACCESS_LIST_X_EMPTY + Access list for %s is empty. # Status messages NICK_STATUS_0 @@ -548,6 +548,10 @@ NICK_ACCESS_LIST Ñïèñîê äîñòóïà: NICK_ACCESS_LIST_X Ñïèñîê äîñòóïà äëÿ %s: +NICK_ACCESS_LIST_EMPTY + Your access list is empty. +NICK_ACCESS_LIST_X_EMPTY + Access list for %s is empty. # Status messages NICK_STATUS_0 @@ -554,6 +554,10 @@ NICK_ACCESS_LIST Access listesi: NICK_ACCESS_LIST_X %s nickinin access listesi: +NICK_ACCESS_LIST_EMPTY + Your access list is empty. +NICK_ACCESS_LIST_X_EMPTY + Access list for %s is empty. # Status messages NICK_STATUS_0 |