]> code.citadel.org Git - citadel.git/commitdiff
* rss.c: i18n
authorArt Cancro <ajc@citadel.org>
Mon, 22 Aug 2005 16:53:11 +0000 (16:53 +0000)
committerArt Cancro <ajc@citadel.org>
Mon, 22 Aug 2005 16:53:11 +0000 (16:53 +0000)
webcit/ChangeLog
webcit/rss.c

index 1355027da808f1f18d9f76b9a1cab9d00b520f8a..4a13f9a470a038da201dcbb9682774a29fbf1f90 100644 (file)
@@ -1,4 +1,7 @@
 $Log$
+Revision 621.23  2005/08/22 16:53:11  ajc
+* rss.c: i18n
+
 Revision 621.22  2005/08/22 04:33:30  ajc
 * paging.c preferences.c roomops.c : i18n
 * Also changed various "OK" buttons to labels more descriptive of
@@ -2874,3 +2877,4 @@ Sun Dec  6 19:50:55 EST 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
 
 1998-12-03 Nathan Bryant <bryant@cs.usm.maine.edu>
        * webserver.c: warning fix
+
index 1d574f67681421ae997b41c9fcd84484dfa9adaf..c57708045fba66c81c3b6c822c2c6f9c77941cd5 100644 (file)
@@ -38,7 +38,7 @@ void display_rss(const char *roomname)
        char charset[256];
 
        if (!WC->logged_in) {
-               authorization_required("Not logged in");
+               authorization_required(_("Not logged in"));
                return;
        }
 
@@ -57,7 +57,7 @@ void display_rss(const char *roomname)
                wprintf("HTTP/1.0 404 Not Found\r\n");
                wprintf("Content-Type: text/html\r\n");
                wprintf("\r\n");
-               wprintf("Error retrieving RSS feed: couldn't find messages\n");
+               wprintf(_("Error retrieving RSS feed: couldn't find messages\n"));
                return;
        }