1
0
mirror of https://github.com/moparisthebest/Yaaic synced 2024-08-13 16:53:50 -04:00

Various fixes for strings that were still displayed in English

This commit is contained in:
Remi Rampin 2010-10-04 20:34:21 +02:00
parent a3fbd38b24
commit 2c4a2a7969
4 changed files with 13 additions and 11 deletions

View File

@ -48,7 +48,7 @@ along with Yaaic. If not, see <http://www.gnu.org/licenses/>.
android:id="@+id/add"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Add" />
android:text="@string/action_add" />
</LinearLayout>
<LinearLayout
android:orientation="horizontal"
@ -58,11 +58,11 @@ along with Yaaic. If not, see <http://www.gnu.org/licenses/>.
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/ok"
android:text="Ok" />
android:text="@string/action_ok" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/cancel"
android:text="Cancel" />
android:text="@string/action_cancel" />
</LinearLayout>
</LinearLayout>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="add_server_menu">Ajouter un serveur</string>
<string name="add_server_list">Ajouter un serveur</string>
<string name="add_server_list">Ajouter ce serveur</string>
<string name="settings_menu">Paramètres</string>
<string name="about_menu">A propos</string>
@ -22,6 +22,7 @@
<string name="server_autoconnect">Se connecter au démarrage</string>
<string name="server_channels">Canaux</string>
<string name="add_server">Ajouter un serveur</string>
<string name="server_save">Enregistrer</string>
<string name="select_charset">Choisir un encodage</string>
<string name="nickname">Pseudo</string>
<string name="aliases">Aliases</string>
@ -32,16 +33,16 @@
<string name="channel">Canal</string>
<string name="channels">Canaux</string>
<string name="commands">Commandes</string>
<string name="user">Utilisateur</string> <!-- WUT ? -->
<string name="user">Utilisateur</string>
<string name="join">Rejoindre</string>
<string name="join_channel">Rejoindre le canal</string> <!-- WUT ? -->
<string name="join_channel">Rejoindre un canal</string>
<string name="close">Fermer</string>
<string name="users">Utilisateurs</string>
<string name="connect">Se connecter</string> <!-- "se" ? -->
<string name="connect">Se connecter</string>
<string name="disconnect">Se déconnecter</string>
<string name="edit">Modifier</string>
<string name="delete">Supprimer</string>
<string name="on_connect">A la connexion</string> <!-- WUT ? -->
<string name="on_connect">A la connexion</string>
<string name="preferences">Préférences</string>
<string name="charset">Encodage</string>
@ -52,7 +53,7 @@
<string name="negative_button">Non</string>
<string name="alias_add_description">Ces aliases seront utilisées si le pseudo principal n\'est pas disponible.</string>
<string name="channel_add_description">Ces canaux seront rejoint automatiquement après la connexion.</string>
<string name="channel_add_description">Ces canaux seront rejoints automatiquement après la connexion.</string>
<string name="command_add_description">Ces commandes seront exécutées après la connexion.</string>
<string name="validation_blank_title">Le nom ne peut pas être vide</string>
@ -156,7 +157,7 @@
<string name="settings_connection">Connexion</string>
<string name="settings_reconnect_title">Reconnexion</string>
<string name="settings_reconnect_desc">Se reconnecter automatiquement si déconnecté</string>
<string name="settings_chat">Discussion</string> <!-- WUT ? -->
<string name="settings_chat">Fenêtre de discussion</string>
<string name="settings_icons_title">Affiche les icônes</string>
<string name="settings_icons_desc">Affiche les icônes pour mettre en valeur certains évènements</string>
<string name="settings_colors_title">Affiche des couleurs</string>

View File

@ -22,6 +22,7 @@
<string name="server_autoconnect">Auto connect on startup</string>
<string name="server_channels">Channels</string>
<string name="add_server">Add server</string>
<string name="server_save">Save</string>
<string name="select_charset">Select a charset</string>
<string name="nickname">Nickname</string>
<string name="aliases">Aliases</string>

View File

@ -108,7 +108,7 @@ public class AddServerActivity extends Activity implements OnClickListener
((EditText) findViewById(R.id.realname)).setText(server.getIdentity().getRealName());
((CheckBox) findViewById(R.id.useSSL)).setChecked(server.useSSL());
((Button) findViewById(R.id.add)).setText("Save");
((Button) findViewById(R.id.add)).setText(R.string.server_save);
// Select charset
if (server.getCharset() != null) {