~ubuntu-branches/ubuntu/lucid/jwchat/lucid

« back to all changes in this revision

Viewing changes to groupchat_roster.html.nl

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2008-08-24 15:02:53 UTC
  • mfrom: (3.1.4 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080824150253-h0z39rzjmo4lc1k5
Tags: 1.0beta3-3
* Clean up README.Debian. (Closes: #481320)
* Add brazilian debconf messages translation. (Closes: #481522)
* Add swedish debconf messages translation. (Closes: #494887)
* Add italian debconf messages translation. (Closes: #495780)
* Add russian debconf messages translation. (Closes: #495573)
* Add finnish debconf messages translation. (Closes: #496227)

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
                
32
32
                // add items based on affiliation
33
33
                var optidx = 1;
34
 
                list_selector.options[optidx++] = new Option("Discussierecht","role=participant&http://jabber.org/protocol/muc#admin&"+msgEscape("Lijst met discussiegerechtigden"));
 
34
                list_selector.options[optidx++] = new Option("Medezeggenschap","role=participant&http://jabber.org/protocol/muc#admin&"+msgEscape("Medezeggenschaplijst"));
35
35
                if (affiliation == 'admin' || affiliation == 'owner') {
36
36
                        list_selector.options[optidx++] = new Option("Bannen","affiliation=outcast&http://jabber.org/protocol/muc#admin&"+msgEscape("Lijst met gebande chatters"));
37
37
                        list_selector.options[optidx++] = new Option("Lid","affiliation=member&http://jabber.org/protocol/muc#admin&"+msgEscape("Ledenlijst"));
52
52
 
53
53
function cleanUp() {
54
54
        // close windows
55
 
        for (var i in editListW)
 
55
        for (var i=0;i<editListW.length; i++)
56
56
                if (editListW[i] && !editListW[i].closed)
57
57
                        editListW[i].close();
58
58