From bffaeae923a54d024fc58f8ffc04cddc06fd78b5 Mon Sep 17 00:00:00 2001 From: smorlat <smorlat@3f6dc0c8-ddfe-455d-9043-3cd528dc4637> Date: Tue, 29 Sep 2009 20:04:04 +0000 Subject: [PATCH] implement mute button logic. git-svn-id: svn+ssh://svn.savannah.nongnu.org/linphone/trunk@688 3f6dc0c8-ddfe-455d-9043-3cd528dc4637 --- linphone/gtk-glade/incall_view.c | 27 ++++++++++++- linphone/gtk-glade/linphone.h | 4 ++ linphone/gtk-glade/main.c | 11 ++++++ linphone/gtk-glade/main.glade | 66 ++++++++++++++++++++------------ linphone/gtk-glade/propertybox.c | 4 +- linphone/gtk-glade/support.c | 3 +- linphone/linphone.kdevelop | 36 ++++++++--------- linphone/po/cs.po | 11 ++++-- linphone/po/de.po | 6 +-- linphone/po/es.po | 6 +-- linphone/po/fr.po | 10 ++--- linphone/po/hu.po | 6 +-- linphone/po/it.po | 11 ++++-- linphone/po/ja.po | 16 ++++---- linphone/po/nl.po | 6 +-- linphone/po/pl.po | 6 +-- linphone/po/pt_BR.po | 6 +-- linphone/po/ru.po | 6 +-- linphone/po/sv.po | 28 ++++++++++---- linphone/po/zh_CN.po | 19 +++++---- 20 files changed, 180 insertions(+), 108 deletions(-) diff --git a/linphone/gtk-glade/incall_view.c b/linphone/gtk-glade/incall_view.c index 4e857e5741..fe97da7320 100644 --- a/linphone/gtk-glade/incall_view.c +++ b/linphone/gtk-glade/incall_view.c @@ -29,6 +29,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include "linphone.h" + gboolean linphone_gtk_use_in_call_view(){ static int val=-1; if (val==-1) val=linphone_gtk_get_ui_config_int("use_incall_view",1); @@ -125,6 +126,8 @@ void linphone_gtk_in_call_view_set_in_call(){ gtk_image_set_from_animation(GTK_IMAGE(animation),pbuf); g_object_unref(G_OBJECT(pbuf)); }else gtk_image_set_from_stock(GTK_IMAGE(animation),GTK_STOCK_INFO,GTK_ICON_SIZE_DIALOG); + linphone_gtk_enable_mute_button( + GTK_TOGGLE_BUTTON(linphone_gtk_get_widget(main_window,"incall_mute")),TRUE); } void linphone_gtk_in_call_view_update_duration(int duration){ @@ -162,10 +165,30 @@ void linphone_gtk_in_call_view_terminate(const char *error_msg){ gtk_image_set_from_pixbuf(GTK_IMAGE(animation),pbuf); g_object_unref(G_OBJECT(pbuf)); } + linphone_gtk_enable_mute_button( + GTK_TOGGLE_BUTTON(linphone_gtk_get_widget(main_window,"incall_mute")),FALSE); g_timeout_add_seconds(2,(GSourceFunc)in_call_view_terminated,NULL); } +void linphone_gtk_draw_mute_button(GtkToggleButton *button, gboolean active){ + if (active){ + GtkWidget *image=create_pixmap("mic_muted.png"); + gtk_button_set_label(GTK_BUTTON(button),_("Unmute")); + if (image!=NULL) gtk_button_set_image(GTK_BUTTON(button),image); + }else{ + GtkWidget *image=create_pixmap("mic_active.png"); + gtk_button_set_label(GTK_BUTTON(button),_("Mute")); + if (image!=NULL) gtk_button_set_image(GTK_BUTTON(button),image); + } +} + void linphone_gtk_mute_toggled(GtkToggleButton *button){ - linphone_core_mute_mic(linphone_gtk_get_core(), - gtk_toggle_button_get_active(button)); + gboolean active=gtk_toggle_button_get_active(button); + linphone_core_mute_mic(linphone_gtk_get_core(),active); + linphone_gtk_draw_mute_button(button,active); +} + +void linphone_gtk_enable_mute_button(GtkToggleButton *button, gboolean sensitive){ + gtk_widget_set_sensitive(GTK_WIDGET(button),sensitive); + linphone_gtk_draw_mute_button(button,FALSE); } diff --git a/linphone/gtk-glade/linphone.h b/linphone/gtk-glade/linphone.h index 6b1f5b9027..83e4c1da6d 100644 --- a/linphone/gtk-glade/linphone.h +++ b/linphone/gtk-glade/linphone.h @@ -42,6 +42,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. GdkPixbuf * create_pixbuf(const gchar *filename); GdkPixbufAnimation *create_pixbuf_animation(const gchar *filename); void add_pixmap_directory(const gchar *directory); +GtkWidget*create_pixmap(const gchar *filename); GtkWidget *linphone_gtk_create_window(const char *window_name); GtkWidget *linphone_gtk_get_widget(GtkWidget *window, const char *name); LinphoneCore *linphone_gtk_get_core(void); @@ -86,4 +87,7 @@ void linphone_gtk_in_call_view_set_calling(const char *uri); void linphone_gtk_in_call_view_set_in_call(void); void linphone_gtk_in_call_view_update_duration(int duration); void linphone_gtk_in_call_view_terminate(const char *error_msg); +void linphone_gtk_enable_mute_button(GtkToggleButton *button, gboolean sensitive); + void linphone_gtk_show_login_frame(LinphoneProxyConfig *cfg); + diff --git a/linphone/gtk-glade/main.c b/linphone/gtk-glade/main.c index dd84d84b40..b611c261b3 100644 --- a/linphone/gtk-glade/main.c +++ b/linphone/gtk-glade/main.c @@ -521,6 +521,7 @@ void linphone_gtk_call_terminated(const char *error){ gtk_widget_set_sensitive(linphone_gtk_get_widget(mw,"terminate_call"),FALSE); gtk_widget_set_sensitive(linphone_gtk_get_widget(mw,"start_call"),TRUE); gtk_widget_hide_all(linphone_gtk_get_widget(mw,"go_to_call_view_box")); + linphone_gtk_enable_mute_button(GTK_TOGGLE_BUTTON(linphone_gtk_get_widget(mw,"main_mute")),FALSE); if (linphone_gtk_use_in_call_view()) linphone_gtk_in_call_view_terminate(error); update_video_title(); @@ -603,6 +604,9 @@ void linphone_gtk_accept_call(GtkWidget *button){ linphone_gtk_in_call_view_set_in_call(); linphone_gtk_show_in_call_view(); } + linphone_gtk_enable_mute_button( + GTK_TOGGLE_BUTTON(linphone_gtk_get_widget(linphone_gtk_get_main_window(),"main_mute")) + ,TRUE); } static gboolean linphone_gtk_auto_answer(GtkWidget *incall_window){ @@ -810,6 +814,9 @@ static void linphone_gtk_general_state(LinphoneCore *lc, LinphoneGeneralState *g case GSTATE_CALL_IN_CONNECTED: if (linphone_gtk_use_in_call_view()) linphone_gtk_in_call_view_set_in_call(); + linphone_gtk_enable_mute_button( + GTK_TOGGLE_BUTTON(linphone_gtk_get_widget(linphone_gtk_get_main_window(),"main_mute")), + TRUE); break; case GSTATE_CALL_ERROR: linphone_gtk_call_terminated(gstate->message); @@ -1025,6 +1032,10 @@ static void linphone_gtk_init_main_window(){ linphone_gtk_show_friends(); linphone_gtk_connect_digits(); linphone_gtk_check_menu_items(); + linphone_gtk_enable_mute_button(GTK_TOGGLE_BUTTON(linphone_gtk_get_widget(linphone_gtk_get_main_window(), + "main_mute")),FALSE); + linphone_gtk_enable_mute_button(GTK_TOGGLE_BUTTON(linphone_gtk_get_widget(linphone_gtk_get_main_window(), + "incall_mute")),FALSE); if (linphone_core_in_call(linphone_gtk_get_core())) linphone_gtk_call_started( linphone_gtk_get_main_window());/*hide the call button, show terminate button*/ } diff --git a/linphone/gtk-glade/main.glade b/linphone/gtk-glade/main.glade index a1e1987642..bdc48f3055 100644 --- a/linphone/gtk-glade/main.glade +++ b/linphone/gtk-glade/main.glade @@ -514,14 +514,24 @@ Online users</property> </packing> </child> <child> - <widget class="GtkCheckButton" id="main_mute"> - <property name="label" translatable="yes">Mute</property> - <property name="can_focus">True</property> - <property name="receives_default">False</property> - <property name="draw_indicator">True</property> - <signal name="toggled" handler="linphone_gtk_mute_toggled"/> + <widget class="GtkHBox" id="hbox7"> + <property name="visible">True</property> + <child> + <widget class="GtkToggleButton" id="main_mute"> + <property name="label" translatable="yes">Mute</property> + <property name="sensitive">False</property> + <property name="can_focus">True</property> + <property name="receives_default">True</property> + </widget> + <packing> + <property name="fill">False</property> + <property name="position">0</property> + </packing> + </child> </widget> <packing> + <property name="expand">False</property> + <property name="fill">False</property> <property name="position">1</property> </packing> </child> @@ -1052,22 +1062,6 @@ Fiber Channel</property> <property name="position">0</property> </packing> </child> - <child> - <widget class="GtkCheckButton" id="incall_mute"> - <property name="label" translatable="yes">Mute</property> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="receives_default">False</property> - <property name="draw_indicator">True</property> - <signal name="toggled" handler="linphone_gtk_mute_toggled"/> - </widget> - <packing> - <property name="position">1</property> - </packing> - </child> - <child> - <placeholder/> - </child> </widget> </child> <child> @@ -1086,6 +1080,30 @@ Fiber Channel</property> <property name="position">2</property> </packing> </child> + <child> + <widget class="GtkHButtonBox" id="hbuttonbox4"> + <property name="visible">True</property> + <child> + <widget class="GtkToggleButton" id="incall_mute"> + <property name="label" translatable="yes">Mute</property> + <property name="visible">True</property> + <property name="sensitive">False</property> + <property name="can_focus">True</property> + <property name="receives_default">True</property> + </widget> + <packing> + <property name="expand">False</property> + <property name="fill">False</property> + <property name="position">0</property> + </packing> + </child> + </widget> + <packing> + <property name="expand">False</property> + <property name="fill">False</property> + <property name="position">3</property> + </packing> + </child> <child> <widget class="GtkHButtonBox" id="hbuttonbox1"> <property name="visible">True</property> @@ -1131,7 +1149,7 @@ Fiber Channel</property> </widget> <packing> <property name="padding">8</property> - <property name="position">3</property> + <property name="position">4</property> </packing> </child> <child> @@ -1180,7 +1198,7 @@ Fiber Channel</property> <packing> <property name="expand">False</property> <property name="fill">False</property> - <property name="position">4</property> + <property name="position">5</property> </packing> </child> </widget> diff --git a/linphone/gtk-glade/propertybox.c b/linphone/gtk-glade/propertybox.c index b2ca8f11c7..91c403fc00 100644 --- a/linphone/gtk-glade/propertybox.c +++ b/linphone/gtk-glade/propertybox.c @@ -622,7 +622,7 @@ static LangCodes supported_langs[]={ { "sv" , N_("Swedish") }, { "it" , N_("Italian") }, { "es" , N_("Spanish") }, - { "pt_BR" , N_("Bresilian") }, + { "pt_BR" , N_("Brazilian Portugese") }, { "pl" , N_("Polish") }, { "de" , N_("German") }, { "ru" , N_("Russian") }, @@ -630,7 +630,7 @@ static LangCodes supported_langs[]={ { "nl" , N_("Dutch") }, { "hu" , N_("Hungarian") }, { "cs" , N_("Czech") }, - { "zh_CN" , N_("Chineese") }, + { "zh_CN" , N_("Chinese") }, { NULL , NULL } }; diff --git a/linphone/gtk-glade/support.c b/linphone/gtk-glade/support.c index 689faf5a21..3600205a88 100644 --- a/linphone/gtk-glade/support.c +++ b/linphone/gtk-glade/support.c @@ -34,8 +34,7 @@ find_pixmap_file (const gchar *filename) /* This is an internally used function to create pixmaps. */ GtkWidget* -create_pixmap (GtkWidget *widget, - const gchar *filename) +create_pixmap (const gchar *filename) { gchar *pathname = NULL; GtkWidget *pixmap; diff --git a/linphone/linphone.kdevelop b/linphone/linphone.kdevelop index eeb6999f21..27eac22267 100644 --- a/linphone/linphone.kdevelop +++ b/linphone/linphone.kdevelop @@ -10,16 +10,16 @@ <projectname>linphone</projectname> <projectdirectory>.</projectdirectory> <absoluteprojectpath>false</absoluteprojectpath> - <description></description> - <defaultencoding></defaultencoding> + <description/> + <defaultencoding/> </general> <kdevcustomproject> <run> <directoryradio>executable</directoryradio> <mainprogram>gtk-glade/linphone-3</mainprogram> - <programargs></programargs> - <globaldebugarguments></globaldebugarguments> - <globalcwd></globalcwd> + <programargs/> + <globaldebugarguments/> + <globalcwd/> <useglobalprogram>false</useglobalprogram> <terminal>false</terminal> <autocompile>false</autocompile> @@ -391,13 +391,13 @@ </blacklist> <build> <buildtool>make</buildtool> - <builddir></builddir> + <builddir/> </build> <other> <prio>0</prio> - <otherbin></otherbin> - <defaulttarget></defaulttarget> - <otheroptions></otheroptions> + <otherbin/> + <defaulttarget/> + <otheroptions/> <selectedenvironment>default</selectedenvironment> <environments> <default/> @@ -408,9 +408,9 @@ <numberofjobs>0</numberofjobs> <prio>0</prio> <dontact>false</dontact> - <makebin></makebin> - <defaulttarget></defaulttarget> - <makeoptions></makeoptions> + <makebin/> + <defaulttarget/> + <makeoptions/> <selectedenvironment>default</selectedenvironment> <environments> <default/> @@ -419,11 +419,11 @@ </kdevcustomproject> <kdevdebugger> <general> - <dbgshell></dbgshell> - <gdbpath></gdbpath> - <configGdbScript></configGdbScript> - <runShellScript></runShellScript> - <runGdbScript></runGdbScript> + <dbgshell/> + <gdbpath/> + <configGdbScript/> + <runShellScript/> + <runGdbScript/> <breakonloadinglibs>true</breakonloadinglibs> <separatetty>false</separatetty> <floatingtoolbar>false</floatingtoolbar> @@ -526,7 +526,7 @@ <includePaths>.;</includePaths> </codecompletion> <creategettersetter> - <prefixGet></prefixGet> + <prefixGet/> <prefixSet>set</prefixSet> <prefixVariable>m_,_</prefixVariable> <parameterName>theValue</parameterName> diff --git a/linphone/po/cs.po b/linphone/po/cs.po index 9108d09303..31bbd94d6c 100644 --- a/linphone/po/cs.po +++ b/linphone/po/cs.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: linphone-3.2.0-r659\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-09-28 15:30+0200\n" +"POT-Creation-Date: 2009-09-29 11:24+0200\n" "PO-Revision-Date: 2009-09-21 21:44+0200\n" "Last-Translator: Petr Pisar <petr.pisar@atlas.cz>\n" "Language-Team: Czech <translation-team-cs@lists.sourceforge.net>\n" @@ -186,8 +186,8 @@ msgid "Spanish" msgstr "Å¡panÄ›lÅ¡tina" #: ../gtk-glade/propertybox.c:625 -msgid "Bresilian" -msgstr "brazilská portugalÅ¡tina" +msgid "Brasilian Portugese" +msgstr "" #: ../gtk-glade/propertybox.c:626 msgid "Polish" @@ -218,7 +218,7 @@ msgid "Czech" msgstr "ÄeÅ¡tina" #: ../gtk-glade/propertybox.c:633 -msgid "Chineese" +msgid "Chinese" msgstr "" #: ../gtk-glade/propertybox.c:690 @@ -1556,6 +1556,9 @@ msgstr "Parametrický ekvalizér zvuku." msgid "A webcam grabber based on directshow." msgstr "SnÃmaÄ kamer postavený na directshow." +#~ msgid "Bresilian" +#~ msgstr "brazilská portugalÅ¡tina" + #~ msgid "Homepage" #~ msgstr "Domovská stránka" diff --git a/linphone/po/de.po b/linphone/po/de.po index dc4349e679..8f53c80174 100644 --- a/linphone/po/de.po +++ b/linphone/po/de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: linphone 0.7.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-09-28 15:30+0200\n" +"POT-Creation-Date: 2009-09-29 11:24+0200\n" "PO-Revision-Date: 2003-05-23 17:51-0400\n" "Last-Translator: Jean-Jacques Sarton <jj.sarton@t-online.de>, Ursula Herles-" "Hartz <UAHartz@t-online.de>\n" @@ -178,7 +178,7 @@ msgid "Spanish" msgstr "" #: ../gtk-glade/propertybox.c:625 -msgid "Bresilian" +msgid "Brasilian Portugese" msgstr "" #: ../gtk-glade/propertybox.c:626 @@ -210,7 +210,7 @@ msgid "Czech" msgstr "" #: ../gtk-glade/propertybox.c:633 -msgid "Chineese" +msgid "Chinese" msgstr "" #: ../gtk-glade/propertybox.c:690 diff --git a/linphone/po/es.po b/linphone/po/es.po index 73e18db813..8c199ed476 100644 --- a/linphone/po/es.po +++ b/linphone/po/es.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Linphone 0.9.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-09-28 15:30+0200\n" +"POT-Creation-Date: 2009-09-29 11:24+0200\n" "PO-Revision-Date: 2002-10-15 HO:MI+ZONE\n" "Last-Translator: Nelson Benitez <gnelson@inMail.sk>\n" "Language-Team: es <es@li.org>\n" @@ -179,7 +179,7 @@ msgid "Spanish" msgstr "" #: ../gtk-glade/propertybox.c:625 -msgid "Bresilian" +msgid "Brasilian Portugese" msgstr "" #: ../gtk-glade/propertybox.c:626 @@ -211,7 +211,7 @@ msgid "Czech" msgstr "" #: ../gtk-glade/propertybox.c:633 -msgid "Chineese" +msgid "Chinese" msgstr "" #: ../gtk-glade/propertybox.c:690 diff --git a/linphone/po/fr.po b/linphone/po/fr.po index 774491692f..1f05e1092c 100644 --- a/linphone/po/fr.po +++ b/linphone/po/fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Linphone 0.9.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-09-28 15:30+0200\n" +"POT-Creation-Date: 2009-09-29 11:24+0200\n" "PO-Revision-Date: 2002-12-06 17:33+0100\n" "Last-Translator: Simon Morlat <simon.morlat@linphone.org>\n" "Language-Team: french <fr@li.org>\n" @@ -177,7 +177,7 @@ msgid "Spanish" msgstr "" #: ../gtk-glade/propertybox.c:625 -msgid "Bresilian" +msgid "Brasilian Portugese" msgstr "" #: ../gtk-glade/propertybox.c:626 @@ -194,7 +194,7 @@ msgstr "" #: ../gtk-glade/propertybox.c:629 msgid "Japanese" -msgstr "" +msgstr "日本語" #: ../gtk-glade/propertybox.c:630 msgid "Dutch" @@ -209,8 +209,8 @@ msgid "Czech" msgstr "" #: ../gtk-glade/propertybox.c:633 -msgid "Chineese" -msgstr "" +msgid "Chinese" +msgstr "简体ä¸æ–‡" #: ../gtk-glade/propertybox.c:690 msgid "" diff --git a/linphone/po/hu.po b/linphone/po/hu.po index 8833a45c75..65b7d6f45b 100644 --- a/linphone/po/hu.po +++ b/linphone/po/hu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-09-28 15:30+0200\n" +"POT-Creation-Date: 2009-09-29 11:24+0200\n" "PO-Revision-Date: 2007-12-14 11:12+0100\n" "Last-Translator: \n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -178,7 +178,7 @@ msgid "Spanish" msgstr "" #: ../gtk-glade/propertybox.c:625 -msgid "Bresilian" +msgid "Brasilian Portugese" msgstr "" #: ../gtk-glade/propertybox.c:626 @@ -210,7 +210,7 @@ msgid "Czech" msgstr "" #: ../gtk-glade/propertybox.c:633 -msgid "Chineese" +msgid "Chinese" msgstr "" #: ../gtk-glade/propertybox.c:690 diff --git a/linphone/po/it.po b/linphone/po/it.po index 95c8d7be8d..ce81177a68 100644 --- a/linphone/po/it.po +++ b/linphone/po/it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Linphone 3.2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-09-28 15:30+0200\n" +"POT-Creation-Date: 2009-09-29 11:24+0200\n" "PO-Revision-Date: 2002-10-15 HO:MI+ZONE\n" "Last-Translator: Matteo Piazza <matteo.piazza@trentinonetwork.it>\n" "Language-Team: it <it@li.org>\n" @@ -180,8 +180,8 @@ msgid "Spanish" msgstr "Spagnolo" #: ../gtk-glade/propertybox.c:625 -msgid "Bresilian" -msgstr "Brasiliano" +msgid "Brasilian Portugese" +msgstr "" #: ../gtk-glade/propertybox.c:626 msgid "Polish" @@ -212,7 +212,7 @@ msgid "Czech" msgstr "Ceco" #: ../gtk-glade/propertybox.c:633 -msgid "Chineese" +msgid "Chinese" msgstr "" #: ../gtk-glade/propertybox.c:690 @@ -1528,3 +1528,6 @@ msgstr "Equalizzatore di suono." #: ../mediastreamer2/src/msdscap-mingw.cc:1003 msgid "A webcam grabber based on directshow." msgstr "Un webcam grabber basato su directshow." + +#~ msgid "Bresilian" +#~ msgstr "Brasiliano" diff --git a/linphone/po/ja.po b/linphone/po/ja.po index 79a8c03d71..f917f3cf5a 100644 --- a/linphone/po/ja.po +++ b/linphone/po/ja.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: linphone 0.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-09-28 15:30+0200\n" +"POT-Creation-Date: 2009-09-29 11:24+0200\n" "PO-Revision-Date: 2003-01-21 00:05+9000\n" "Last-Translator: YAMAGUCHI YOSHIYA <yushiya@anet.ne.jp>\n" "Language-Team: <ja@li.org>\n" @@ -165,7 +165,7 @@ msgstr "" #: ../gtk-glade/propertybox.c:621 msgid "French" -msgstr "" +msgstr "Français" #: ../gtk-glade/propertybox.c:622 msgid "Swedish" @@ -180,7 +180,7 @@ msgid "Spanish" msgstr "" #: ../gtk-glade/propertybox.c:625 -msgid "Bresilian" +msgid "Brasilian Portugese" msgstr "" #: ../gtk-glade/propertybox.c:626 @@ -197,7 +197,7 @@ msgstr "" #: ../gtk-glade/propertybox.c:629 msgid "Japanese" -msgstr "" +msgstr "日本語" #: ../gtk-glade/propertybox.c:630 msgid "Dutch" @@ -205,15 +205,15 @@ msgstr "" #: ../gtk-glade/propertybox.c:631 msgid "Hungarian" -msgstr "" +msgstr "Magyar" #: ../gtk-glade/propertybox.c:632 msgid "Czech" -msgstr "" +msgstr "ÄeÅ¡tina" #: ../gtk-glade/propertybox.c:633 -msgid "Chineese" -msgstr "" +msgid "Chinese" +msgstr "简体ä¸æ–‡" #: ../gtk-glade/propertybox.c:690 msgid "" diff --git a/linphone/po/nl.po b/linphone/po/nl.po index d4806c37e0..642b0be38e 100644 --- a/linphone/po/nl.po +++ b/linphone/po/nl.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: nl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-09-28 15:30+0200\n" +"POT-Creation-Date: 2009-09-29 11:24+0200\n" "PO-Revision-Date: 2007-09-05 10:40+0200\n" "Last-Translator: Hendrik-Jan Heins <hjheins@gmail.com>\n" "Language-Team: Nederlands <vertaling@nl.linux.org>\n" @@ -181,7 +181,7 @@ msgid "Spanish" msgstr "" #: ../gtk-glade/propertybox.c:625 -msgid "Bresilian" +msgid "Brasilian Portugese" msgstr "" #: ../gtk-glade/propertybox.c:626 @@ -213,7 +213,7 @@ msgid "Czech" msgstr "" #: ../gtk-glade/propertybox.c:633 -msgid "Chineese" +msgid "Chinese" msgstr "" #: ../gtk-glade/propertybox.c:690 diff --git a/linphone/po/pl.po b/linphone/po/pl.po index 2896aef1b0..126f51cdac 100644 --- a/linphone/po/pl.po +++ b/linphone/po/pl.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: linphone 0.7.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-09-28 15:30+0200\n" +"POT-Creation-Date: 2009-09-29 11:24+0200\n" "PO-Revision-Date: 2003-08-22 12:50+0200\n" "Last-Translator: Robert Nasiadek <darkone@darkone.pl>\n" "Language-Team: Polski <pl@li.org>\n" @@ -178,7 +178,7 @@ msgid "Spanish" msgstr "" #: ../gtk-glade/propertybox.c:625 -msgid "Bresilian" +msgid "Brasilian Portugese" msgstr "" #: ../gtk-glade/propertybox.c:626 @@ -210,7 +210,7 @@ msgid "Czech" msgstr "" #: ../gtk-glade/propertybox.c:633 -msgid "Chineese" +msgid "Chinese" msgstr "" #: ../gtk-glade/propertybox.c:690 diff --git a/linphone/po/pt_BR.po b/linphone/po/pt_BR.po index b8c2b37524..1dc7271a73 100644 --- a/linphone/po/pt_BR.po +++ b/linphone/po/pt_BR.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: linphone-1.1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-09-28 15:30+0200\n" +"POT-Creation-Date: 2009-09-29 11:24+0200\n" "PO-Revision-Date: 2006-07-11 23:30+0200\n" "Last-Translator: Rafael Caesar Lenzi <rc_lenzi@yahoo.com.br>\n" "Language-Team: pt_BR <pt_BR@li.org>\n" @@ -180,7 +180,7 @@ msgid "Spanish" msgstr "" #: ../gtk-glade/propertybox.c:625 -msgid "Bresilian" +msgid "Brasilian Portugese" msgstr "" #: ../gtk-glade/propertybox.c:626 @@ -212,7 +212,7 @@ msgid "Czech" msgstr "" #: ../gtk-glade/propertybox.c:633 -msgid "Chineese" +msgid "Chinese" msgstr "" #: ../gtk-glade/propertybox.c:690 diff --git a/linphone/po/ru.po b/linphone/po/ru.po index bd03c30621..b0e3621734 100644 --- a/linphone/po/ru.po +++ b/linphone/po/ru.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: linphone 0.7.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-09-28 15:30+0200\n" +"POT-Creation-Date: 2009-09-29 11:24+0200\n" "PO-Revision-Date: 2008-11-25 18:39+0300\n" "Last-Translator: Grigory Fateyev <greg@dial.com.ru>\n" "Language-Team: Russian <greg@dial.com.ru>\n" @@ -181,7 +181,7 @@ msgid "Spanish" msgstr "" #: ../gtk-glade/propertybox.c:625 -msgid "Bresilian" +msgid "Brasilian Portugese" msgstr "" #: ../gtk-glade/propertybox.c:626 @@ -213,7 +213,7 @@ msgid "Czech" msgstr "" #: ../gtk-glade/propertybox.c:633 -msgid "Chineese" +msgid "Chinese" msgstr "" #: ../gtk-glade/propertybox.c:690 diff --git a/linphone/po/sv.po b/linphone/po/sv.po index 103315993b..cfe43d28e7 100644 --- a/linphone/po/sv.po +++ b/linphone/po/sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-09-28 15:30+0200\n" +"POT-Creation-Date: 2009-09-29 11:24+0200\n" "PO-Revision-Date: 2009-02-17 15:22+0100\n" "Last-Translator: Emmanuel Frécon <emmanuel.frecon@myjoice.com>\n" "Language-Team: SWEDISH <SE@li.org>\n" @@ -71,7 +71,9 @@ msgstr "" msgid "" "Please enter your password for username <i>%s</i>\n" " at domain <i>%s</i>:" -msgstr "Mata in ditt lösenord för användaren <i>%s</i>\nvid domänen <i>%s</i>:" +msgstr "" +"Mata in ditt lösenord för användaren <i>%s</i>\n" +"vid domänen <i>%s</i>:" #: ../gtk-glade/main.c:855 msgid "Website link" @@ -182,8 +184,8 @@ msgid "Spanish" msgstr "Spansk" #: ../gtk-glade/propertybox.c:625 -msgid "Bresilian" -msgstr "Brasiliansk" +msgid "Brasilian Portugese" +msgstr "" #: ../gtk-glade/propertybox.c:626 msgid "Polish" @@ -214,7 +216,8 @@ msgid "Czech" msgstr "Tjekiska" #: ../gtk-glade/propertybox.c:633 -msgid "Chineese" +#, fuzzy +msgid "Chinese" msgstr "Kinesiska" #: ../gtk-glade/propertybox.c:690 @@ -432,7 +435,9 @@ msgstr "" msgid "" "ADSL\n" "Fiber Channel" -msgstr "ADSL\nFiber" +msgstr "" +"ADSL\n" +"Fiber" #: ../gtk-glade/main.glade.h:19 msgid "" @@ -1284,13 +1289,17 @@ msgstr "" msgid "" "The sip proxy address you entered is invalid, it must start with \"sip:\" " "followed by a hostname." -msgstr "SIP proxy adressen som du matade in är inte rätt, adressen mÃ¥ste starta med \"sip:\", följd av ett hostnamn" +msgstr "" +"SIP proxy adressen som du matade in är inte rätt, adressen mÃ¥ste starta med " +"\"sip:\", följd av ett hostnamn" #: ../coreapi/proxy.c:227 msgid "" "The sip identity you entered is invalid.\n" "It should look like sip:username@proxydomain, such as sip:alice@example.net" -msgstr "SIP adressen som du matade in är inte rätt. Adressen borde se ut som sip:namn@domän, sÃ¥som sip:peter@exempel.se" +msgstr "" +"SIP adressen som du matade in är inte rätt. Adressen borde se ut som sip:" +"namn@domän, sÃ¥som sip:peter@exempel.se" #: ../coreapi/proxy.c:634 #, c-format @@ -1533,6 +1542,9 @@ msgstr "" msgid "A webcam grabber based on directshow." msgstr "" +#~ msgid "Bresilian" +#~ msgstr "Brasiliansk" + #~ msgid "Homepage" #~ msgstr "Hemsidan" diff --git a/linphone/po/zh_CN.po b/linphone/po/zh_CN.po index 6e76d5774c..834db5be19 100644 --- a/linphone/po/zh_CN.po +++ b/linphone/po/zh_CN.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: linphone 0.7.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-09-28 15:30+0200\n" +"POT-Creation-Date: 2009-09-29 11:24+0200\n" "PO-Revision-Date: 2009-09-24 18:39+0300\n" "Last-Translator: Jiang Honglei<jhonglei@gmail.com>\n" "Language-Team: Jiang Honglei<jhonglei@gmail.com>\n" @@ -165,7 +165,7 @@ msgstr "" #: ../gtk-glade/propertybox.c:621 msgid "French" -msgstr "" +msgstr "Français" #: ../gtk-glade/propertybox.c:622 msgid "Swedish" @@ -180,7 +180,7 @@ msgid "Spanish" msgstr "" #: ../gtk-glade/propertybox.c:625 -msgid "Bresilian" +msgid "Brasilian Portugese" msgstr "" #: ../gtk-glade/propertybox.c:626 @@ -193,27 +193,26 @@ msgstr "" #: ../gtk-glade/propertybox.c:628 msgid "Russian" -msgstr "" +msgstr "руÑÑкий Ñзык" #: ../gtk-glade/propertybox.c:629 msgid "Japanese" -msgstr "" +msgstr "日本語" #: ../gtk-glade/propertybox.c:630 msgid "Dutch" -msgstr "" +msgstr "Nederlands" #: ../gtk-glade/propertybox.c:631 msgid "Hungarian" -msgstr "" +msgstr "Magyar" #: ../gtk-glade/propertybox.c:632 msgid "Czech" -msgstr "" +msgstr "ÄeÅ¡tina" #: ../gtk-glade/propertybox.c:633 -#, fuzzy -msgid "Chineese" +msgid "Chinese" msgstr "简体ä¸æ–‡" #: ../gtk-glade/propertybox.c:690 -- GitLab