Skip to content

Commit 01fa621

Browse files
authored
Merge pull request #2849 from guusdk/additional-translations
Additional translations
2 parents 1e070c8 + 22cc5ee commit 01fa621

File tree

3 files changed

+85
-2
lines changed

3 files changed

+85
-2
lines changed
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
## Openfire Resource Bundle
2+
##
3+
## Additional locales can be specified by creating a new resource file in this
4+
## directory using the following conventions:
5+
##
6+
## openfire_i18n "_" language "_" country ".properties"
7+
## openfire_i18n "_" language ".properties"
8+
##
9+
## e.g.
10+
## openfire_i18n_en.properties <- English resources
11+
## openfire_i18n_en_US.properties <- American US resources
12+
## openfire_i18n_de.properties <- German resources
13+
## openfire_i18n_ja.properties <- Japanese resources
14+
##
15+
## Please note that the two digit language code should be lower case, and the
16+
## two digit country code should be in uppercase. Often, it is not necessary to
17+
## specify the country code.
18+
##
19+
## A full list of language codes can be found at
20+
## http://www-old.ics.uci.edu/pub/ietf/http/related/iso639.txt
21+
## and a full list of country codes can be found at
22+
## http://www.chemie.fu-berlin.de/diverse/doc/ISO_3166.html
23+
##
24+
## In property strings that are parameterized, single quotes can be used to
25+
## quote the "{" (curly brace) if necessary. A real single quote is represented by ''.
26+
27+
# Openfire
28+
29+
short.title = Openfire
30+
title = Openfire
31+
32+
# Sidebar, tabs (preserve the indenting below -- helps to visualize the structure:
33+
34+
tab.server=Server
35+
tab.server.descr=Klicka för att hantera serverinställningar
36+
sidebar.server-manager=Serverhanterare
37+
sidebar.server-settings=Serverinformation
38+
sidebar.server-settings.descr=Klicka för att visa systeminformation
39+
sidebar.system-props=Systemegenskaper
40+
sidebar.system-props.descr=Klicka för att hantera serveregenskaper
41+
sidebar.server-locale=Språk och tid
42+
sidebar.server-locale.descr=Klicka för att ställa in språk och tidszon
43+
sidebar.system-clustering=Klustring
44+
sidebar.system-clustering.descr=Klicka för att hantera klusterinställningar

xmppserver/src/main/webapp/server-locale.jsp

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<%--
22
-
3-
- Copyright (C) 2004-2008 Jive Software, 2017-2024 Ignite Realtime Foundation. All rights reserved.
3+
- Copyright (C) 2004-2008 Jive Software, 2017-2025 Ignite Realtime Foundation. All rights reserved.
44
-
55
- Licensed under the Apache License, Version 2.0 (the "License");
66
- you may not use this file except in compliance with the License.
@@ -194,6 +194,14 @@
194194
<label for="he">עברית (he)</label>
195195
</td>
196196
</tr>
197+
<tr>
198+
<td>
199+
<input type="radio" name="localeCode" value="it_IT" <%= ("it_IT".equals(locale.toString()) ? "checked" : "") %> id="it_IT" />
200+
</td>
201+
<td colspan="2">
202+
<label for="it_IT">Italiano (it_IT)</label>
203+
</td>
204+
</tr>
197205
<tr>
198206
<td>
199207
<input type="radio" name="localeCode" value="ja_JP" <%= ("ja_JP".equals(locale.toString()) ? "checked" : "") %> id="ja_JP" />
@@ -250,6 +258,22 @@
250258
<label for="sk">Sloven&#269;ina (sk)</label>
251259
</td>
252260
</tr>
261+
<tr>
262+
<td>
263+
<input type="radio" name="localeCode" value="sv" <%= ("sv".equals(locale.toString()) ? "checked" : "") %> id="sv" />
264+
</td>
265+
<td colspan="2">
266+
<label for="sv">Svenska (sv)</label>
267+
</td>
268+
</tr>
269+
<tr>
270+
<td>
271+
<input type="radio" name="localeCode" value="tr_TR" <%= ("tr_TR".equals(locale.toString()) ? "checked" : "") %> id="tr_TR" />
272+
</td>
273+
<td colspan="2">
274+
<label for="tr_TR">Türkçe (tr_TR)</label>
275+
</td>
276+
</tr>
253277
<tr>
254278
<td>
255279
<input type="radio" name="localeCode" value="uk_UA" <%= ("uk_UA".equals(locale.toString()) ? "checked" : "") %> id="uk_UA" />

xmppserver/src/main/webapp/setup/index.jsp

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<%--
22
-
3-
- Copyright (C) 2004-2010 Jive Software, 2017-2024 Ignite Realtime Foundation. All rights reserved.
3+
- Copyright (C) 2004-2010 Jive Software, 2017-2025 Ignite Realtime Foundation. All rights reserved.
44
-
55
- Licensed under the Apache License, Version 2.0 (the "License");
66
- you may not use this file except in compliance with the License.
@@ -351,6 +351,11 @@
351351
(he) <b>עברית</b>
352352
</label><br>
353353

354+
<label for="it_IT">
355+
<input type="radio" name="localeCode" value="it_IT" ${locale eq 'it_IT' ? 'checked' : ''} id="it_IT" />
356+
<b>Italiano</b> (it_IT)
357+
</label><br>
358+
354359
<label for="ja_JP">
355360
<input type="radio" name="localeCode" value="ja_JP" ${locale eq 'ja_JP' ? 'checked' : ''} id="ja_JP" />
356361
<b>日本語</b> (ja_JP)
@@ -386,6 +391,16 @@
386391
<b>Sloven&#269;ina</b> (sk)
387392
</label><br>
388393

394+
<label for="sv">
395+
<input type="radio" name="localeCode" value="sv" ${locale eq 'sv' ? 'checked' : ''} id="sv" />
396+
<b>Svenska</b> (sv)
397+
</label><br>
398+
399+
<label for="tr_TR">
400+
<input type="radio" name="localeCode" value="tr_TR" ${locale eq 'tr_TR' ? 'checked' : ''} id="tr_TR" />
401+
<b>Türkçe</b> (tr_TR)
402+
</label><br>
403+
389404
<label for="uk_UA">
390405
<input type="radio" name="localeCode" value="uk_UA" ${locale eq 'uk_UA' ? 'checked' : ''} id="uk_UA" />
391406
<b>Українська</b> (uk_UA)

0 commit comments

Comments
 (0)