From 10c057eae4615cd3faa61ce9fe6a4458ebcf48f2 Mon Sep 17 00:00:00 2001 From: Gautier Pelloux-Prayer Date: Mon, 1 Dec 2014 17:12:59 +0100 Subject: [PATCH 001/187] Make translatable some GUI text --- coreapi/call_log.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coreapi/call_log.c b/coreapi/call_log.c index 7ce488096..1449c1920 100644 --- a/coreapi/call_log.c +++ b/coreapi/call_log.c @@ -215,7 +215,7 @@ char * linphone_call_log_to_str(LinphoneCallLog *cl){ status=_("missed"); break; default: - status="unknown"; + status=_("unknown"); } tmp=ortp_strdup_printf(_("%s at %s\nFrom: %s\nTo: %s\nStatus: %s\nDuration: %i mn %i sec\n"), (cl->dir==LinphoneCallIncoming) ? _("Incoming call") : _("Outgoing call"), From b9b8166ad8aa6ee6b697ff266c7a6ee6f50b4876 Mon Sep 17 00:00:00 2001 From: Simon Morlat Date: Tue, 2 Dec 2014 11:16:00 +0100 Subject: [PATCH 002/187] fix tester, update oRTP for bugfixes --- oRTP | 2 +- tester/rcfiles/pauline_alt_rc | 2 ++ tester/rcfiles/pauline_wild_rc | 2 ++ tester/register_tester.c | 2 +- 4 files changed, 6 insertions(+), 2 deletions(-) diff --git a/oRTP b/oRTP index a3debbd39..93607074c 160000 --- a/oRTP +++ b/oRTP @@ -1 +1 @@ -Subproject commit a3debbd394fb32ab54ed265d2190711971c890e7 +Subproject commit 93607074c723d6d5181e48d6d7989b1c39b9bb8b diff --git a/tester/rcfiles/pauline_alt_rc b/tester/rcfiles/pauline_alt_rc index 7c1fe55ac..c8e730729 100644 --- a/tester/rcfiles/pauline_alt_rc +++ b/tester/rcfiles/pauline_alt_rc @@ -1,4 +1,6 @@ [sip] +sip_port=-1 +sip_tcp_port=-1 sip_tls_port=-1 default_proxy=0 register_only_when_network_is_up=0 diff --git a/tester/rcfiles/pauline_wild_rc b/tester/rcfiles/pauline_wild_rc index d828c807d..1d0d9b164 100644 --- a/tester/rcfiles/pauline_wild_rc +++ b/tester/rcfiles/pauline_wild_rc @@ -1,4 +1,6 @@ [sip] +sip_port=-1 +sip_tcp_port=-1 sip_tls_port=-1 default_proxy=0 register_only_when_network_is_up=0 diff --git a/tester/register_tester.c b/tester/register_tester.c index 907a10db7..fc778d865 100644 --- a/tester/register_tester.c +++ b/tester/register_tester.c @@ -781,7 +781,7 @@ static void tls_alt_name_register(){ linphone_core_refresh_registers(mgr->lc); CU_ASSERT_TRUE(wait_for(lc,lc,&mgr->stat.number_of_LinphoneRegistrationOk,1)); CU_ASSERT_EQUAL(mgr->stat.number_of_LinphoneRegistrationFailed,0); - linphone_core_destroy(mgr->lc); + linphone_core_manager_destroy(mgr); } static void tls_wildcard_register(){ From f8d7cdfdada17094c8eac9ee529f56d8b2ee1196 Mon Sep 17 00:00:00 2001 From: Simon Morlat Date: Tue, 2 Dec 2014 11:27:43 +0100 Subject: [PATCH 003/187] fix problem when port is set to a TLS port only --- tester/accountmanager.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tester/accountmanager.c b/tester/accountmanager.c index c0fc054cc..3d6875453 100644 --- a/tester/accountmanager.c +++ b/tester/accountmanager.c @@ -133,6 +133,7 @@ void account_create_on_server(Account *account, const LinphoneProxyConfig *refcf server_addr=linphone_address_new(linphone_proxy_config_get_server_addr(refcfg)); linphone_address_set_transport(server_addr,LinphoneTransportTcp); /*use tcp for account creation*/ + linphone_address_set_port(server_addr,0); tmp=linphone_address_as_string(server_addr); linphone_proxy_config_set_server_addr(cfg,tmp); ms_free(tmp); From d8ce5b8904f5bec4f02dc2ad172e9bfa7a53464a Mon Sep 17 00:00:00 2001 From: Jehan Monnier Date: Tue, 2 Dec 2014 12:11:55 +0100 Subject: [PATCH 004/187] fix crash when tunnel mode is compiled but disabled --- coreapi/bellesip_sal/sal_op_impl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coreapi/bellesip_sal/sal_op_impl.c b/coreapi/bellesip_sal/sal_op_impl.c index 1f734719f..2e68146a0 100644 --- a/coreapi/bellesip_sal/sal_op_impl.c +++ b/coreapi/bellesip_sal/sal_op_impl.c @@ -313,7 +313,7 @@ static int _sal_op_send_request_with_contact(SalOp* op, belle_sip_request_t* req } }else{ #ifdef TUNNEL_ENABLED - if (BELLE_SIP_OBJECT_IS_INSTANCE_OF(udplp,belle_sip_tunnel_listening_point_t)){ + if (udplp && BELLE_SIP_OBJECT_IS_INSTANCE_OF(udplp,belle_sip_tunnel_listening_point_t)){ /* our tunnel mode only supports UDP. Force transport to be set to UDP */ belle_sip_uri_set_transport_param(next_hop_uri,"udp"); } From 44665fe88a1a22a0fb39a27c2d5a35f8ff2df7b1 Mon Sep 17 00:00:00 2001 From: Sylvain Berfini Date: Tue, 2 Dec 2014 12:42:57 +0100 Subject: [PATCH 005/187] Added implem of remove_listener in jni layer, fixing crash occuring on second call --- coreapi/linphonecore_jni.cc | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/coreapi/linphonecore_jni.cc b/coreapi/linphonecore_jni.cc index 83d28ef8c..42d22a0e1 100644 --- a/coreapi/linphonecore_jni.cc +++ b/coreapi/linphonecore_jni.cc @@ -1032,7 +1032,21 @@ extern "C" void Java_org_linphone_core_LinphoneCoreImpl_addListener(JNIEnv* env, } extern "C" void Java_org_linphone_core_LinphoneCoreImpl_removeListener(JNIEnv* env, jobject thiz, jlong lc, jobject jlistener) { - //TODO + MSList* iterator; + LinphoneCore *core = (LinphoneCore*)lc; + jobject listener = env->NewGlobalRef(jlistener); + for (iterator = core->vtables; iterator != NULL; iterator = iterator->next) { + LinphoneCoreVTable *vTable = (LinphoneCoreVTable*)(iterator->data); + if (vTable) { + LinphoneCoreData *data = (LinphoneCoreData*) linphone_core_v_table_get_user_data(vTable); + if (data && env->IsSameObject(data->listener, listener)) { + linphone_core_remove_listener(core, vTable); + linphone_core_v_table_destroy(vTable); + break; + } + } + } + env->DeleteGlobalRef(listener); } extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_migrateToMultiTransport(JNIEnv* env From d0966f027f2462632c8590e5471616225a564d2d Mon Sep 17 00:00:00 2001 From: Sylvain Berfini Date: Tue, 2 Dec 2014 13:40:42 +0100 Subject: [PATCH 006/187] Fix android tester build --- build/android/liblinphone_tester.mk | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build/android/liblinphone_tester.mk b/build/android/liblinphone_tester.mk index 430f203be..ee2018621 100644 --- a/build/android/liblinphone_tester.mk +++ b/build/android/liblinphone_tester.mk @@ -17,7 +17,8 @@ common_SRC_FILES := \ log_collection_tester.c \ transport_tester.c \ player_tester.c \ - dtmf_tester.c + dtmf_tester.c \ + accountmanager.c common_C_INCLUDES += \ $(LOCAL_PATH) \ From 7ce476ffb084ea6e110fd27f6033e932518234e9 Mon Sep 17 00:00:00 2001 From: Jehan Monnier Date: Tue, 2 Dec 2014 15:17:26 +0100 Subject: [PATCH 007/187] fix memory leak in case Message tests are passed in sequence --- tester/message_tester.c | 1 + tester/tester.c | 1 + 2 files changed, 2 insertions(+) diff --git a/tester/message_tester.c b/tester/message_tester.c index a44973227..784acb49b 100644 --- a/tester/message_tester.c +++ b/tester/message_tester.c @@ -358,6 +358,7 @@ static void text_message_with_ack(void) { CU_ASSERT_TRUE(wait_for(pauline->lc,marie->lc,&marie->stat.number_of_LinphoneMessageReceived,1)); CU_ASSERT_TRUE(wait_for(pauline->lc,marie->lc,&pauline->stat.number_of_LinphoneMessageDelivered,1)); CU_ASSERT_EQUAL(pauline->stat.number_of_LinphoneMessageInProgress,1); + linphone_core_manager_destroy(marie); linphone_core_manager_destroy(pauline); } diff --git a/tester/tester.c b/tester/tester.c index 98186c134..b705a8912 100644 --- a/tester/tester.c +++ b/tester/tester.c @@ -103,6 +103,7 @@ static void auth_info_requested(LinphoneCore *lc, const char *realm, const char void reset_counters( stats* counters) { + if (counters->last_received_chat_message) linphone_chat_message_unref(counters->last_received_chat_message); memset(counters,0,sizeof(stats)); } From 02ed5338ed1f7cbbd4a1d5d3d49a02ab01ea9273 Mon Sep 17 00:00:00 2001 From: Ghislain MARY Date: Tue, 2 Dec 2014 16:02:19 +0100 Subject: [PATCH 008/187] Handle translations when building with CMake. --- CMakeLists.txt | 4 +++- gtk/CMakeLists.txt | 4 ++++ po/CMakeLists.txt | 33 +++++++++++++++++++++++++++++++++ 3 files changed, 40 insertions(+), 1 deletion(-) create mode 100644 po/CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt index ac04dc879..85a86bf42 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -95,6 +95,7 @@ if(ENABLE_NOTIFY) set(ENABLE_NOTIFY OFF CACHE BOOL "Enable libnotify support." FORCE) endif() endif() +find_package(Gettext) include_directories( @@ -114,7 +115,7 @@ if(MSVC) include_directories(${CMAKE_PREFIX_PATH}/include/MSVC) endif() -add_definitions(-DIN_LINPHONE) +add_definitions("-DIN_LINPHONE") if(MSVC) @@ -163,6 +164,7 @@ add_subdirectory(share) if(ENABLE_GTK_UI) add_subdirectory(gtk) add_subdirectory(pixmaps) + add_subdirectory(po) endif() if(ENABLE_TOOLS) add_subdirectory(tools) diff --git a/gtk/CMakeLists.txt b/gtk/CMakeLists.txt index e5d66561b..89d5805a6 100644 --- a/gtk/CMakeLists.txt +++ b/gtk/CMakeLists.txt @@ -65,6 +65,10 @@ set(SOURCE_FILES videowindow.c ) +if(GETTEXT_FOUND) + add_definitions("-DENABLE_NLS") +endif() + add_executable(linphone-gtk ${SOURCE_FILES}) set_target_properties(linphone-gtk PROPERTIES OUTPUT_NAME linphone) target_include_directories(linphone-gtk PUBLIC ${GTK2_INCLUDE_DIRS}) diff --git a/po/CMakeLists.txt b/po/CMakeLists.txt new file mode 100644 index 000000000..7c39caac6 --- /dev/null +++ b/po/CMakeLists.txt @@ -0,0 +1,33 @@ +############################################################################ +# CMakeLists.txt +# Copyright (C) 2014 Belledonne Communications, Grenoble France +# +############################################################################ +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +############################################################################ + +if(GETTEXT_FOUND) + string(REPLACE " " ";" LANGUAGES ${LINPHONE_ALL_LANGS}) + foreach(language ${LANGUAGES}) + GETTEXT_PROCESS_PO_FILES(${language} ALL PO_FILES ${language}.po) + install(FILES ${CMAKE_CURRENT_BINARY_DIR}/${language}.gmo + DESTINATION ${PACKAGE_LOCALE_DIR}/${language}/LC_MESSAGES + RENAME linphone.mo + PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ + ) + endforeach() +endif() From 399e6767071863816625cf19c346bb021025ff92 Mon Sep 17 00:00:00 2001 From: Simon Morlat Date: Wed, 3 Dec 2014 10:28:15 +0100 Subject: [PATCH 009/187] update ms2 --- mediastreamer2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mediastreamer2 b/mediastreamer2 index 06a14487a..22374b292 160000 --- a/mediastreamer2 +++ b/mediastreamer2 @@ -1 +1 @@ -Subproject commit 06a14487aa5acc0e3f0d4931c9a974762829d7bd +Subproject commit 22374b2929edfc2a6e18a6101f179f27a49a7be0 From b58f23ecefe22c8c4cfa2d5b2a69411fd3448201 Mon Sep 17 00:00:00 2001 From: Sylvain Berfini Date: Wed, 3 Dec 2014 10:35:10 +0100 Subject: [PATCH 010/187] Fix tester by adding prefix for files in accountmanager --- tester/accountmanager.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tester/accountmanager.c b/tester/accountmanager.c index 3d6875453..a3086f9cf 100644 --- a/tester/accountmanager.c +++ b/tester/accountmanager.c @@ -121,7 +121,7 @@ void account_create_on_server(Account *account, const LinphoneProxyConfig *refcf vtable.registration_state_changed=account_created_on_server_cb; vtable.auth_info_requested=account_created_auth_requested_cb; - lc=configure_lc_from(&vtable,NULL,NULL,account); + lc=configure_lc_from(&vtable,liblinphone_tester_file_prefix,NULL,account); cfg=linphone_core_create_proxy_config(lc); linphone_address_set_password(tmp_identity,account->password); From b8e643f7b15e611c08be5e0aa6f126b6ec3bd3e1 Mon Sep 17 00:00:00 2001 From: Guillaume BIENKOWSKI Date: Wed, 3 Dec 2014 12:29:03 +0100 Subject: [PATCH 011/187] Fix reinvite in case of redirection: we should use the linphone_core_restart_invite function, which correctly handles the streams close/reopen --- coreapi/callbacks.c | 7 +++++-- tester/call_tester.c | 4 +++- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/coreapi/callbacks.c b/coreapi/callbacks.c index 0cc5bf6fa..c43c84479 100644 --- a/coreapi/callbacks.c +++ b/coreapi/callbacks.c @@ -772,8 +772,11 @@ static void call_failure(SalOp *op){ char* url = linphone_address_as_string(redirection_to); ms_warning("Redirecting call [%p] to %s",call, url); ms_free(url); - linphone_call_create_op(call); - linphone_core_start_invite(lc, call, redirection_to); + if( call->log->to != NULL ) { + linphone_address_unref(call->log->to); + } + call->log->to = linphone_address_ref(redirection_to); + linphone_core_restart_invite(lc, call); return; } } diff --git a/tester/call_tester.c b/tester/call_tester.c index 453c684ad..4e8a323c3 100644 --- a/tester/call_tester.c +++ b/tester/call_tester.c @@ -1820,6 +1820,7 @@ static void call_waiting_indication_with_param(bool_t enable_caller_privacy) { /*use playfile for callee to avoid locking on capture card*/ linphone_core_use_files (laure->lc,TRUE); + linphone_core_use_files (marie->lc,TRUE); snprintf(hellopath,sizeof(hellopath), "%s/sounds/hello8000.wav", liblinphone_tester_file_prefix); linphone_core_set_play_file(laure->lc,hellopath); if (enable_caller_privacy) @@ -1844,7 +1845,8 @@ static void call_waiting_indication_with_param(bool_t enable_caller_privacy) { LinphoneCall *call=(LinphoneCall *)iterator->data; if (call != pauline_called_by_marie) { /*fine, this is the call waiting*/ - linphone_core_accept_call(pauline->lc,pauline_called_by_laure=call); + pauline_called_by_laure=call; + linphone_core_accept_call(pauline->lc,pauline_called_by_laure); } } From 601de8ed364b3686d42add71dc2c5ee9be99e821 Mon Sep 17 00:00:00 2001 From: Simon Morlat Date: Wed, 3 Dec 2014 12:36:47 +0100 Subject: [PATCH 012/187] update ms2 --- mediastreamer2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mediastreamer2 b/mediastreamer2 index 22374b292..19cd01c94 160000 --- a/mediastreamer2 +++ b/mediastreamer2 @@ -1 +1 @@ -Subproject commit 22374b2929edfc2a6e18a6101f179f27a49a7be0 +Subproject commit 19cd01c941af61b791636ac941f75787884c2e6f From a8f774a24b5bdde76ec4462938c4ee8349ad1c94 Mon Sep 17 00:00:00 2001 From: Gautier Pelloux-Prayer Date: Wed, 3 Dec 2014 12:44:37 +0100 Subject: [PATCH 013/187] Add some missing translations --- gtk/audio_assistant.c | 16 +++++------ gtk/propertybox.c | 6 ++-- po/ar.po | 18 ++++++------ po/cs.po | 48 ++++++++++++++++++++++++------- po/de.po | 49 +++++++++++++++++++++++++------- po/es.po | 48 ++++++++++++++++++++++++------- po/fr.po | 51 +++++++++++++++++++++++++-------- po/he.po | 49 +++++++++++++++++++++++++------- po/hu.po | 48 ++++++++++++++++++++++++------- po/it.po | 48 ++++++++++++++++++++++++------- po/ja.po | 60 ++++++++++++++++++++++++++++----------- po/nb_NO.po | 48 ++++++++++++++++++++++++------- po/nl.po | 48 ++++++++++++++++++++++++------- po/pl.po | 48 ++++++++++++++++++++++++------- po/pt_BR.po | 48 ++++++++++++++++++++++++------- po/ru.po | 49 +++++++++++++++++++++++++------- po/sr.po | 66 ++++++++++++++++++++++++++++++++----------- po/sv.po | 48 ++++++++++++++++++++++++------- po/zh_CN.po | 48 ++++++++++++++++++++++++------- po/zh_TW.po | 48 ++++++++++++++++++++++++------- 20 files changed, 689 insertions(+), 203 deletions(-) diff --git a/gtk/audio_assistant.c b/gtk/audio_assistant.c index 7d50fedc2..ad5d95ea4 100644 --- a/gtk/audio_assistant.c +++ b/gtk/audio_assistant.c @@ -180,7 +180,7 @@ static void calibration_finished(LinphoneCore *lc, LinphoneEcCalibratorStatus st GTK_DIALOG_DESTROY_WITH_PARENT, GTK_MESSAGE_QUESTION, GTK_BUTTONS_YES_NO, - "%s","Did you hear three beeps ?"); + "%s",_("Did you hear three beeps ?")); g_signal_connect(G_OBJECT (dialog), "response", G_CALLBACK (dialog_click),speaker_page); @@ -289,12 +289,12 @@ static void open_mixer(){ #ifdef WIN32 if(!g_spawn_command_line_async("control mmsys.cpl",&error)){ - display_popup(GTK_MESSAGE_WARNING,"Sound preferences not found "); + display_popup(GTK_MESSAGE_WARNING,_("Sound preferences not found ")); g_error_free(error); } #elif __APPLE__ if(!g_spawn_command_line_async("open /System/Library/PreferencePanes/Sound.prefPane",&error)){ - display_popup(GTK_MESSAGE_WARNING,"Sound preferences not found "); + display_popup(GTK_MESSAGE_WARNING,_("Sound preferences not found ")); g_error_free(error); } #else @@ -303,7 +303,7 @@ static void open_mixer(){ if(!g_spawn_command_line_async("kmix",&error)){ if(!g_spawn_command_line_async("mate-volume-control",&error)){ if(!g_spawn_command_line_async("xterm alsamixer",&error)){ - display_popup(GTK_MESSAGE_WARNING,"Cannot launch system sound control "); + display_popup(GTK_MESSAGE_WARNING,_("Cannot launch system sound control ")); g_error_free(error); } } @@ -331,7 +331,7 @@ static GtkWidget *create_mic_page(){ GtkWidget *capture_device=gtk_combo_box_new(); GtkWidget *box = gtk_vbox_new(FALSE,0); GtkWidget *label_audiolevel=gtk_label_new(_("No voice")); - GtkWidget *mixer_button=gtk_button_new_with_label("System sound preferences"); + GtkWidget *mixer_button=gtk_button_new_with_label(_("System sound preferences")); GtkWidget *image; image=gtk_image_new_from_stock(GTK_STOCK_PREFERENCES,GTK_ICON_SIZE_MENU); @@ -370,7 +370,7 @@ static GtkWidget *create_speaker_page(){ GtkWidget *labelSpeakerLevel=gtk_label_new(_("Play three beeps")); GtkWidget *spk_button=gtk_button_new_from_stock(GTK_STOCK_MEDIA_PLAY); GtkWidget *playback_device=gtk_combo_box_new(); - GtkWidget *mixer_button=gtk_button_new_with_label("System sound preferences"); + GtkWidget *mixer_button=gtk_button_new_with_label(_("System sound preferences")); GtkWidget *image; const char **sound_devices; @@ -402,8 +402,8 @@ static GtkWidget *create_play_record_page(){ GtkWidget *vbox=gtk_table_new(2,2,FALSE); GtkWidget *labelRecord=gtk_label_new(_("Press the record button and say some words")); GtkWidget *labelPlay=gtk_label_new(_("Listen to your record voice")); - GtkWidget *rec_button=gtk_toggle_button_new_with_label("Record"); - GtkWidget *play_button=gtk_toggle_button_new_with_label("Play"); + GtkWidget *rec_button=gtk_toggle_button_new_with_label(_("Record")); + GtkWidget *play_button=gtk_toggle_button_new_with_label(_("Play")); GtkWidget *image; image=gtk_image_new_from_stock(GTK_STOCK_MEDIA_RECORD,GTK_ICON_SIZE_MENU); diff --git a/gtk/propertybox.c b/gtk/propertybox.c index 677fe5f06..bdb066616 100644 --- a/gtk/propertybox.c +++ b/gtk/propertybox.c @@ -913,13 +913,13 @@ void linphone_gtk_show_proxy_config(GtkWidget *pb, LinphoneProxyConfig *cfg){ GtkWidget *w=linphone_gtk_create_window("sip_account"); const char *tmp; gboolean is_new=FALSE; - + if (!cfg) { cfg=linphone_core_create_proxy_config(linphone_gtk_get_core()); is_new=TRUE; g_object_set_data(G_OBJECT(w),"is_new",GINT_TO_POINTER(TRUE)); } - + if (!is_new){ linphone_proxy_config_edit(cfg); gtk_entry_set_text(GTK_ENTRY(linphone_gtk_get_widget(w,"identity")), @@ -930,7 +930,7 @@ void linphone_gtk_show_proxy_config(GtkWidget *pb, LinphoneProxyConfig *cfg){ tmp=linphone_proxy_config_get_contact_parameters(cfg); if (tmp) gtk_entry_set_text(GTK_ENTRY(linphone_gtk_get_widget(w,"params")),tmp); } - + gtk_spin_button_set_value(GTK_SPIN_BUTTON(linphone_gtk_get_widget(w,"regperiod")), linphone_proxy_config_get_expires(cfg)); gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(linphone_gtk_get_widget(w,"register")), diff --git a/po/ar.po b/po/ar.po index 455a8df4c..9ffd49675 100644 --- a/po/ar.po +++ b/po/ar.po @@ -10,8 +10,8 @@ msgstr "" "Project-Id-Version: linphone-gtk\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-12-01 14:27+0100\n" -"PO-Revision-Date: 2014-12-01 13:28+0000\n" -"Last-Translator: Gautier Pelloux-Prayer \n" +"PO-Revision-Date: 2014-12-01 17:44+0000\n" +"Last-Translator: محيي الدين \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/linphone-gtk/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -768,7 +768,7 @@ msgstr "صاخب" msgid "" "Welcome!\n" "This assistant will help you to configure audio settings for Linphone" -msgstr "مرحبا !\nسيمكنك هذا المرشد من تهيئة إعدادات الصوت للِنْفُونْ" +msgstr "مرحبا !\nسيمكنك هذا المرشد من تهيئة إعدادات الصوت من أجل لِنْفُونْ" #: ../gtk/audio_assistant.c:328 msgid "Capture device" @@ -1916,15 +1916,15 @@ msgstr[5] "فاتتك %i مكالمة." #: ../coreapi/call_log.c:209 msgid "aborted" -msgstr "" +msgstr "أُجهِضت" #: ../coreapi/call_log.c:212 msgid "completed" -msgstr "" +msgstr "اكتملت" #: ../coreapi/call_log.c:215 msgid "missed" -msgstr "" +msgstr "فاتت" #: ../coreapi/call_log.c:220 #, c-format @@ -1934,13 +1934,13 @@ msgid "" "To: %s\n" "Status: %s\n" "Duration: %i mn %i sec\n" -msgstr "" +msgstr "%s في %s\nمن : %s\nإلى : %s\nالحالة : %s\nالمدة : %i دقيقة %i ثانية\n" #: ../coreapi/call_log.c:221 msgid "Outgoing call" -msgstr "" +msgstr "المكالمة الصادرة" #: ../gtk/videowindow.c:66 #, c-format msgid "Cannot play %s." -msgstr "" +msgstr "لم يتمكن من تشغيل %s" diff --git a/po/cs.po b/po/cs.po index f7b9c76f2..28b929f6a 100644 --- a/po/cs.po +++ b/po/cs.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: linphone-gtk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-12-01 14:27+0100\n" +"POT-Creation-Date: 2014-12-03 13:39+0100\n" "PO-Revision-Date: 2014-12-01 13:28+0000\n" "Last-Translator: Gautier Pelloux-Prayer \n" "Language-Team: Czech (http://www.transifex.com/projects/p/linphone-gtk/" @@ -205,7 +205,7 @@ msgstr "Lipnhone – internetový videofon" msgid "%s (Default)" msgstr "%s (Výchozí)" -#: ../gtk/main.c:2006 ../coreapi/callbacks.c:983 +#: ../gtk/main.c:2006 ../coreapi/callbacks.c:986 #, c-format msgid "We are transferred to %s" msgstr "Byly jsme přepojeni na %s" @@ -780,6 +780,18 @@ msgstr "" msgid "Too loud" msgstr "" +#: ../gtk/audio_assistant.c:183 +msgid "Did you hear three beeps ?" +msgstr "" + +#: ../gtk/audio_assistant.c:292 ../gtk/audio_assistant.c:297 +msgid "Sound preferences not found " +msgstr "" + +#: ../gtk/audio_assistant.c:306 +msgid "Cannot launch system sound control " +msgstr "" + #: ../gtk/audio_assistant.c:318 msgid "" "Welcome!\n" @@ -798,6 +810,10 @@ msgstr "" msgid "No voice" msgstr "" +#: ../gtk/audio_assistant.c:334 ../gtk/audio_assistant.c:373 +msgid "System sound preferences" +msgstr "" + #: ../gtk/audio_assistant.c:369 msgid "Playback device" msgstr "" @@ -814,6 +830,14 @@ msgstr "" msgid "Listen to your record voice" msgstr "" +#: ../gtk/audio_assistant.c:405 +msgid "Record" +msgstr "" + +#: ../gtk/audio_assistant.c:406 +msgid "Play" +msgstr "" + #: ../gtk/audio_assistant.c:433 msgid "Let's start Linphone now" msgstr "" @@ -1849,7 +1873,7 @@ msgstr "Hovor přijat kým: %s." msgid "Incompatible, check codecs or security settings..." msgstr "Není slučitelné. Zkontrolujte nastavení kodeků a zabezpečení…" -#: ../coreapi/callbacks.c:530 ../coreapi/callbacks.c:826 +#: ../coreapi/callbacks.c:530 ../coreapi/callbacks.c:829 msgid "Incompatible media parameters." msgstr "Neslučitelné parametry médií." @@ -1892,34 +1916,34 @@ msgstr "Volání odmítnuto." msgid "Request timeout." msgstr "" -#: ../coreapi/callbacks.c:780 +#: ../coreapi/callbacks.c:783 msgid "Redirected" msgstr "Přesměrováno" -#: ../coreapi/callbacks.c:835 +#: ../coreapi/callbacks.c:838 msgid "Call failed." msgstr "Volání se nezdařilo." -#: ../coreapi/callbacks.c:913 +#: ../coreapi/callbacks.c:916 #, c-format msgid "Registration on %s successful." msgstr "Registrace na %s byla úspěšná." -#: ../coreapi/callbacks.c:914 +#: ../coreapi/callbacks.c:917 #, c-format msgid "Unregistration on %s done." msgstr "Odregistrování z %s hotovo." -#: ../coreapi/callbacks.c:932 +#: ../coreapi/callbacks.c:935 msgid "no response timeout" msgstr "odpověď nedorazila včas" -#: ../coreapi/callbacks.c:935 +#: ../coreapi/callbacks.c:938 #, c-format msgid "Registration on %s failed: %s" msgstr "Registrace na %s selhala: %s" -#: ../coreapi/callbacks.c:942 +#: ../coreapi/callbacks.c:945 msgid "Service unavailable, retrying" msgstr "" @@ -1948,6 +1972,10 @@ msgstr "" msgid "missed" msgstr "" +#: ../coreapi/call_log.c:218 +msgid "unknown" +msgstr "" + #: ../coreapi/call_log.c:220 #, c-format msgid "" diff --git a/po/de.po b/po/de.po index a97e08884..2cec8ab38 100644 --- a/po/de.po +++ b/po/de.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: linphone-gtk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-12-01 14:27+0100\n" +"POT-Creation-Date: 2014-12-03 13:39+0100\n" "PO-Revision-Date: 2014-12-01 13:28+0000\n" "Last-Translator: Gautier Pelloux-Prayer \n" "Language-Team: German (http://www.transifex.com/projects/p/linphone-gtk/" @@ -209,7 +209,7 @@ msgstr "Linphone - ein Internet-Video-Telefon" msgid "%s (Default)" msgstr "%s (Vorgabe)" -#: ../gtk/main.c:2006 ../coreapi/callbacks.c:983 +#: ../gtk/main.c:2006 ../coreapi/callbacks.c:986 #, c-format msgid "We are transferred to %s" msgstr "Vermittlung nach %s" @@ -789,6 +789,19 @@ msgstr "gut" msgid "Too loud" msgstr "zu laut" +#: ../gtk/audio_assistant.c:183 +#, fuzzy +msgid "Did you hear three beeps ?" +msgstr "spiele drei Pieptöne ab" + +#: ../gtk/audio_assistant.c:292 ../gtk/audio_assistant.c:297 +msgid "Sound preferences not found " +msgstr "" + +#: ../gtk/audio_assistant.c:306 +msgid "Cannot launch system sound control " +msgstr "" + #: ../gtk/audio_assistant.c:318 msgid "" "Welcome!\n" @@ -810,6 +823,10 @@ msgstr "aufgenommene Lautstärke" msgid "No voice" msgstr "Keine Stimme" +#: ../gtk/audio_assistant.c:334 ../gtk/audio_assistant.c:373 +msgid "System sound preferences" +msgstr "" + #: ../gtk/audio_assistant.c:369 msgid "Playback device" msgstr "Wiedergabegerät" @@ -826,6 +843,14 @@ msgstr "Drücken Sie den Aufnahmeknopf und sagen Sie etwas" msgid "Listen to your record voice" msgstr "Hören Sie das Aufgenommene" +#: ../gtk/audio_assistant.c:405 +msgid "Record" +msgstr "" + +#: ../gtk/audio_assistant.c:406 +msgid "Play" +msgstr "" + #: ../gtk/audio_assistant.c:433 msgid "Let's start Linphone now" msgstr "Linphone jetzt starten" @@ -1884,7 +1909,7 @@ msgstr "Anruf wird von %s entgegengenommen." msgid "Incompatible, check codecs or security settings..." msgstr "Inkompatibel, prüfe Codecs oder Sicherheitseinstellungen..." -#: ../coreapi/callbacks.c:530 ../coreapi/callbacks.c:826 +#: ../coreapi/callbacks.c:530 ../coreapi/callbacks.c:829 msgid "Incompatible media parameters." msgstr "Inkompatible Medienparameter." @@ -1927,34 +1952,34 @@ msgstr "Anruf abgewiesen" msgid "Request timeout." msgstr "Zeitüberschreitung bei der Anfrage" -#: ../coreapi/callbacks.c:780 +#: ../coreapi/callbacks.c:783 msgid "Redirected" msgstr "Umgeleitet" -#: ../coreapi/callbacks.c:835 +#: ../coreapi/callbacks.c:838 msgid "Call failed." msgstr "Anruf fehlgeschlagen." -#: ../coreapi/callbacks.c:913 +#: ../coreapi/callbacks.c:916 #, c-format msgid "Registration on %s successful." msgstr "Registrierung auf %s erfolgreich." -#: ../coreapi/callbacks.c:914 +#: ../coreapi/callbacks.c:917 #, c-format msgid "Unregistration on %s done." msgstr "Abmeldung von %s ist erfolgt." -#: ../coreapi/callbacks.c:932 +#: ../coreapi/callbacks.c:935 msgid "no response timeout" msgstr "Zeitüberschreitung bei der Antwort" -#: ../coreapi/callbacks.c:935 +#: ../coreapi/callbacks.c:938 #, c-format msgid "Registration on %s failed: %s" msgstr "Registrierung auf %s fehlgeschlagen: %s" -#: ../coreapi/callbacks.c:942 +#: ../coreapi/callbacks.c:945 msgid "Service unavailable, retrying" msgstr "Service nicht verfügbar, versuche erneut" @@ -1982,6 +2007,10 @@ msgstr "" msgid "missed" msgstr "" +#: ../coreapi/call_log.c:218 +msgid "unknown" +msgstr "" + #: ../coreapi/call_log.c:220 #, c-format msgid "" diff --git a/po/es.po b/po/es.po index f8a5bfba5..23516be7b 100644 --- a/po/es.po +++ b/po/es.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: linphone-gtk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-12-01 14:27+0100\n" +"POT-Creation-Date: 2014-12-03 13:39+0100\n" "PO-Revision-Date: 2014-12-01 13:28+0000\n" "Last-Translator: Gautier Pelloux-Prayer \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/linphone-gtk/" @@ -200,7 +200,7 @@ msgstr "Linphone - un video-teléfono a través de Internet" msgid "%s (Default)" msgstr "%s (Opción predeterminada)" -#: ../gtk/main.c:2006 ../coreapi/callbacks.c:983 +#: ../gtk/main.c:2006 ../coreapi/callbacks.c:986 #, c-format msgid "We are transferred to %s" msgstr "Somos transferidos a %s" @@ -762,6 +762,18 @@ msgstr "" msgid "Too loud" msgstr "" +#: ../gtk/audio_assistant.c:183 +msgid "Did you hear three beeps ?" +msgstr "" + +#: ../gtk/audio_assistant.c:292 ../gtk/audio_assistant.c:297 +msgid "Sound preferences not found " +msgstr "" + +#: ../gtk/audio_assistant.c:306 +msgid "Cannot launch system sound control " +msgstr "" + #: ../gtk/audio_assistant.c:318 msgid "" "Welcome!\n" @@ -780,6 +792,10 @@ msgstr "" msgid "No voice" msgstr "" +#: ../gtk/audio_assistant.c:334 ../gtk/audio_assistant.c:373 +msgid "System sound preferences" +msgstr "" + #: ../gtk/audio_assistant.c:369 msgid "Playback device" msgstr "" @@ -796,6 +812,14 @@ msgstr "" msgid "Listen to your record voice" msgstr "" +#: ../gtk/audio_assistant.c:405 +msgid "Record" +msgstr "" + +#: ../gtk/audio_assistant.c:406 +msgid "Play" +msgstr "" + #: ../gtk/audio_assistant.c:433 msgid "Let's start Linphone now" msgstr "" @@ -1834,7 +1858,7 @@ msgstr "" msgid "Incompatible, check codecs or security settings..." msgstr "" -#: ../coreapi/callbacks.c:530 ../coreapi/callbacks.c:826 +#: ../coreapi/callbacks.c:530 ../coreapi/callbacks.c:829 msgid "Incompatible media parameters." msgstr "" @@ -1877,34 +1901,34 @@ msgstr "Llamada rechazada." msgid "Request timeout." msgstr "" -#: ../coreapi/callbacks.c:780 +#: ../coreapi/callbacks.c:783 msgid "Redirected" msgstr "Redigirida" -#: ../coreapi/callbacks.c:835 +#: ../coreapi/callbacks.c:838 msgid "Call failed." msgstr "" -#: ../coreapi/callbacks.c:913 +#: ../coreapi/callbacks.c:916 #, c-format msgid "Registration on %s successful." msgstr "" -#: ../coreapi/callbacks.c:914 +#: ../coreapi/callbacks.c:917 #, c-format msgid "Unregistration on %s done." msgstr "" -#: ../coreapi/callbacks.c:932 +#: ../coreapi/callbacks.c:935 msgid "no response timeout" msgstr "timeout sin respuesta" -#: ../coreapi/callbacks.c:935 +#: ../coreapi/callbacks.c:938 #, c-format msgid "Registration on %s failed: %s" msgstr "" -#: ../coreapi/callbacks.c:942 +#: ../coreapi/callbacks.c:945 msgid "Service unavailable, retrying" msgstr "" @@ -1932,6 +1956,10 @@ msgstr "" msgid "missed" msgstr "" +#: ../coreapi/call_log.c:218 +msgid "unknown" +msgstr "" + #: ../coreapi/call_log.c:220 #, c-format msgid "" diff --git a/po/fr.po b/po/fr.po index c83a84985..6293ef88b 100644 --- a/po/fr.po +++ b/po/fr.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: linphone-gtk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-12-01 14:27+0100\n" -"PO-Revision-Date: 2014-12-01 13:30+0000\n" +"POT-Creation-Date: 2014-12-03 13:39+0100\n" +"PO-Revision-Date: 2014-12-01 13:41+0000\n" "Last-Translator: Gautier Pelloux-Prayer \n" "Language-Team: French (http://www.transifex.com/projects/p/linphone-gtk/" "language/fr/)\n" @@ -208,7 +208,7 @@ msgstr "Linphone - un téléphone video pour l'internet" msgid "%s (Default)" msgstr "%s (par défaut)" -#: ../gtk/main.c:2006 ../coreapi/callbacks.c:983 +#: ../gtk/main.c:2006 ../coreapi/callbacks.c:986 #, c-format msgid "We are transferred to %s" msgstr "Transfert vers %s" @@ -787,6 +787,19 @@ msgstr "Bien" msgid "Too loud" msgstr "Trop bruyant" +#: ../gtk/audio_assistant.c:183 +#, fuzzy +msgid "Did you hear three beeps ?" +msgstr "Joue trois bips" + +#: ../gtk/audio_assistant.c:292 ../gtk/audio_assistant.c:297 +msgid "Sound preferences not found " +msgstr "" + +#: ../gtk/audio_assistant.c:306 +msgid "Cannot launch system sound control " +msgstr "" + #: ../gtk/audio_assistant.c:318 msgid "" "Welcome!\n" @@ -808,6 +821,10 @@ msgstr "Volume enregistré" msgid "No voice" msgstr "Silencieux" +#: ../gtk/audio_assistant.c:334 ../gtk/audio_assistant.c:373 +msgid "System sound preferences" +msgstr "" + #: ../gtk/audio_assistant.c:369 msgid "Playback device" msgstr "Périphérique d'écoute" @@ -824,6 +841,14 @@ msgstr "Appuyer sur le bouton enregistrer et dites quelques mots" msgid "Listen to your record voice" msgstr "Ecoutez votre voix enregistrée" +#: ../gtk/audio_assistant.c:405 +msgid "Record" +msgstr "" + +#: ../gtk/audio_assistant.c:406 +msgid "Play" +msgstr "" + #: ../gtk/audio_assistant.c:433 msgid "Let's start Linphone now" msgstr "Démarrons Linphone maintenant" @@ -1882,7 +1907,7 @@ msgstr "Appel répondu par %s." msgid "Incompatible, check codecs or security settings..." msgstr "Incompatible, vérfiez les codecs ou les paramètres de sécurité..." -#: ../coreapi/callbacks.c:530 ../coreapi/callbacks.c:826 +#: ../coreapi/callbacks.c:530 ../coreapi/callbacks.c:829 msgid "Incompatible media parameters." msgstr "Paramètres media incompatibles." @@ -1925,34 +1950,34 @@ msgstr "Appel décliné." msgid "Request timeout." msgstr "Délai d'attente de la requête dépassé." -#: ../coreapi/callbacks.c:780 +#: ../coreapi/callbacks.c:783 msgid "Redirected" msgstr "Redirection" -#: ../coreapi/callbacks.c:835 +#: ../coreapi/callbacks.c:838 msgid "Call failed." msgstr "L'appel a échoué." -#: ../coreapi/callbacks.c:913 +#: ../coreapi/callbacks.c:916 #, c-format msgid "Registration on %s successful." msgstr "Enregistrement sur %s effectué." -#: ../coreapi/callbacks.c:914 +#: ../coreapi/callbacks.c:917 #, c-format msgid "Unregistration on %s done." msgstr "Désenregistrement sur %s effectué." -#: ../coreapi/callbacks.c:932 +#: ../coreapi/callbacks.c:935 msgid "no response timeout" msgstr "Pas de réponse" -#: ../coreapi/callbacks.c:935 +#: ../coreapi/callbacks.c:938 #, c-format msgid "Registration on %s failed: %s" msgstr "Echec de l'enregistrement sur %s: %s" -#: ../coreapi/callbacks.c:942 +#: ../coreapi/callbacks.c:945 msgid "Service unavailable, retrying" msgstr "Service indisponible, nouvelle tentative" @@ -1980,6 +2005,10 @@ msgstr "terminé" msgid "missed" msgstr "manqué" +#: ../coreapi/call_log.c:218 +msgid "unknown" +msgstr "" + #: ../coreapi/call_log.c:220 #, c-format msgid "" diff --git a/po/he.po b/po/he.po index 594308819..8860ed86d 100644 --- a/po/he.po +++ b/po/he.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: linphone-gtk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-12-01 14:27+0100\n" +"POT-Creation-Date: 2014-12-03 13:39+0100\n" "PO-Revision-Date: 2014-12-01 13:28+0000\n" "Last-Translator: Gautier Pelloux-Prayer \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/linphone-gtk/" @@ -205,7 +205,7 @@ msgstr "‫Linphone - וידאופון אינטרנטי" msgid "%s (Default)" msgstr "‫%s (ברירת מחדל)" -#: ../gtk/main.c:2006 ../coreapi/callbacks.c:983 +#: ../gtk/main.c:2006 ../coreapi/callbacks.c:986 #, c-format msgid "We are transferred to %s" msgstr "אנחנו מועברים אל %s" @@ -777,6 +777,19 @@ msgstr "טוב" msgid "Too loud" msgstr "חזק מדי" +#: ../gtk/audio_assistant.c:183 +#, fuzzy +msgid "Did you hear three beeps ?" +msgstr "נגן שלושה צפצופים" + +#: ../gtk/audio_assistant.c:292 ../gtk/audio_assistant.c:297 +msgid "Sound preferences not found " +msgstr "" + +#: ../gtk/audio_assistant.c:306 +msgid "Cannot launch system sound control " +msgstr "" + #: ../gtk/audio_assistant.c:318 msgid "" "Welcome!\n" @@ -795,6 +808,10 @@ msgstr "" msgid "No voice" msgstr "אין קול" +#: ../gtk/audio_assistant.c:334 ../gtk/audio_assistant.c:373 +msgid "System sound preferences" +msgstr "" + #: ../gtk/audio_assistant.c:369 msgid "Playback device" msgstr "התקן השמעה" @@ -811,6 +828,14 @@ msgstr "" msgid "Listen to your record voice" msgstr "" +#: ../gtk/audio_assistant.c:405 +msgid "Record" +msgstr "" + +#: ../gtk/audio_assistant.c:406 +msgid "Play" +msgstr "" + #: ../gtk/audio_assistant.c:433 msgid "Let's start Linphone now" msgstr "הבא נתחיל את Linphone עכשיו" @@ -1845,7 +1870,7 @@ msgstr "קריאה נענתה על ידי %s." msgid "Incompatible, check codecs or security settings..." msgstr "חוסר תאימות, בדוק קודקים או הגדרות אבטחה..." -#: ../coreapi/callbacks.c:530 ../coreapi/callbacks.c:826 +#: ../coreapi/callbacks.c:530 ../coreapi/callbacks.c:829 msgid "Incompatible media parameters." msgstr "פרמטריי מדיה חסרי תואמים." @@ -1888,34 +1913,34 @@ msgstr "קריאה סורבה." msgid "Request timeout." msgstr "" -#: ../coreapi/callbacks.c:780 +#: ../coreapi/callbacks.c:783 msgid "Redirected" msgstr "מכוון מחדש" -#: ../coreapi/callbacks.c:835 +#: ../coreapi/callbacks.c:838 msgid "Call failed." msgstr "קריאה נכשלה." -#: ../coreapi/callbacks.c:913 +#: ../coreapi/callbacks.c:916 #, c-format msgid "Registration on %s successful." msgstr "רישום אצל %s הושלם בהצלחה." -#: ../coreapi/callbacks.c:914 +#: ../coreapi/callbacks.c:917 #, c-format msgid "Unregistration on %s done." msgstr "אי רישום אצל %s סוים." -#: ../coreapi/callbacks.c:932 +#: ../coreapi/callbacks.c:935 msgid "no response timeout" msgstr "אין היענות תוך זמן מוגדר" -#: ../coreapi/callbacks.c:935 +#: ../coreapi/callbacks.c:938 #, c-format msgid "Registration on %s failed: %s" msgstr "רישום אצל %s נכשל: %s" -#: ../coreapi/callbacks.c:942 +#: ../coreapi/callbacks.c:945 msgid "Service unavailable, retrying" msgstr "" @@ -1943,6 +1968,10 @@ msgstr "" msgid "missed" msgstr "" +#: ../coreapi/call_log.c:218 +msgid "unknown" +msgstr "" + #: ../coreapi/call_log.c:220 #, c-format msgid "" diff --git a/po/hu.po b/po/hu.po index 1fe343f05..314af405f 100644 --- a/po/hu.po +++ b/po/hu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: linphone-gtk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-12-01 14:27+0100\n" +"POT-Creation-Date: 2014-12-03 13:39+0100\n" "PO-Revision-Date: 2014-12-01 13:28+0000\n" "Last-Translator: Gautier Pelloux-Prayer \n" "Language-Team: Hungarian (http://www.transifex.com/projects/p/linphone-gtk/" @@ -199,7 +199,7 @@ msgstr "Linphone - internetes videó telefon" msgid "%s (Default)" msgstr "%s (Alapértelmezett)" -#: ../gtk/main.c:2006 ../coreapi/callbacks.c:983 +#: ../gtk/main.c:2006 ../coreapi/callbacks.c:986 #, c-format msgid "We are transferred to %s" msgstr "Át vagyunk irányítva ide: %s" @@ -775,6 +775,18 @@ msgstr "" msgid "Too loud" msgstr "" +#: ../gtk/audio_assistant.c:183 +msgid "Did you hear three beeps ?" +msgstr "" + +#: ../gtk/audio_assistant.c:292 ../gtk/audio_assistant.c:297 +msgid "Sound preferences not found " +msgstr "" + +#: ../gtk/audio_assistant.c:306 +msgid "Cannot launch system sound control " +msgstr "" + #: ../gtk/audio_assistant.c:318 msgid "" "Welcome!\n" @@ -793,6 +805,10 @@ msgstr "" msgid "No voice" msgstr "" +#: ../gtk/audio_assistant.c:334 ../gtk/audio_assistant.c:373 +msgid "System sound preferences" +msgstr "" + #: ../gtk/audio_assistant.c:369 msgid "Playback device" msgstr "" @@ -809,6 +825,14 @@ msgstr "" msgid "Listen to your record voice" msgstr "" +#: ../gtk/audio_assistant.c:405 +msgid "Record" +msgstr "" + +#: ../gtk/audio_assistant.c:406 +msgid "Play" +msgstr "" + #: ../gtk/audio_assistant.c:433 msgid "Let's start Linphone now" msgstr "" @@ -1848,7 +1872,7 @@ msgid "Incompatible, check codecs or security settings..." msgstr "" "Nem kompatibilis, ellenőrizze a kódek- vagy a biztonsági beállításokat..." -#: ../coreapi/callbacks.c:530 ../coreapi/callbacks.c:826 +#: ../coreapi/callbacks.c:530 ../coreapi/callbacks.c:829 msgid "Incompatible media parameters." msgstr "Nem kompatibilis médiajellemzők." @@ -1891,34 +1915,34 @@ msgstr "Hívás elutasítva" msgid "Request timeout." msgstr "" -#: ../coreapi/callbacks.c:780 +#: ../coreapi/callbacks.c:783 msgid "Redirected" msgstr "Átirányítva" -#: ../coreapi/callbacks.c:835 +#: ../coreapi/callbacks.c:838 msgid "Call failed." msgstr "Nem sikerült a hívás." -#: ../coreapi/callbacks.c:913 +#: ../coreapi/callbacks.c:916 #, c-format msgid "Registration on %s successful." msgstr "A regisztáció a %s -n sikerült." -#: ../coreapi/callbacks.c:914 +#: ../coreapi/callbacks.c:917 #, c-format msgid "Unregistration on %s done." msgstr "A kiregisztrálás kész a következőn: %s ." -#: ../coreapi/callbacks.c:932 +#: ../coreapi/callbacks.c:935 msgid "no response timeout" msgstr "időtúllépés után nincs válasz" -#: ../coreapi/callbacks.c:935 +#: ../coreapi/callbacks.c:938 #, c-format msgid "Registration on %s failed: %s" msgstr "A regisztáció a %s -n nem sikerült: %s" -#: ../coreapi/callbacks.c:942 +#: ../coreapi/callbacks.c:945 msgid "Service unavailable, retrying" msgstr "" @@ -1946,6 +1970,10 @@ msgstr "" msgid "missed" msgstr "" +#: ../coreapi/call_log.c:218 +msgid "unknown" +msgstr "" + #: ../coreapi/call_log.c:220 #, c-format msgid "" diff --git a/po/it.po b/po/it.po index 29577b62b..53fab0c8b 100644 --- a/po/it.po +++ b/po/it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: linphone-gtk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-12-01 14:27+0100\n" +"POT-Creation-Date: 2014-12-03 13:39+0100\n" "PO-Revision-Date: 2014-12-01 13:28+0000\n" "Last-Translator: Gautier Pelloux-Prayer \n" "Language-Team: Italian (http://www.transifex.com/projects/p/linphone-gtk/" @@ -196,7 +196,7 @@ msgstr "" msgid "%s (Default)" msgstr "%s (Default)" -#: ../gtk/main.c:2006 ../coreapi/callbacks.c:983 +#: ../gtk/main.c:2006 ../coreapi/callbacks.c:986 #, c-format msgid "We are transferred to %s" msgstr "" @@ -758,6 +758,18 @@ msgstr "" msgid "Too loud" msgstr "" +#: ../gtk/audio_assistant.c:183 +msgid "Did you hear three beeps ?" +msgstr "" + +#: ../gtk/audio_assistant.c:292 ../gtk/audio_assistant.c:297 +msgid "Sound preferences not found " +msgstr "" + +#: ../gtk/audio_assistant.c:306 +msgid "Cannot launch system sound control " +msgstr "" + #: ../gtk/audio_assistant.c:318 msgid "" "Welcome!\n" @@ -776,6 +788,10 @@ msgstr "" msgid "No voice" msgstr "" +#: ../gtk/audio_assistant.c:334 ../gtk/audio_assistant.c:373 +msgid "System sound preferences" +msgstr "" + #: ../gtk/audio_assistant.c:369 msgid "Playback device" msgstr "" @@ -792,6 +808,14 @@ msgstr "" msgid "Listen to your record voice" msgstr "" +#: ../gtk/audio_assistant.c:405 +msgid "Record" +msgstr "" + +#: ../gtk/audio_assistant.c:406 +msgid "Play" +msgstr "" + #: ../gtk/audio_assistant.c:433 msgid "Let's start Linphone now" msgstr "" @@ -1826,7 +1850,7 @@ msgstr "" msgid "Incompatible, check codecs or security settings..." msgstr "" -#: ../coreapi/callbacks.c:530 ../coreapi/callbacks.c:826 +#: ../coreapi/callbacks.c:530 ../coreapi/callbacks.c:829 msgid "Incompatible media parameters." msgstr "" @@ -1869,34 +1893,34 @@ msgstr "Chiamata rifiutata" msgid "Request timeout." msgstr "" -#: ../coreapi/callbacks.c:780 +#: ../coreapi/callbacks.c:783 msgid "Redirected" msgstr "" -#: ../coreapi/callbacks.c:835 +#: ../coreapi/callbacks.c:838 msgid "Call failed." msgstr "" -#: ../coreapi/callbacks.c:913 +#: ../coreapi/callbacks.c:916 #, c-format msgid "Registration on %s successful." msgstr "Registrazione su %s attiva" -#: ../coreapi/callbacks.c:914 +#: ../coreapi/callbacks.c:917 #, c-format msgid "Unregistration on %s done." msgstr "Unregistrazione su %s" -#: ../coreapi/callbacks.c:932 +#: ../coreapi/callbacks.c:935 msgid "no response timeout" msgstr "timeout no risposta" -#: ../coreapi/callbacks.c:935 +#: ../coreapi/callbacks.c:938 #, c-format msgid "Registration on %s failed: %s" msgstr "Registrazione su %s fallita: %s" -#: ../coreapi/callbacks.c:942 +#: ../coreapi/callbacks.c:945 msgid "Service unavailable, retrying" msgstr "" @@ -1924,6 +1948,10 @@ msgstr "" msgid "missed" msgstr "" +#: ../coreapi/call_log.c:218 +msgid "unknown" +msgstr "" + #: ../coreapi/call_log.c:220 #, c-format msgid "" diff --git a/po/ja.po b/po/ja.po index 004469d0b..b3cfa7019 100644 --- a/po/ja.po +++ b/po/ja.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: linphone-gtk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-12-01 14:27+0100\n" -"PO-Revision-Date: 2014-12-01 13:28+0000\n" -"Last-Translator: Gautier Pelloux-Prayer \n" +"POT-Creation-Date: 2014-12-03 13:39+0100\n" +"PO-Revision-Date: 2014-12-01 16:32+0000\n" +"Last-Translator: Alexander\n" "Language-Team: Japanese (http://www.transifex.com/projects/p/linphone-gtk/" "language/ja/)\n" "Language: ja\n" @@ -201,7 +201,7 @@ msgstr "Linphone - ビデオインターネット電話" msgid "%s (Default)" msgstr "%s (デフォルト)" -#: ../gtk/main.c:2006 ../coreapi/callbacks.c:983 +#: ../gtk/main.c:2006 ../coreapi/callbacks.c:986 #, c-format msgid "We are transferred to %s" msgstr "%s に転送しました" @@ -546,7 +546,7 @@ msgstr "エラー" #: ../gtk/setupwizard.c:658 ../gtk/audio_assistant.c:527 msgid "Terminating" -msgstr "" +msgstr "終了" #: ../gtk/incall_view.c:70 ../gtk/incall_view.c:94 #, c-format @@ -657,15 +657,15 @@ msgstr "" #: ../gtk/incall_view.c:568 msgid "very poor" -msgstr "" +msgstr "非常にプアな" #: ../gtk/incall_view.c:570 msgid "too bad" -msgstr "" +msgstr "非常にバッドな" #: ../gtk/incall_view.c:571 ../gtk/incall_view.c:587 msgid "unavailable" -msgstr "" +msgstr "利用できません" #: ../gtk/incall_view.c:679 msgid "Secured by SRTP" @@ -762,6 +762,18 @@ msgstr "" msgid "Too loud" msgstr "" +#: ../gtk/audio_assistant.c:183 +msgid "Did you hear three beeps ?" +msgstr "" + +#: ../gtk/audio_assistant.c:292 ../gtk/audio_assistant.c:297 +msgid "Sound preferences not found " +msgstr "" + +#: ../gtk/audio_assistant.c:306 +msgid "Cannot launch system sound control " +msgstr "" + #: ../gtk/audio_assistant.c:318 msgid "" "Welcome!\n" @@ -780,6 +792,10 @@ msgstr "" msgid "No voice" msgstr "音声なし" +#: ../gtk/audio_assistant.c:334 ../gtk/audio_assistant.c:373 +msgid "System sound preferences" +msgstr "" + #: ../gtk/audio_assistant.c:369 msgid "Playback device" msgstr "" @@ -796,6 +812,14 @@ msgstr "" msgid "Listen to your record voice" msgstr "録音した音声を聞く" +#: ../gtk/audio_assistant.c:405 +msgid "Record" +msgstr "" + +#: ../gtk/audio_assistant.c:406 +msgid "Play" +msgstr "" + #: ../gtk/audio_assistant.c:433 msgid "Let's start Linphone now" msgstr "Linphoneをはじめる" @@ -1837,7 +1861,7 @@ msgstr "" msgid "Incompatible, check codecs or security settings..." msgstr "" -#: ../coreapi/callbacks.c:530 ../coreapi/callbacks.c:826 +#: ../coreapi/callbacks.c:530 ../coreapi/callbacks.c:829 msgid "Incompatible media parameters." msgstr "" @@ -1880,34 +1904,34 @@ msgstr "通話は拒否されました。" msgid "Request timeout." msgstr "リクエストは時間切れです。" -#: ../coreapi/callbacks.c:780 +#: ../coreapi/callbacks.c:783 msgid "Redirected" msgstr "" -#: ../coreapi/callbacks.c:835 +#: ../coreapi/callbacks.c:838 msgid "Call failed." msgstr "" -#: ../coreapi/callbacks.c:913 +#: ../coreapi/callbacks.c:916 #, c-format msgid "Registration on %s successful." msgstr "" -#: ../coreapi/callbacks.c:914 +#: ../coreapi/callbacks.c:917 #, c-format msgid "Unregistration on %s done." msgstr "" -#: ../coreapi/callbacks.c:932 +#: ../coreapi/callbacks.c:935 msgid "no response timeout" msgstr "" -#: ../coreapi/callbacks.c:935 +#: ../coreapi/callbacks.c:938 #, c-format msgid "Registration on %s failed: %s" msgstr "" -#: ../coreapi/callbacks.c:942 +#: ../coreapi/callbacks.c:945 msgid "Service unavailable, retrying" msgstr "" @@ -1934,6 +1958,10 @@ msgstr "" msgid "missed" msgstr "" +#: ../coreapi/call_log.c:218 +msgid "unknown" +msgstr "" + #: ../coreapi/call_log.c:220 #, c-format msgid "" diff --git a/po/nb_NO.po b/po/nb_NO.po index fb24b907a..fda1ca808 100644 --- a/po/nb_NO.po +++ b/po/nb_NO.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: linphone-gtk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-12-01 14:27+0100\n" +"POT-Creation-Date: 2014-12-03 13:39+0100\n" "PO-Revision-Date: 2014-12-01 13:28+0000\n" "Last-Translator: Gautier Pelloux-Prayer \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/" @@ -200,7 +200,7 @@ msgstr "Linphone - en video Internet telefon" msgid "%s (Default)" msgstr "%s (Standard)" -#: ../gtk/main.c:2006 ../coreapi/callbacks.c:983 +#: ../gtk/main.c:2006 ../coreapi/callbacks.c:986 #, c-format msgid "We are transferred to %s" msgstr "Vi er overført til %s" @@ -764,6 +764,18 @@ msgstr "" msgid "Too loud" msgstr "" +#: ../gtk/audio_assistant.c:183 +msgid "Did you hear three beeps ?" +msgstr "" + +#: ../gtk/audio_assistant.c:292 ../gtk/audio_assistant.c:297 +msgid "Sound preferences not found " +msgstr "" + +#: ../gtk/audio_assistant.c:306 +msgid "Cannot launch system sound control " +msgstr "" + #: ../gtk/audio_assistant.c:318 msgid "" "Welcome!\n" @@ -782,6 +794,10 @@ msgstr "" msgid "No voice" msgstr "" +#: ../gtk/audio_assistant.c:334 ../gtk/audio_assistant.c:373 +msgid "System sound preferences" +msgstr "" + #: ../gtk/audio_assistant.c:369 msgid "Playback device" msgstr "" @@ -798,6 +814,14 @@ msgstr "" msgid "Listen to your record voice" msgstr "" +#: ../gtk/audio_assistant.c:405 +msgid "Record" +msgstr "" + +#: ../gtk/audio_assistant.c:406 +msgid "Play" +msgstr "" + #: ../gtk/audio_assistant.c:433 msgid "Let's start Linphone now" msgstr "" @@ -1833,7 +1857,7 @@ msgstr "Samtale besvart av %s." msgid "Incompatible, check codecs or security settings..." msgstr "" -#: ../coreapi/callbacks.c:530 ../coreapi/callbacks.c:826 +#: ../coreapi/callbacks.c:530 ../coreapi/callbacks.c:829 msgid "Incompatible media parameters." msgstr "" @@ -1876,34 +1900,34 @@ msgstr "Samtale avvist." msgid "Request timeout." msgstr "" -#: ../coreapi/callbacks.c:780 +#: ../coreapi/callbacks.c:783 msgid "Redirected" msgstr "Omdirigert" -#: ../coreapi/callbacks.c:835 +#: ../coreapi/callbacks.c:838 msgid "Call failed." msgstr "Samtale feilet." -#: ../coreapi/callbacks.c:913 +#: ../coreapi/callbacks.c:916 #, c-format msgid "Registration on %s successful." msgstr "Registrering hos %s lykkes." -#: ../coreapi/callbacks.c:914 +#: ../coreapi/callbacks.c:917 #, c-format msgid "Unregistration on %s done." msgstr "Avregistrering hos %s lykkes." -#: ../coreapi/callbacks.c:932 +#: ../coreapi/callbacks.c:935 msgid "no response timeout" msgstr "ingen svar innen angitt tid" -#: ../coreapi/callbacks.c:935 +#: ../coreapi/callbacks.c:938 #, c-format msgid "Registration on %s failed: %s" msgstr "Registrering hos %s mislykkes: %s" -#: ../coreapi/callbacks.c:942 +#: ../coreapi/callbacks.c:945 msgid "Service unavailable, retrying" msgstr "" @@ -1931,6 +1955,10 @@ msgstr "" msgid "missed" msgstr "" +#: ../coreapi/call_log.c:218 +msgid "unknown" +msgstr "" + #: ../coreapi/call_log.c:220 #, c-format msgid "" diff --git a/po/nl.po b/po/nl.po index 8ea8053c2..efa0e6ec5 100644 --- a/po/nl.po +++ b/po/nl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: linphone-gtk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-12-01 14:27+0100\n" +"POT-Creation-Date: 2014-12-03 13:39+0100\n" "PO-Revision-Date: 2014-12-01 13:28+0000\n" "Last-Translator: Gautier Pelloux-Prayer \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/linphone-gtk/" @@ -193,7 +193,7 @@ msgstr "" msgid "%s (Default)" msgstr "" -#: ../gtk/main.c:2006 ../coreapi/callbacks.c:983 +#: ../gtk/main.c:2006 ../coreapi/callbacks.c:986 #, c-format msgid "We are transferred to %s" msgstr "" @@ -753,6 +753,18 @@ msgstr "" msgid "Too loud" msgstr "" +#: ../gtk/audio_assistant.c:183 +msgid "Did you hear three beeps ?" +msgstr "" + +#: ../gtk/audio_assistant.c:292 ../gtk/audio_assistant.c:297 +msgid "Sound preferences not found " +msgstr "" + +#: ../gtk/audio_assistant.c:306 +msgid "Cannot launch system sound control " +msgstr "" + #: ../gtk/audio_assistant.c:318 msgid "" "Welcome!\n" @@ -771,6 +783,10 @@ msgstr "" msgid "No voice" msgstr "" +#: ../gtk/audio_assistant.c:334 ../gtk/audio_assistant.c:373 +msgid "System sound preferences" +msgstr "" + #: ../gtk/audio_assistant.c:369 msgid "Playback device" msgstr "" @@ -787,6 +803,14 @@ msgstr "" msgid "Listen to your record voice" msgstr "" +#: ../gtk/audio_assistant.c:405 +msgid "Record" +msgstr "" + +#: ../gtk/audio_assistant.c:406 +msgid "Play" +msgstr "" + #: ../gtk/audio_assistant.c:433 msgid "Let's start Linphone now" msgstr "" @@ -1816,7 +1840,7 @@ msgstr "" msgid "Incompatible, check codecs or security settings..." msgstr "" -#: ../coreapi/callbacks.c:530 ../coreapi/callbacks.c:826 +#: ../coreapi/callbacks.c:530 ../coreapi/callbacks.c:829 msgid "Incompatible media parameters." msgstr "" @@ -1859,34 +1883,34 @@ msgstr "Oproep geweigerd." msgid "Request timeout." msgstr "" -#: ../coreapi/callbacks.c:780 +#: ../coreapi/callbacks.c:783 msgid "Redirected" msgstr "" -#: ../coreapi/callbacks.c:835 +#: ../coreapi/callbacks.c:838 msgid "Call failed." msgstr "" -#: ../coreapi/callbacks.c:913 +#: ../coreapi/callbacks.c:916 #, c-format msgid "Registration on %s successful." msgstr "Registratie op %s gelukt." -#: ../coreapi/callbacks.c:914 +#: ../coreapi/callbacks.c:917 #, c-format msgid "Unregistration on %s done." msgstr "" -#: ../coreapi/callbacks.c:932 +#: ../coreapi/callbacks.c:935 msgid "no response timeout" msgstr "" -#: ../coreapi/callbacks.c:935 +#: ../coreapi/callbacks.c:938 #, c-format msgid "Registration on %s failed: %s" msgstr "" -#: ../coreapi/callbacks.c:942 +#: ../coreapi/callbacks.c:945 msgid "Service unavailable, retrying" msgstr "" @@ -1914,6 +1938,10 @@ msgstr "" msgid "missed" msgstr "" +#: ../coreapi/call_log.c:218 +msgid "unknown" +msgstr "" + #: ../coreapi/call_log.c:220 #, c-format msgid "" diff --git a/po/pl.po b/po/pl.po index e2bcc91a4..6ab8c39dc 100644 --- a/po/pl.po +++ b/po/pl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: linphone-gtk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-12-01 14:27+0100\n" +"POT-Creation-Date: 2014-12-03 13:39+0100\n" "PO-Revision-Date: 2014-12-01 13:28+0000\n" "Last-Translator: Gautier Pelloux-Prayer \n" "Language-Team: Polish (http://www.transifex.com/projects/p/linphone-gtk/" @@ -196,7 +196,7 @@ msgstr "" msgid "%s (Default)" msgstr "" -#: ../gtk/main.c:2006 ../coreapi/callbacks.c:983 +#: ../gtk/main.c:2006 ../coreapi/callbacks.c:986 #, c-format msgid "We are transferred to %s" msgstr "" @@ -757,6 +757,18 @@ msgstr "" msgid "Too loud" msgstr "" +#: ../gtk/audio_assistant.c:183 +msgid "Did you hear three beeps ?" +msgstr "" + +#: ../gtk/audio_assistant.c:292 ../gtk/audio_assistant.c:297 +msgid "Sound preferences not found " +msgstr "" + +#: ../gtk/audio_assistant.c:306 +msgid "Cannot launch system sound control " +msgstr "" + #: ../gtk/audio_assistant.c:318 msgid "" "Welcome!\n" @@ -775,6 +787,10 @@ msgstr "" msgid "No voice" msgstr "" +#: ../gtk/audio_assistant.c:334 ../gtk/audio_assistant.c:373 +msgid "System sound preferences" +msgstr "" + #: ../gtk/audio_assistant.c:369 msgid "Playback device" msgstr "" @@ -791,6 +807,14 @@ msgstr "" msgid "Listen to your record voice" msgstr "" +#: ../gtk/audio_assistant.c:405 +msgid "Record" +msgstr "" + +#: ../gtk/audio_assistant.c:406 +msgid "Play" +msgstr "" + #: ../gtk/audio_assistant.c:433 msgid "Let's start Linphone now" msgstr "" @@ -1820,7 +1844,7 @@ msgstr "" msgid "Incompatible, check codecs or security settings..." msgstr "" -#: ../coreapi/callbacks.c:530 ../coreapi/callbacks.c:826 +#: ../coreapi/callbacks.c:530 ../coreapi/callbacks.c:829 msgid "Incompatible media parameters." msgstr "" @@ -1863,34 +1887,34 @@ msgstr "Rozmowa odrzucona." msgid "Request timeout." msgstr "" -#: ../coreapi/callbacks.c:780 +#: ../coreapi/callbacks.c:783 msgid "Redirected" msgstr "" -#: ../coreapi/callbacks.c:835 +#: ../coreapi/callbacks.c:838 msgid "Call failed." msgstr "" -#: ../coreapi/callbacks.c:913 +#: ../coreapi/callbacks.c:916 #, c-format msgid "Registration on %s successful." msgstr "" -#: ../coreapi/callbacks.c:914 +#: ../coreapi/callbacks.c:917 #, c-format msgid "Unregistration on %s done." msgstr "" -#: ../coreapi/callbacks.c:932 +#: ../coreapi/callbacks.c:935 msgid "no response timeout" msgstr "" -#: ../coreapi/callbacks.c:935 +#: ../coreapi/callbacks.c:938 #, c-format msgid "Registration on %s failed: %s" msgstr "" -#: ../coreapi/callbacks.c:942 +#: ../coreapi/callbacks.c:945 msgid "Service unavailable, retrying" msgstr "" @@ -1919,6 +1943,10 @@ msgstr "" msgid "missed" msgstr "" +#: ../coreapi/call_log.c:218 +msgid "unknown" +msgstr "" + #: ../coreapi/call_log.c:220 #, c-format msgid "" diff --git a/po/pt_BR.po b/po/pt_BR.po index 26581a852..fde6c49fb 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: linphone-gtk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-12-01 14:27+0100\n" +"POT-Creation-Date: 2014-12-03 13:39+0100\n" "PO-Revision-Date: 2014-12-01 13:28+0000\n" "Last-Translator: Gautier Pelloux-Prayer \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/" @@ -193,7 +193,7 @@ msgstr "" msgid "%s (Default)" msgstr "" -#: ../gtk/main.c:2006 ../coreapi/callbacks.c:983 +#: ../gtk/main.c:2006 ../coreapi/callbacks.c:986 #, c-format msgid "We are transferred to %s" msgstr "" @@ -753,6 +753,18 @@ msgstr "" msgid "Too loud" msgstr "" +#: ../gtk/audio_assistant.c:183 +msgid "Did you hear three beeps ?" +msgstr "" + +#: ../gtk/audio_assistant.c:292 ../gtk/audio_assistant.c:297 +msgid "Sound preferences not found " +msgstr "" + +#: ../gtk/audio_assistant.c:306 +msgid "Cannot launch system sound control " +msgstr "" + #: ../gtk/audio_assistant.c:318 msgid "" "Welcome!\n" @@ -771,6 +783,10 @@ msgstr "" msgid "No voice" msgstr "" +#: ../gtk/audio_assistant.c:334 ../gtk/audio_assistant.c:373 +msgid "System sound preferences" +msgstr "" + #: ../gtk/audio_assistant.c:369 msgid "Playback device" msgstr "" @@ -787,6 +803,14 @@ msgstr "" msgid "Listen to your record voice" msgstr "" +#: ../gtk/audio_assistant.c:405 +msgid "Record" +msgstr "" + +#: ../gtk/audio_assistant.c:406 +msgid "Play" +msgstr "" + #: ../gtk/audio_assistant.c:433 msgid "Let's start Linphone now" msgstr "" @@ -1816,7 +1840,7 @@ msgstr "" msgid "Incompatible, check codecs or security settings..." msgstr "" -#: ../coreapi/callbacks.c:530 ../coreapi/callbacks.c:826 +#: ../coreapi/callbacks.c:530 ../coreapi/callbacks.c:829 msgid "Incompatible media parameters." msgstr "" @@ -1859,34 +1883,34 @@ msgstr "" msgid "Request timeout." msgstr "" -#: ../coreapi/callbacks.c:780 +#: ../coreapi/callbacks.c:783 msgid "Redirected" msgstr "" -#: ../coreapi/callbacks.c:835 +#: ../coreapi/callbacks.c:838 msgid "Call failed." msgstr "" -#: ../coreapi/callbacks.c:913 +#: ../coreapi/callbacks.c:916 #, c-format msgid "Registration on %s successful." msgstr "" -#: ../coreapi/callbacks.c:914 +#: ../coreapi/callbacks.c:917 #, c-format msgid "Unregistration on %s done." msgstr "" -#: ../coreapi/callbacks.c:932 +#: ../coreapi/callbacks.c:935 msgid "no response timeout" msgstr "" -#: ../coreapi/callbacks.c:935 +#: ../coreapi/callbacks.c:938 #, c-format msgid "Registration on %s failed: %s" msgstr "" -#: ../coreapi/callbacks.c:942 +#: ../coreapi/callbacks.c:945 msgid "Service unavailable, retrying" msgstr "" @@ -1914,6 +1938,10 @@ msgstr "" msgid "missed" msgstr "" +#: ../coreapi/call_log.c:218 +msgid "unknown" +msgstr "" + #: ../coreapi/call_log.c:220 #, c-format msgid "" diff --git a/po/ru.po b/po/ru.po index 850f002c0..cd9f26fee 100644 --- a/po/ru.po +++ b/po/ru.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: linphone-gtk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-12-01 14:27+0100\n" +"POT-Creation-Date: 2014-12-03 13:39+0100\n" "PO-Revision-Date: 2014-12-01 13:28+0000\n" "Last-Translator: Gautier Pelloux-Prayer \n" "Language-Team: Russian (http://www.transifex.com/projects/p/linphone-gtk/" @@ -212,7 +212,7 @@ msgstr "Linphone - интернет видео телефон" msgid "%s (Default)" msgstr "%s (по умолчанию)" -#: ../gtk/main.c:2006 ../coreapi/callbacks.c:983 +#: ../gtk/main.c:2006 ../coreapi/callbacks.c:986 #, c-format msgid "We are transferred to %s" msgstr "Мы передали в %s" @@ -791,6 +791,19 @@ msgstr "Хорошо" msgid "Too loud" msgstr "Слишком громко" +#: ../gtk/audio_assistant.c:183 +#, fuzzy +msgid "Did you hear three beeps ?" +msgstr "Проиграть три сигнала" + +#: ../gtk/audio_assistant.c:292 ../gtk/audio_assistant.c:297 +msgid "Sound preferences not found " +msgstr "" + +#: ../gtk/audio_assistant.c:306 +msgid "Cannot launch system sound control " +msgstr "" + #: ../gtk/audio_assistant.c:318 msgid "" "Welcome!\n" @@ -809,6 +822,10 @@ msgstr "Уровень записи" msgid "No voice" msgstr "Нет голоса" +#: ../gtk/audio_assistant.c:334 ../gtk/audio_assistant.c:373 +msgid "System sound preferences" +msgstr "" + #: ../gtk/audio_assistant.c:369 msgid "Playback device" msgstr "Устройство воспроизведения" @@ -825,6 +842,14 @@ msgstr "Нажмите кнопку записи и скажите нескол msgid "Listen to your record voice" msgstr "Прослушайте ваш записанный голос" +#: ../gtk/audio_assistant.c:405 +msgid "Record" +msgstr "" + +#: ../gtk/audio_assistant.c:406 +msgid "Play" +msgstr "" + #: ../gtk/audio_assistant.c:433 msgid "Let's start Linphone now" msgstr "Давайте сейчас запустим linphone" @@ -1881,7 +1906,7 @@ msgstr "На звонок ответил %s." msgid "Incompatible, check codecs or security settings..." msgstr "Несовместимость, проверьте кодеки или параметры безопасности..." -#: ../coreapi/callbacks.c:530 ../coreapi/callbacks.c:826 +#: ../coreapi/callbacks.c:530 ../coreapi/callbacks.c:829 msgid "Incompatible media parameters." msgstr "Несовместимость медиа-параметров." @@ -1924,34 +1949,34 @@ msgstr "Звонок отклонён." msgid "Request timeout." msgstr "Таймаут запроса." -#: ../coreapi/callbacks.c:780 +#: ../coreapi/callbacks.c:783 msgid "Redirected" msgstr "Переадресован" -#: ../coreapi/callbacks.c:835 +#: ../coreapi/callbacks.c:838 msgid "Call failed." msgstr "Звонок не удался." -#: ../coreapi/callbacks.c:913 +#: ../coreapi/callbacks.c:916 #, c-format msgid "Registration on %s successful." msgstr "Регистрация на %s прошла успешно." -#: ../coreapi/callbacks.c:914 +#: ../coreapi/callbacks.c:917 #, c-format msgid "Unregistration on %s done." msgstr "Отмена регистрации на %s завершена." -#: ../coreapi/callbacks.c:932 +#: ../coreapi/callbacks.c:935 msgid "no response timeout" msgstr "время ожидания истекло" -#: ../coreapi/callbacks.c:935 +#: ../coreapi/callbacks.c:938 #, c-format msgid "Registration on %s failed: %s" msgstr "Регистрация на %s не удалась: %s" -#: ../coreapi/callbacks.c:942 +#: ../coreapi/callbacks.c:945 msgid "Service unavailable, retrying" msgstr "Сервис недоступен, повтор" @@ -1980,6 +2005,10 @@ msgstr "" msgid "missed" msgstr "" +#: ../coreapi/call_log.c:218 +msgid "unknown" +msgstr "" + #: ../coreapi/call_log.c:220 #, c-format msgid "" diff --git a/po/sr.po b/po/sr.po index cc7879209..0b339c65e 100644 --- a/po/sr.po +++ b/po/sr.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: linphone-gtk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-12-01 14:27+0100\n" -"PO-Revision-Date: 2014-12-01 13:28+0000\n" -"Last-Translator: Gautier Pelloux-Prayer \n" +"POT-Creation-Date: 2014-12-03 13:39+0100\n" +"PO-Revision-Date: 2014-12-02 10:05+0000\n" +"Last-Translator: Мирослав Николић \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/linphone-gtk/" "language/sr/)\n" "Language: sr\n" @@ -208,7 +208,7 @@ msgstr "Линфон — интернет телефон са снимком" msgid "%s (Default)" msgstr "%s (основно)" -#: ../gtk/main.c:2006 ../coreapi/callbacks.c:983 +#: ../gtk/main.c:2006 ../coreapi/callbacks.c:986 #, c-format msgid "We are transferred to %s" msgstr "Преселили смо се на %s" @@ -786,6 +786,19 @@ msgstr "Добар" msgid "Too loud" msgstr "Сувише гласан" +#: ../gtk/audio_assistant.c:183 +#, fuzzy +msgid "Did you hear three beeps ?" +msgstr "Пусти три писка" + +#: ../gtk/audio_assistant.c:292 ../gtk/audio_assistant.c:297 +msgid "Sound preferences not found " +msgstr "" + +#: ../gtk/audio_assistant.c:306 +msgid "Cannot launch system sound control " +msgstr "" + #: ../gtk/audio_assistant.c:318 msgid "" "Welcome!\n" @@ -806,6 +819,10 @@ msgstr "Снимљени волумен" msgid "No voice" msgstr "Нема гласа" +#: ../gtk/audio_assistant.c:334 ../gtk/audio_assistant.c:373 +msgid "System sound preferences" +msgstr "" + #: ../gtk/audio_assistant.c:369 msgid "Playback device" msgstr "Уређај за пуштање" @@ -822,6 +839,14 @@ msgstr "Притисните дугме за снимање и реците не msgid "Listen to your record voice" msgstr "Слушајте ваш снимљени глас" +#: ../gtk/audio_assistant.c:405 +msgid "Record" +msgstr "" + +#: ../gtk/audio_assistant.c:406 +msgid "Play" +msgstr "" + #: ../gtk/audio_assistant.c:433 msgid "Let's start Linphone now" msgstr "Хајде сада да покренемо Линфон" @@ -1877,7 +1902,7 @@ msgstr "На позив је одговорио „%s“." msgid "Incompatible, check codecs or security settings..." msgstr "Несагласно, проверите кодеке или безбедносна подешавања..." -#: ../coreapi/callbacks.c:530 ../coreapi/callbacks.c:826 +#: ../coreapi/callbacks.c:530 ../coreapi/callbacks.c:829 msgid "Incompatible media parameters." msgstr "Медијски параметри су несагласни." @@ -1920,34 +1945,34 @@ msgstr "Позив је одбијен." msgid "Request timeout." msgstr "Истекло је време захтева." -#: ../coreapi/callbacks.c:780 +#: ../coreapi/callbacks.c:783 msgid "Redirected" msgstr "Преусмерен" -#: ../coreapi/callbacks.c:835 +#: ../coreapi/callbacks.c:838 msgid "Call failed." msgstr "Позив није успео." -#: ../coreapi/callbacks.c:913 +#: ../coreapi/callbacks.c:916 #, c-format msgid "Registration on %s successful." msgstr "Уписивање на „%s“ је успело." -#: ../coreapi/callbacks.c:914 +#: ../coreapi/callbacks.c:917 #, c-format msgid "Unregistration on %s done." msgstr "Исписивање са „%s“ је обављено." -#: ../coreapi/callbacks.c:932 +#: ../coreapi/callbacks.c:935 msgid "no response timeout" msgstr "нема ограничења одговора" -#: ../coreapi/callbacks.c:935 +#: ../coreapi/callbacks.c:938 #, c-format msgid "Registration on %s failed: %s" msgstr "Уписивање на „%s“ није успело: %s" -#: ../coreapi/callbacks.c:942 +#: ../coreapi/callbacks.c:945 msgid "Service unavailable, retrying" msgstr "Услуга није доступна, поново покушавам" @@ -1966,14 +1991,18 @@ msgstr[2] "Пропустили сте %i позива." #: ../coreapi/call_log.c:209 msgid "aborted" -msgstr "" +msgstr "прекинут" #: ../coreapi/call_log.c:212 msgid "completed" -msgstr "" +msgstr "завршен" #: ../coreapi/call_log.c:215 msgid "missed" +msgstr "пропуштен" + +#: ../coreapi/call_log.c:218 +msgid "unknown" msgstr "" #: ../coreapi/call_log.c:220 @@ -1985,12 +2014,17 @@ msgid "" "Status: %s\n" "Duration: %i mn %i sec\n" msgstr "" +"%s на %s\n" +"Позивач: %s\n" +"Позивник: %s\n" +"Стање: %s\n" +"Трајање: %i мин. %i сек.\n" #: ../coreapi/call_log.c:221 msgid "Outgoing call" -msgstr "" +msgstr "Одлазни позив" #: ../gtk/videowindow.c:66 #, c-format msgid "Cannot play %s." -msgstr "" +msgstr "Не могу да пустим „%s“." diff --git a/po/sv.po b/po/sv.po index 9c326620c..e4cc62a10 100644 --- a/po/sv.po +++ b/po/sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: linphone-gtk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-12-01 14:27+0100\n" +"POT-Creation-Date: 2014-12-03 13:39+0100\n" "PO-Revision-Date: 2014-12-01 13:28+0000\n" "Last-Translator: Gautier Pelloux-Prayer \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/linphone-gtk/" @@ -199,7 +199,7 @@ msgstr "Linphone - en video Internet telefon" msgid "%s (Default)" msgstr "%s (Default)" -#: ../gtk/main.c:2006 ../coreapi/callbacks.c:983 +#: ../gtk/main.c:2006 ../coreapi/callbacks.c:986 #, c-format msgid "We are transferred to %s" msgstr "" @@ -761,6 +761,18 @@ msgstr "" msgid "Too loud" msgstr "" +#: ../gtk/audio_assistant.c:183 +msgid "Did you hear three beeps ?" +msgstr "" + +#: ../gtk/audio_assistant.c:292 ../gtk/audio_assistant.c:297 +msgid "Sound preferences not found " +msgstr "" + +#: ../gtk/audio_assistant.c:306 +msgid "Cannot launch system sound control " +msgstr "" + #: ../gtk/audio_assistant.c:318 msgid "" "Welcome!\n" @@ -779,6 +791,10 @@ msgstr "" msgid "No voice" msgstr "" +#: ../gtk/audio_assistant.c:334 ../gtk/audio_assistant.c:373 +msgid "System sound preferences" +msgstr "" + #: ../gtk/audio_assistant.c:369 msgid "Playback device" msgstr "" @@ -795,6 +811,14 @@ msgstr "" msgid "Listen to your record voice" msgstr "" +#: ../gtk/audio_assistant.c:405 +msgid "Record" +msgstr "" + +#: ../gtk/audio_assistant.c:406 +msgid "Play" +msgstr "" + #: ../gtk/audio_assistant.c:433 msgid "Let's start Linphone now" msgstr "" @@ -1829,7 +1853,7 @@ msgstr "" msgid "Incompatible, check codecs or security settings..." msgstr "" -#: ../coreapi/callbacks.c:530 ../coreapi/callbacks.c:826 +#: ../coreapi/callbacks.c:530 ../coreapi/callbacks.c:829 msgid "Incompatible media parameters." msgstr "" @@ -1872,34 +1896,34 @@ msgstr "Samtalet avböjdes." msgid "Request timeout." msgstr "" -#: ../coreapi/callbacks.c:780 +#: ../coreapi/callbacks.c:783 msgid "Redirected" msgstr "" -#: ../coreapi/callbacks.c:835 +#: ../coreapi/callbacks.c:838 msgid "Call failed." msgstr "" -#: ../coreapi/callbacks.c:913 +#: ../coreapi/callbacks.c:916 #, c-format msgid "Registration on %s successful." msgstr "Registrering hos %s lyckades." -#: ../coreapi/callbacks.c:914 +#: ../coreapi/callbacks.c:917 #, c-format msgid "Unregistration on %s done." msgstr "Avregistrering hos %s lyckades." -#: ../coreapi/callbacks.c:932 +#: ../coreapi/callbacks.c:935 msgid "no response timeout" msgstr "Inget svar inom angiven tid" -#: ../coreapi/callbacks.c:935 +#: ../coreapi/callbacks.c:938 #, c-format msgid "Registration on %s failed: %s" msgstr "Registrering hos %s mislyckades: %s" -#: ../coreapi/callbacks.c:942 +#: ../coreapi/callbacks.c:945 msgid "Service unavailable, retrying" msgstr "" @@ -1927,6 +1951,10 @@ msgstr "" msgid "missed" msgstr "" +#: ../coreapi/call_log.c:218 +msgid "unknown" +msgstr "" + #: ../coreapi/call_log.c:220 #, c-format msgid "" diff --git a/po/zh_CN.po b/po/zh_CN.po index 18a459c64..c7f5f7fd4 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: linphone-gtk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-12-01 14:27+0100\n" +"POT-Creation-Date: 2014-12-03 13:39+0100\n" "PO-Revision-Date: 2014-12-01 13:28+0000\n" "Last-Translator: Gautier Pelloux-Prayer \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/linphone-" @@ -194,7 +194,7 @@ msgstr "Linphone - 互联网视频电话" msgid "%s (Default)" msgstr "%s (默认)" -#: ../gtk/main.c:2006 ../coreapi/callbacks.c:983 +#: ../gtk/main.c:2006 ../coreapi/callbacks.c:986 #, c-format msgid "We are transferred to %s" msgstr "" @@ -757,6 +757,18 @@ msgstr "" msgid "Too loud" msgstr "" +#: ../gtk/audio_assistant.c:183 +msgid "Did you hear three beeps ?" +msgstr "" + +#: ../gtk/audio_assistant.c:292 ../gtk/audio_assistant.c:297 +msgid "Sound preferences not found " +msgstr "" + +#: ../gtk/audio_assistant.c:306 +msgid "Cannot launch system sound control " +msgstr "" + #: ../gtk/audio_assistant.c:318 msgid "" "Welcome!\n" @@ -775,6 +787,10 @@ msgstr "" msgid "No voice" msgstr "" +#: ../gtk/audio_assistant.c:334 ../gtk/audio_assistant.c:373 +msgid "System sound preferences" +msgstr "" + #: ../gtk/audio_assistant.c:369 msgid "Playback device" msgstr "" @@ -791,6 +807,14 @@ msgstr "" msgid "Listen to your record voice" msgstr "" +#: ../gtk/audio_assistant.c:405 +msgid "Record" +msgstr "" + +#: ../gtk/audio_assistant.c:406 +msgid "Play" +msgstr "" + #: ../gtk/audio_assistant.c:433 msgid "Let's start Linphone now" msgstr "" @@ -1822,7 +1846,7 @@ msgstr "" msgid "Incompatible, check codecs or security settings..." msgstr "" -#: ../coreapi/callbacks.c:530 ../coreapi/callbacks.c:826 +#: ../coreapi/callbacks.c:530 ../coreapi/callbacks.c:829 msgid "Incompatible media parameters." msgstr "" @@ -1865,34 +1889,34 @@ msgstr "呼叫被拒绝。" msgid "Request timeout." msgstr "" -#: ../coreapi/callbacks.c:780 +#: ../coreapi/callbacks.c:783 msgid "Redirected" msgstr "已重定向" -#: ../coreapi/callbacks.c:835 +#: ../coreapi/callbacks.c:838 msgid "Call failed." msgstr "呼叫失败。" -#: ../coreapi/callbacks.c:913 +#: ../coreapi/callbacks.c:916 #, c-format msgid "Registration on %s successful." msgstr "成功注册到 %s" -#: ../coreapi/callbacks.c:914 +#: ../coreapi/callbacks.c:917 #, c-format msgid "Unregistration on %s done." msgstr "已在 %s 解除注册。" -#: ../coreapi/callbacks.c:932 +#: ../coreapi/callbacks.c:935 msgid "no response timeout" msgstr "没有响应,超时" -#: ../coreapi/callbacks.c:935 +#: ../coreapi/callbacks.c:938 #, c-format msgid "Registration on %s failed: %s" msgstr "注册到 %s 失败: %s" -#: ../coreapi/callbacks.c:942 +#: ../coreapi/callbacks.c:945 msgid "Service unavailable, retrying" msgstr "" @@ -1919,6 +1943,10 @@ msgstr "" msgid "missed" msgstr "" +#: ../coreapi/call_log.c:218 +msgid "unknown" +msgstr "" + #: ../coreapi/call_log.c:220 #, c-format msgid "" diff --git a/po/zh_TW.po b/po/zh_TW.po index d3dfa7ab7..977249f46 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: linphone-gtk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-12-01 14:27+0100\n" +"POT-Creation-Date: 2014-12-03 13:39+0100\n" "PO-Revision-Date: 2014-12-01 13:28+0000\n" "Last-Translator: Gautier Pelloux-Prayer \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/" @@ -195,7 +195,7 @@ msgstr "Linphone - 網路視訊電話" msgid "%s (Default)" msgstr "%s (預設值)" -#: ../gtk/main.c:2006 ../coreapi/callbacks.c:983 +#: ../gtk/main.c:2006 ../coreapi/callbacks.c:986 #, c-format msgid "We are transferred to %s" msgstr "我們被轉接到 %s" @@ -758,6 +758,18 @@ msgstr "" msgid "Too loud" msgstr "" +#: ../gtk/audio_assistant.c:183 +msgid "Did you hear three beeps ?" +msgstr "" + +#: ../gtk/audio_assistant.c:292 ../gtk/audio_assistant.c:297 +msgid "Sound preferences not found " +msgstr "" + +#: ../gtk/audio_assistant.c:306 +msgid "Cannot launch system sound control " +msgstr "" + #: ../gtk/audio_assistant.c:318 msgid "" "Welcome!\n" @@ -776,6 +788,10 @@ msgstr "" msgid "No voice" msgstr "" +#: ../gtk/audio_assistant.c:334 ../gtk/audio_assistant.c:373 +msgid "System sound preferences" +msgstr "" + #: ../gtk/audio_assistant.c:369 msgid "Playback device" msgstr "" @@ -792,6 +808,14 @@ msgstr "" msgid "Listen to your record voice" msgstr "" +#: ../gtk/audio_assistant.c:405 +msgid "Record" +msgstr "" + +#: ../gtk/audio_assistant.c:406 +msgid "Play" +msgstr "" + #: ../gtk/audio_assistant.c:433 msgid "Let's start Linphone now" msgstr "" @@ -1824,7 +1848,7 @@ msgstr "通話由 %s 接聽。" msgid "Incompatible, check codecs or security settings..." msgstr "" -#: ../coreapi/callbacks.c:530 ../coreapi/callbacks.c:826 +#: ../coreapi/callbacks.c:530 ../coreapi/callbacks.c:829 msgid "Incompatible media parameters." msgstr "" @@ -1867,34 +1891,34 @@ msgstr "通話被拒接。" msgid "Request timeout." msgstr "" -#: ../coreapi/callbacks.c:780 +#: ../coreapi/callbacks.c:783 msgid "Redirected" msgstr "已重新導向" -#: ../coreapi/callbacks.c:835 +#: ../coreapi/callbacks.c:838 msgid "Call failed." msgstr "通話失敗。" -#: ../coreapi/callbacks.c:913 +#: ../coreapi/callbacks.c:916 #, c-format msgid "Registration on %s successful." msgstr "在 %s 註冊成功。" -#: ../coreapi/callbacks.c:914 +#: ../coreapi/callbacks.c:917 #, c-format msgid "Unregistration on %s done." msgstr "在 %s 取消註冊完成。" -#: ../coreapi/callbacks.c:932 +#: ../coreapi/callbacks.c:935 msgid "no response timeout" msgstr "沒有回應逾時" -#: ../coreapi/callbacks.c:935 +#: ../coreapi/callbacks.c:938 #, c-format msgid "Registration on %s failed: %s" msgstr "在 %s 註冊失敗:%s" -#: ../coreapi/callbacks.c:942 +#: ../coreapi/callbacks.c:945 msgid "Service unavailable, retrying" msgstr "" @@ -1921,6 +1945,10 @@ msgstr "" msgid "missed" msgstr "" +#: ../coreapi/call_log.c:218 +msgid "unknown" +msgstr "" + #: ../coreapi/call_log.c:220 #, c-format msgid "" From 15c6f3b8987fbe1958dc2b5cc9a194f7b0892f70 Mon Sep 17 00:00:00 2001 From: Gautier Pelloux-Prayer Date: Wed, 3 Dec 2014 17:36:39 +0100 Subject: [PATCH 014/187] Correctly fill ALL_LINGUAS in configure.ac --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 067a13b62..aa93f23e7 100644 --- a/configure.ac +++ b/configure.ac @@ -129,7 +129,7 @@ AC_CONFIG_COMMANDS([libtool-hacking], dnl Add the languages which your application supports here. PKG_PROG_PKG_CONFIG -ALL_LINGUAS="fr it de ja es pl cs nl sv pt_BR hu ru zh_CN nb_NO zh_TW he sr" +ALL_LINGUAS=$(cd po && echo *.po | sed 's/\.po//g') AC_SUBST(ALL_LINGUAS) AC_DEFINE_UNQUOTED(LINPHONE_ALL_LANGS, "$ALL_LINGUAS", [All supported languages]) From 124beb8e559a05da2a8ba6a77c2ada07c5116356 Mon Sep 17 00:00:00 2001 From: Sylvain Berfini Date: Thu, 4 Dec 2014 10:39:46 +0100 Subject: [PATCH 015/187] Fix linphonecontent when ZLIB is available --- coreapi/linphonecore.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/coreapi/linphonecore.c b/coreapi/linphonecore.c index de0c1228d..f051c7b2d 100644 --- a/coreapi/linphonecore.c +++ b/coreapi/linphonecore.c @@ -559,8 +559,8 @@ void linphone_core_upload_log_collection(LinphoneCore *core) { core->log_collection_upload_information = (LinphoneContent *)malloc(sizeof(LinphoneContent)); memset(core->log_collection_upload_information, 0, sizeof(LinphoneContent)); #ifdef HAVE_ZLIB - core->log_collection_upload_information->type = "application"; - core->log_collection_upload_information->subtype = "gzip"; + linphone_content_set_type(core->log_collection_upload_information, "application"); + linphone_content_set_subtype(core->log_collection_upload_information, "gzip"); #else linphone_content_set_type(core->log_collection_upload_information, "text"); linphone_content_set_subtype(core->log_collection_upload_information,"plain"); From a3080b65c292a2f7e3ea6d8e70e1fd96ea6d4c41 Mon Sep 17 00:00:00 2001 From: Gautier Pelloux-Prayer Date: Thu, 4 Dec 2014 11:05:31 +0100 Subject: [PATCH 016/187] Add .desktop files on Transifex --- .gitignore | 3 +++ .tx/config | 12 ++++++++- share/linphone.desktop.in | 56 ++++++++++++--------------------------- 3 files changed, 31 insertions(+), 40 deletions(-) diff --git a/.gitignore b/.gitignore index 85a6aed1d..2bbd7b4c4 100644 --- a/.gitignore +++ b/.gitignore @@ -78,3 +78,6 @@ Linphone.app *.dmg tester/linphone*.log tester/linphone_log.txt +.tx/linphone-gtk.linphonedesktopin/ +po/linphone.pot +.tx/linphone-gtk.audio-assistantdesktopin/ diff --git a/.tx/config b/.tx/config index 4c2a2acd7..0b35698f1 100644 --- a/.tx/config +++ b/.tx/config @@ -1,10 +1,20 @@ [main] host = https://www.transifex.com minimum_perc = 1 -type = PO [linphone-gtk.linphonepot] file_filter = po/.po source_file = po/linphone.pot source_lang = en +type = PO + +[linphone-gtk.linphonedesktopin] +source_file = share/linphone.desktop.in +source_lang = en +type = DESKTOP + +[linphone-gtk.audio-assistantdesktopin] +source_file = share/audio-assistant.desktop.in +source_lang = en +type = DESKTOP diff --git a/share/linphone.desktop.in b/share/linphone.desktop.in index c162ed904..725c7e105 100644 --- a/share/linphone.desktop.in +++ b/share/linphone.desktop.in @@ -1,47 +1,25 @@ [Desktop Entry] Name=Linphone Comment=Linphone is a web-phone -Comment[fr]=Linphone est un web-phone. -Comment[de]=Linphone ist ein web-phone. -Comment[af]=Linphone is 'n webtelefoon -Comment[sq]=Linphone është një telefon interneti -Comment[ast]=Linphone ye un teléfonu web -Comment[bn]=Linphone একটি ওয়েব ফোন -Comment[bs]=Linphone je mrežni telefon -Comment[pt_BR]=Linphone é um telefone web -Comment[bg]=Linphone е уеб телефон -Comment[ca@valencia]=El Linphone és un telèfon web -Comment[ca]=El Linphone és un telèfon web -Comment[zh_HK]=Linphone 是網絡電話(web-phone) -Comment[zh_TW]=Linphone 是網路電話(web-phone) -Comment[zh_CN]=Linphone 是一个网络电话程序 -Comment[crh]=Linphone bir web-telefonudur -Comment[nl]=Linphone is een webtelefoon -Comment[da]=Linphone er en nettelefon -Comment[cs]=Linphone webový telefon -Comment[fi]=Linphone on verkkopuhelin -Comment[gl]=Linphone é un teléfono-web -Comment[el]=Το Linphone είναι ένα διαδικτυακό τηλέφωνο -Comment[hu]=A Linphone egy webes telefon -Comment[is]=Linphone er vefsími -Comment[it]=Linphone è un telefono web -Comment[ja]=Linphone はウェブ電話です -Comment[ky]=Linphone - бул веб - телефон -Comment[ms]=Linphone adalah telefon-sesawang -Comment[oc]=Linphone es una aisina de telefonia IP -Comment[pl]=Rozbudowany telefon internetowy z funkcją wideorozmowy -Comment[nb]=Lintelefon er en nett-telefon -Comment[pt]=Linphone é um telefone da internet -Comment[ro]=Linphone este un telefon web -Comment[ru]=Linphone — это веб-телефон -Comment[sl]=Linphone je spletni telefon -Comment[sv]=Webbtelefon -Comment[es]=Linphone es un teléfono web -Comment[vi]=Linphone là một điện thoại web -Comment[uk]=Інтернет-телефон -Comment[tr]=Linphone bir web-telefonudur Type=Application Exec=linphone Icon=@prefix@/share/pixmaps/linphone/linphone.png Terminal=false Categories=Network;Telephony; + + +# Translations +Name[de]=Linphone +Name[he]=Linphone +Name[ar]=لِنْفُونْ +Name[hu]=Linphone +Name[ru]=Linphone +Name[nb_NO]=Linphone +Name[it]=Linphone +Name[ja]=Linphone +Name[cs]=Linphone +Name[sr]=Линфон +Name[sv]=Linphone +Name[zh_CN]=Linphone +Name[fr]=Linphone +Name[zh_TW]=Linphone From 08d1dd066e57d553ec6d937cf3dfad233aa0fcba Mon Sep 17 00:00:00 2001 From: Gautier Pelloux-Prayer Date: Thu, 4 Dec 2014 11:07:20 +0100 Subject: [PATCH 017/187] update po files --- po/ar.po | 165 +++++++++++++++++++++++++++++++++++++++------------- po/cs.po | 2 +- po/de.po | 5 +- po/es.po | 2 +- po/fr.po | 17 +++--- po/he.po | 5 +- po/hu.po | 2 +- po/it.po | 2 +- po/ja.po | 30 +++++----- po/nb_NO.po | 2 +- po/nl.po | 2 +- po/pl.po | 2 +- po/pt_BR.po | 2 +- po/ru.po | 5 +- po/sr.po | 17 +++--- po/sv.po | 2 +- po/zh_CN.po | 2 +- po/zh_TW.po | 2 +- 18 files changed, 174 insertions(+), 92 deletions(-) diff --git a/po/ar.po b/po/ar.po index 9ffd49675..23def9ce8 100644 --- a/po/ar.po +++ b/po/ar.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # محيي الدين , 2014 # محيي الدين , 2014 @@ -9,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: linphone-gtk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-12-01 14:27+0100\n" -"PO-Revision-Date: 2014-12-01 17:44+0000\n" +"POT-Creation-Date: 2014-12-03 13:39+0100\n" +"PO-Revision-Date: 2014-12-04 09:51+0000\n" "Last-Translator: محيي الدين \n" -"Language-Team: Arabic (http://www.transifex.com/projects/p/linphone-gtk/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/projects/p/linphone-gtk/" +"language/ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: ../gtk/calllogs.c:148 ../gtk/friendlist.c:974 #, c-format @@ -77,7 +79,9 @@ msgstr[5] "%i ثانية" msgid "" "%s\tQuality: %s\n" "%s\t%s\t" -msgstr "%s\tالجودة : %s\n%s\t%s\t" +msgstr "" +"%s\tالجودة : %s\n" +"%s\t%s\t" #: ../gtk/calllogs.c:341 #, c-format @@ -127,9 +131,10 @@ msgstr "إذا تم التفعيل، سيجيب تلقائيا عن المكال #: ../gtk/main.c:149 msgid "" -"Specifiy a working directory (should be the base of the installation, eg: " -"c:\\Program Files\\Linphone)" -msgstr "حدِّد مجلد العمل (الذي سيكون مجلد التثبيت، مثلا c:\\Program Files\\Linphone)" +"Specifiy a working directory (should be the base of the installation, eg: c:" +"\\Program Files\\Linphone)" +msgstr "" +"حدِّد مجلد العمل (الذي سيكون مجلد التثبيت، مثلا c:\\Program Files\\Linphone)" #: ../gtk/main.c:156 msgid "Configuration file" @@ -143,16 +148,22 @@ msgstr "ابدأ مرشد الصوت" #, c-format msgid "" "%s would like to add you to his contact list.\n" -"Would you allow him to see your presence status or add him to your contact list ?\n" +"Would you allow him to see your presence status or add him to your contact " +"list ?\n" "If you answer no, this person will be temporarily blacklisted." -msgstr "%s يريد إضافتك إلى جهة اتصاله.\nهل تريد السماح له برؤية معلومات حضورك وكذا إضافته إلى جهة اتصالك أيضا ؟ إذا أجبت ب لا، سيُحظَر هذا الشخص مؤقتا." +msgstr "" +"%s يريد إضافتك إلى جهة اتصاله.\n" +"هل تريد السماح له برؤية معلومات حضورك وكذا إضافته إلى جهة اتصالك أيضا ؟ إذا " +"أجبت ب لا، سيُحظَر هذا الشخص مؤقتا." #: ../gtk/main.c:1162 #, c-format msgid "" "Please enter your password for username %s\n" " at realm %s:" -msgstr "ادخل كلمة السر ل %s\n في نطاق %s:" +msgstr "" +"ادخل كلمة السر ل %s\n" +" في نطاق %s:" #: ../gtk/main.c:1283 msgid "Call error" @@ -201,7 +212,7 @@ msgstr "لِنْفُونْ - الهاتف المرئي عبر الإنترنت" msgid "%s (Default)" msgstr "%s (افتراضي)" -#: ../gtk/main.c:2006 ../coreapi/callbacks.c:983 +#: ../gtk/main.c:2006 ../coreapi/callbacks.c:986 #, c-format msgid "We are transferred to %s" msgstr "التحويل إلى %s" @@ -210,7 +221,9 @@ msgstr "التحويل إلى %s" msgid "" "No sound cards have been detected on this computer.\n" "You won't be able to send or receive audio calls." -msgstr "لا وجود للوحة الصوت على هذا الحاسوب.\nلن تتمكن من تلقي أو إجراء أي مكالمة." +msgstr "" +"لا وجود للوحة الصوت على هذا الحاسوب.\n" +"لن تتمكن من تلقي أو إجراء أي مكالمة." #: ../gtk/main.c:2157 msgid "A free SIP video-phone" @@ -383,7 +396,9 @@ msgstr "ZRTP" msgid "" "A more recent version is availalble from %s.\n" "Would you like to open a browser to download it ?" -msgstr "يوجد إصدار حديث من طرف %s.\nهل تريد فتح المتصفح لتنزيله ؟" +msgstr "" +"يوجد إصدار حديث من طرف %s.\n" +"هل تريد فتح المتصفح لتنزيله ؟" #: ../gtk/update.c:91 msgid "You are running the lastest version." @@ -424,7 +439,9 @@ msgstr[5] "عُثِر على %i جهة اتصال" msgid "" "Welcome!\n" "This assistant will help you to use a SIP account for your calls." -msgstr "مرحبا !\nسيمكنك هذا المرشد من إعداد حسابك SIP لإجراء المكالمات." +msgstr "" +"مرحبا !\n" +"سيمكنك هذا المرشد من إعداد حسابك SIP لإجراء المكالمات." #: ../gtk/setupwizard.c:43 msgid "Create an account on linphone.org" @@ -502,7 +519,9 @@ msgstr "أحطني علما بتحديثات لِنْفُونْ" msgid "" "Error, account not validated, username already used or server unreachable.\n" "Please go back and try again." -msgstr "خطأ، لم يتم تأكيد الحساب، إسم المستخدم سبق استخدامه أو تعذر الوصول للخادم.\nيُرجى إعادة المحاولة لاحقا." +msgstr "" +"خطأ، لم يتم تأكيد الحساب، إسم المستخدم سبق استخدامه أو تعذر الوصول للخادم.\n" +"يُرجى إعادة المحاولة لاحقا." #: ../gtk/setupwizard.c:405 msgid "Thank you. Your account is now configured and ready for use." @@ -510,9 +529,13 @@ msgstr "شكرا لك، لقد جرت تهيئة حسابك وهو الآن قا #: ../gtk/setupwizard.c:413 msgid "" -"Please validate your account by clicking on the link we just sent you by email.\n" +"Please validate your account by clicking on the link we just sent you by " +"email.\n" "Then come back here and press Next button." -msgstr "يُرجى تأكيد حسابك وذلك بالضغط على الوصلة التي أرسلناها لك بالبريد الإلكتروني.\nثم ارجع إلى هنا واضغط على زر التالي." +msgstr "" +"يُرجى تأكيد حسابك وذلك بالضغط على الوصلة التي أرسلناها لك بالبريد " +"الإلكتروني.\n" +"ثم ارجع إلى هنا واضغط على زر التالي." #: ../gtk/setupwizard.c:602 msgid "SIP account configuration assistant" @@ -617,7 +640,9 @@ msgstr "مباشرة أو عبر خادم" msgid "" "download: %f\n" "upload: %f (kbit/s)" -msgstr "التنزيل % f\nالرفع : %f (ك.بِتْ/الثانية)" +msgstr "" +"التنزيل % f\n" +"الرفع : %f (ك.بِتْ/الثانية)" #: ../gtk/incall_view.c:272 ../gtk/incall_view.c:274 #, c-format @@ -727,7 +752,9 @@ msgstr "إيقاف مؤقت" msgid "" "Recording into\n" "%s %s" -msgstr "يسجل في\n%s %s" +msgstr "" +"يسجل في\n" +"%s %s" #: ../gtk/incall_view.c:948 msgid "(Paused)" @@ -764,11 +791,25 @@ msgstr "جيد" msgid "Too loud" msgstr "صاخب" +#: ../gtk/audio_assistant.c:183 +msgid "Did you hear three beeps ?" +msgstr "هل سمعت ثلاث رنات ؟" + +#: ../gtk/audio_assistant.c:292 ../gtk/audio_assistant.c:297 +msgid "Sound preferences not found " +msgstr "لم يعثر على تفضيلات الصوت" + +#: ../gtk/audio_assistant.c:306 +msgid "Cannot launch system sound control " +msgstr "لم يتمكن من تشغيل التحكم في الصوت للنظام" + #: ../gtk/audio_assistant.c:318 msgid "" "Welcome!\n" "This assistant will help you to configure audio settings for Linphone" -msgstr "مرحبا !\nسيمكنك هذا المرشد من تهيئة إعدادات الصوت من أجل لِنْفُونْ" +msgstr "" +"مرحبا !\n" +"سيمكنك هذا المرشد من تهيئة إعدادات الصوت من أجل لِنْفُونْ" #: ../gtk/audio_assistant.c:328 msgid "Capture device" @@ -782,6 +823,10 @@ msgstr "الحجم المسجَّل" msgid "No voice" msgstr "صامت" +#: ../gtk/audio_assistant.c:334 ../gtk/audio_assistant.c:373 +msgid "System sound preferences" +msgstr "تفضيلات الصوت للنظام" + #: ../gtk/audio_assistant.c:369 msgid "Playback device" msgstr "جهاز السماع" @@ -798,6 +843,14 @@ msgstr "اضغط على زر التسجيل وانطق ببعض الكلمات" msgid "Listen to your record voice" msgstr "استمع لصوتك المسجَّل" +#: ../gtk/audio_assistant.c:405 +msgid "Record" +msgstr "تسجيل" + +#: ../gtk/audio_assistant.c:406 +msgid "Play" +msgstr "تشغيل" + #: ../gtk/audio_assistant.c:433 msgid "Let's start Linphone now" msgstr "لنُشغِّل لِنْفُونْ الآن" @@ -1008,7 +1061,20 @@ msgid "" "cs: Petr Pisar \n" "hu: anonymous\n" "he: Eli Zaretskii \n" -msgstr "fr: Simon Morlat\nen: Simon Morlat and Delphine Perreau\nit: Alberto Zanoni \nde: Jean-Jacques Sarton \nsv: Daniel Nylander \nes: Jesus Benitez \nja: YAMAGUCHI YOSHIYA \npt_BR: Rafael Caesar Lenzi \npl: Robert Nasiadek \ncs: Petr Pisar \nhu: anonymous\nhe: Eli Zaretskii \nar: Muhiyeddine Cherik \n" +msgstr "" +"fr: Simon Morlat\n" +"en: Simon Morlat and Delphine Perreau\n" +"it: Alberto Zanoni \n" +"de: Jean-Jacques Sarton \n" +"sv: Daniel Nylander \n" +"es: Jesus Benitez \n" +"ja: YAMAGUCHI YOSHIYA \n" +"pt_BR: Rafael Caesar Lenzi \n" +"pl: Robert Nasiadek \n" +"cs: Petr Pisar \n" +"hu: anonymous\n" +"he: Eli Zaretskii \n" +"ar: Muhiyeddine Cherik \n" #: ../gtk/contact.ui.h:2 msgid "SIP Address" @@ -1394,7 +1460,9 @@ msgstr "فعِّل التحكم المتكيف مع الصبيب" msgid "" "Adaptive rate control is a technique to dynamically guess the available " "bandwidth during a call." -msgstr "التحكم المتكيف مع الصبيب هو تقنية لملائمة جودة الصوت والصورة بناءً على سعة قناة الاتصال المتاحة خلال المكالمة." +msgstr "" +"التحكم المتكيف مع الصبيب هو تقنية لملائمة جودة الصوت والصورة بناءً على سعة " +"قناة الاتصال المتاحة خلال المكالمة." #: ../gtk/parameters.ui.h:71 msgid "Bandwidth control" @@ -1643,9 +1711,16 @@ msgstr "تحديد عنوان URI التهيئة عن بعد" #: ../gtk/config-uri.ui.h:2 msgid "" -"This dialog allows to set an http or https address when configuration is to be fetched at startup.\n" -"Please enter or modify the configuration URI below. After clicking OK, Linphone will restart automatically in order to fetch and take into account the new configuration. " -msgstr "يسمح لك مربع الحوار هذا بإعداد عنوان http أو https الذي من خلاله تود جلب التهيئة عند بدء البرنامج.\nأدخل العنوان أسفله. بعد تأكيد الأمر، ستجري إعادة تشغيل لِنْفُونْ تلقائيا من أجل جلب والأخذ بعين الاعتبار الإعدادات الحديثة." +"This dialog allows to set an http or https address when configuration is to " +"be fetched at startup.\n" +"Please enter or modify the configuration URI below. After clicking OK, " +"Linphone will restart automatically in order to fetch and take into account " +"the new configuration. " +msgstr "" +"يسمح لك مربع الحوار هذا بإعداد عنوان http أو https الذي من خلاله تود جلب " +"التهيئة عند بدء البرنامج.\n" +"أدخل العنوان أسفله. بعد تأكيد الأمر، ستجري إعادة تشغيل لِنْفُونْ تلقائيا من أجل " +"جلب والأخذ بعين الاعتبار الإعدادات الحديثة." #: ../gtk/provisioning-fetch.ui.h:1 msgid "Configuring..." @@ -1776,13 +1851,16 @@ msgstr "حالة مجهولة" msgid "" "The sip proxy address you entered is invalid, it must start with \"sip:\" " "followed by a hostname." -msgstr "عنوان SIP الذي أدخلت غير صالح، يجب أن يبدأ ب \"sip:\" متبوعا بإسم النطاق." +msgstr "" +"عنوان SIP الذي أدخلت غير صالح، يجب أن يبدأ ب \"sip:\" متبوعا بإسم النطاق." #: ../coreapi/proxy.c:325 msgid "" "The sip identity you entered is invalid.\n" "It should look like sip:username@proxydomain, such as sip:alice@example.net" -msgstr "هوية SIP التي أدخلت غير صحيحة.\nيجب أن تشبه هذا النمط sip:username@proxydomain، مثلا sip:alice@example.net" +msgstr "" +"هوية SIP التي أدخلت غير صحيحة.\n" +"يجب أن تشبه هذا النمط sip:username@proxydomain، مثلا sip:alice@example.net" #: ../coreapi/proxy.c:1377 #, c-format @@ -1824,7 +1902,7 @@ msgstr "أجاب عن المكالمة %s." msgid "Incompatible, check codecs or security settings..." msgstr "غير موائم، تحقق من المراميز أو إعدادات الأمان..." -#: ../coreapi/callbacks.c:530 ../coreapi/callbacks.c:826 +#: ../coreapi/callbacks.c:530 ../coreapi/callbacks.c:829 msgid "Incompatible media parameters." msgstr "إعدادات الوسائط غير موائمة." @@ -1867,34 +1945,34 @@ msgstr "تم تجاهل المكالمة." msgid "Request timeout." msgstr "انتهت مهلة الطلب." -#: ../coreapi/callbacks.c:780 +#: ../coreapi/callbacks.c:783 msgid "Redirected" msgstr "مُوجَّه" -#: ../coreapi/callbacks.c:835 +#: ../coreapi/callbacks.c:838 msgid "Call failed." msgstr "فشل الاتصال." -#: ../coreapi/callbacks.c:913 +#: ../coreapi/callbacks.c:916 #, c-format msgid "Registration on %s successful." msgstr "تم التسجيل في %s بنجاح." -#: ../coreapi/callbacks.c:914 +#: ../coreapi/callbacks.c:917 #, c-format msgid "Unregistration on %s done." msgstr "أُلغي التسجيل في %s ." -#: ../coreapi/callbacks.c:932 +#: ../coreapi/callbacks.c:935 msgid "no response timeout" msgstr "لا إجابة قبل انتهاء المهلة" -#: ../coreapi/callbacks.c:935 +#: ../coreapi/callbacks.c:938 #, c-format msgid "Registration on %s failed: %s" msgstr "فَشِل التسجيل في %s: %s" -#: ../coreapi/callbacks.c:942 +#: ../coreapi/callbacks.c:945 msgid "Service unavailable, retrying" msgstr "خدمة غير متاحة، تجري الإعادة" @@ -1926,6 +2004,10 @@ msgstr "اكتملت" msgid "missed" msgstr "فاتت" +#: ../coreapi/call_log.c:218 +msgid "unknown" +msgstr "مجهول" + #: ../coreapi/call_log.c:220 #, c-format msgid "" @@ -1934,7 +2016,12 @@ msgid "" "To: %s\n" "Status: %s\n" "Duration: %i mn %i sec\n" -msgstr "%s في %s\nمن : %s\nإلى : %s\nالحالة : %s\nالمدة : %i دقيقة %i ثانية\n" +msgstr "" +"%s في %s\n" +"من : %s\n" +"إلى : %s\n" +"الحالة : %s\n" +"المدة : %i دقيقة %i ثانية\n" #: ../coreapi/call_log.c:221 msgid "Outgoing call" diff --git a/po/cs.po b/po/cs.po index 28b929f6a..36f3908b2 100644 --- a/po/cs.po +++ b/po/cs.po @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: linphone-gtk\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-12-03 13:39+0100\n" -"PO-Revision-Date: 2014-12-01 13:28+0000\n" +"PO-Revision-Date: 2014-12-04 09:51+0000\n" "Last-Translator: Gautier Pelloux-Prayer \n" "Language-Team: Czech (http://www.transifex.com/projects/p/linphone-gtk/" "language/cs/)\n" diff --git a/po/de.po b/po/de.po index 2cec8ab38..722a39390 100644 --- a/po/de.po +++ b/po/de.po @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: linphone-gtk\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-12-03 13:39+0100\n" -"PO-Revision-Date: 2014-12-01 13:28+0000\n" +"PO-Revision-Date: 2014-12-04 09:51+0000\n" "Last-Translator: Gautier Pelloux-Prayer \n" "Language-Team: German (http://www.transifex.com/projects/p/linphone-gtk/" "language/de/)\n" @@ -790,9 +790,8 @@ msgid "Too loud" msgstr "zu laut" #: ../gtk/audio_assistant.c:183 -#, fuzzy msgid "Did you hear three beeps ?" -msgstr "spiele drei Pieptöne ab" +msgstr "" #: ../gtk/audio_assistant.c:292 ../gtk/audio_assistant.c:297 msgid "Sound preferences not found " diff --git a/po/es.po b/po/es.po index 23516be7b..94034a03e 100644 --- a/po/es.po +++ b/po/es.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: linphone-gtk\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-12-03 13:39+0100\n" -"PO-Revision-Date: 2014-12-01 13:28+0000\n" +"PO-Revision-Date: 2014-12-03 12:39+0000\n" "Last-Translator: Gautier Pelloux-Prayer \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/linphone-gtk/" "language/es/)\n" diff --git a/po/fr.po b/po/fr.po index 6293ef88b..5e41a459f 100644 --- a/po/fr.po +++ b/po/fr.po @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: linphone-gtk\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-12-03 13:39+0100\n" -"PO-Revision-Date: 2014-12-01 13:41+0000\n" +"PO-Revision-Date: 2014-12-04 09:51+0000\n" "Last-Translator: Gautier Pelloux-Prayer \n" "Language-Team: French (http://www.transifex.com/projects/p/linphone-gtk/" "language/fr/)\n" @@ -788,17 +788,16 @@ msgid "Too loud" msgstr "Trop bruyant" #: ../gtk/audio_assistant.c:183 -#, fuzzy msgid "Did you hear three beeps ?" -msgstr "Joue trois bips" +msgstr "Avez-vous entendu trois bips ?" #: ../gtk/audio_assistant.c:292 ../gtk/audio_assistant.c:297 msgid "Sound preferences not found " -msgstr "" +msgstr "Préférences son non trouvé" #: ../gtk/audio_assistant.c:306 msgid "Cannot launch system sound control " -msgstr "" +msgstr "Impossible de démarrer le contrôleur système du son" #: ../gtk/audio_assistant.c:318 msgid "" @@ -823,7 +822,7 @@ msgstr "Silencieux" #: ../gtk/audio_assistant.c:334 ../gtk/audio_assistant.c:373 msgid "System sound preferences" -msgstr "" +msgstr "Préférences son système" #: ../gtk/audio_assistant.c:369 msgid "Playback device" @@ -843,11 +842,11 @@ msgstr "Ecoutez votre voix enregistrée" #: ../gtk/audio_assistant.c:405 msgid "Record" -msgstr "" +msgstr "Enregistrer" #: ../gtk/audio_assistant.c:406 msgid "Play" -msgstr "" +msgstr "Jouer" #: ../gtk/audio_assistant.c:433 msgid "Let's start Linphone now" @@ -2007,7 +2006,7 @@ msgstr "manqué" #: ../coreapi/call_log.c:218 msgid "unknown" -msgstr "" +msgstr "inconnu" #: ../coreapi/call_log.c:220 #, c-format diff --git a/po/he.po b/po/he.po index 8860ed86d..841b4e161 100644 --- a/po/he.po +++ b/po/he.po @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: linphone-gtk\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-12-03 13:39+0100\n" -"PO-Revision-Date: 2014-12-01 13:28+0000\n" +"PO-Revision-Date: 2014-12-04 09:51+0000\n" "Last-Translator: Gautier Pelloux-Prayer \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/linphone-gtk/" "language/he/)\n" @@ -778,9 +778,8 @@ msgid "Too loud" msgstr "חזק מדי" #: ../gtk/audio_assistant.c:183 -#, fuzzy msgid "Did you hear three beeps ?" -msgstr "נגן שלושה צפצופים" +msgstr "" #: ../gtk/audio_assistant.c:292 ../gtk/audio_assistant.c:297 msgid "Sound preferences not found " diff --git a/po/hu.po b/po/hu.po index 314af405f..e993a1b8a 100644 --- a/po/hu.po +++ b/po/hu.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: linphone-gtk\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-12-03 13:39+0100\n" -"PO-Revision-Date: 2014-12-01 13:28+0000\n" +"PO-Revision-Date: 2014-12-04 09:51+0000\n" "Last-Translator: Gautier Pelloux-Prayer \n" "Language-Team: Hungarian (http://www.transifex.com/projects/p/linphone-gtk/" "language/hu/)\n" diff --git a/po/it.po b/po/it.po index 53fab0c8b..b2f0d2ca6 100644 --- a/po/it.po +++ b/po/it.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: linphone-gtk\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-12-03 13:39+0100\n" -"PO-Revision-Date: 2014-12-01 13:28+0000\n" +"PO-Revision-Date: 2014-12-04 09:51+0000\n" "Last-Translator: Gautier Pelloux-Prayer \n" "Language-Team: Italian (http://www.transifex.com/projects/p/linphone-gtk/" "language/it/)\n" diff --git a/po/ja.po b/po/ja.po index b3cfa7019..a3d453f47 100644 --- a/po/ja.po +++ b/po/ja.po @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: linphone-gtk\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-12-03 13:39+0100\n" -"PO-Revision-Date: 2014-12-01 16:32+0000\n" +"PO-Revision-Date: 2014-12-04 09:51+0000\n" "Last-Translator: Alexander\n" "Language-Team: Japanese (http://www.transifex.com/projects/p/linphone-gtk/" "language/ja/)\n" @@ -645,7 +645,7 @@ msgstr "着信" #: ../gtk/incall_view.c:562 msgid "good" -msgstr "" +msgstr "良い" #: ../gtk/incall_view.c:564 msgid "average" @@ -653,7 +653,7 @@ msgstr "アベレージ" #: ../gtk/incall_view.c:566 msgid "poor" -msgstr "" +msgstr "悪い" #: ../gtk/incall_view.c:568 msgid "very poor" @@ -674,19 +674,19 @@ msgstr "SRTPのセキュリティ" #: ../gtk/incall_view.c:685 #, c-format msgid "Secured by ZRTP - [auth token: %s]" -msgstr "" +msgstr "ZRTP によるセキュリティ - [auth token: %s]" #: ../gtk/incall_view.c:691 msgid "Set unverified" -msgstr "" +msgstr "セット未検証" #: ../gtk/incall_view.c:691 ../gtk/main.ui.h:4 msgid "Set verified" -msgstr "" +msgstr "セット検証済" #: ../gtk/incall_view.c:722 msgid "In conference" -msgstr "" +msgstr "会議で" #: ../gtk/incall_view.c:722 msgid "In call" @@ -702,7 +702,7 @@ msgstr "" #: ../gtk/incall_view.c:825 msgid "Transfer in progress" -msgstr "" +msgstr "進行中の転送" #: ../gtk/incall_view.c:828 msgid "Transfer done." @@ -748,31 +748,31 @@ msgstr "" #: ../gtk/audio_assistant.c:98 msgid "No voice detected" -msgstr "" +msgstr "音声が検出できません" #: ../gtk/audio_assistant.c:99 msgid "Too low" -msgstr "" +msgstr "小さい" #: ../gtk/audio_assistant.c:100 msgid "Good" -msgstr "" +msgstr "丁度よい" #: ../gtk/audio_assistant.c:101 msgid "Too loud" -msgstr "" +msgstr "大きい" #: ../gtk/audio_assistant.c:183 msgid "Did you hear three beeps ?" -msgstr "" +msgstr "3回のビープ音が聞こえましたか?" #: ../gtk/audio_assistant.c:292 ../gtk/audio_assistant.c:297 msgid "Sound preferences not found " -msgstr "" +msgstr "音声の設定が見つかりません" #: ../gtk/audio_assistant.c:306 msgid "Cannot launch system sound control " -msgstr "" +msgstr "音声制御システムを起動できません" #: ../gtk/audio_assistant.c:318 msgid "" diff --git a/po/nb_NO.po b/po/nb_NO.po index fda1ca808..fbf404aa5 100644 --- a/po/nb_NO.po +++ b/po/nb_NO.po @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: linphone-gtk\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-12-03 13:39+0100\n" -"PO-Revision-Date: 2014-12-01 13:28+0000\n" +"PO-Revision-Date: 2014-12-04 09:51+0000\n" "Last-Translator: Gautier Pelloux-Prayer \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/" "p/linphone-gtk/language/nb_NO/)\n" diff --git a/po/nl.po b/po/nl.po index efa0e6ec5..a9b238bc5 100644 --- a/po/nl.po +++ b/po/nl.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: linphone-gtk\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-12-03 13:39+0100\n" -"PO-Revision-Date: 2014-12-01 13:28+0000\n" +"PO-Revision-Date: 2014-12-03 12:39+0000\n" "Last-Translator: Gautier Pelloux-Prayer \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/linphone-gtk/" "language/nl/)\n" diff --git a/po/pl.po b/po/pl.po index 6ab8c39dc..11376931f 100644 --- a/po/pl.po +++ b/po/pl.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: linphone-gtk\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-12-03 13:39+0100\n" -"PO-Revision-Date: 2014-12-01 13:28+0000\n" +"PO-Revision-Date: 2014-12-03 12:39+0000\n" "Last-Translator: Gautier Pelloux-Prayer \n" "Language-Team: Polish (http://www.transifex.com/projects/p/linphone-gtk/" "language/pl/)\n" diff --git a/po/pt_BR.po b/po/pt_BR.po index fde6c49fb..cafe7bd91 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: linphone-gtk\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-12-03 13:39+0100\n" -"PO-Revision-Date: 2014-12-01 13:28+0000\n" +"PO-Revision-Date: 2014-12-03 12:39+0000\n" "Last-Translator: Gautier Pelloux-Prayer \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/" "linphone-gtk/language/pt_BR/)\n" diff --git a/po/ru.po b/po/ru.po index cd9f26fee..f8fa42081 100644 --- a/po/ru.po +++ b/po/ru.po @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: linphone-gtk\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-12-03 13:39+0100\n" -"PO-Revision-Date: 2014-12-01 13:28+0000\n" +"PO-Revision-Date: 2014-12-04 09:51+0000\n" "Last-Translator: Gautier Pelloux-Prayer \n" "Language-Team: Russian (http://www.transifex.com/projects/p/linphone-gtk/" "language/ru/)\n" @@ -792,9 +792,8 @@ msgid "Too loud" msgstr "Слишком громко" #: ../gtk/audio_assistant.c:183 -#, fuzzy msgid "Did you hear three beeps ?" -msgstr "Проиграть три сигнала" +msgstr "" #: ../gtk/audio_assistant.c:292 ../gtk/audio_assistant.c:297 msgid "Sound preferences not found " diff --git a/po/sr.po b/po/sr.po index 0b339c65e..84541289d 100644 --- a/po/sr.po +++ b/po/sr.po @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: linphone-gtk\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-12-03 13:39+0100\n" -"PO-Revision-Date: 2014-12-02 10:05+0000\n" +"PO-Revision-Date: 2014-12-04 09:51+0000\n" "Last-Translator: Мирослав Николић \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/linphone-gtk/" "language/sr/)\n" @@ -787,17 +787,16 @@ msgid "Too loud" msgstr "Сувише гласан" #: ../gtk/audio_assistant.c:183 -#, fuzzy msgid "Did you hear three beeps ?" -msgstr "Пусти три писка" +msgstr "Да ли сте чули три писка ?" #: ../gtk/audio_assistant.c:292 ../gtk/audio_assistant.c:297 msgid "Sound preferences not found " -msgstr "" +msgstr "Нисам пронашао поставке звука " #: ../gtk/audio_assistant.c:306 msgid "Cannot launch system sound control " -msgstr "" +msgstr "Не могу да покренем управљање звуком система " #: ../gtk/audio_assistant.c:318 msgid "" @@ -821,7 +820,7 @@ msgstr "Нема гласа" #: ../gtk/audio_assistant.c:334 ../gtk/audio_assistant.c:373 msgid "System sound preferences" -msgstr "" +msgstr "Поставке звука система" #: ../gtk/audio_assistant.c:369 msgid "Playback device" @@ -841,11 +840,11 @@ msgstr "Слушајте ваш снимљени глас" #: ../gtk/audio_assistant.c:405 msgid "Record" -msgstr "" +msgstr "Сними" #: ../gtk/audio_assistant.c:406 msgid "Play" -msgstr "" +msgstr "Пусти" #: ../gtk/audio_assistant.c:433 msgid "Let's start Linphone now" @@ -2003,7 +2002,7 @@ msgstr "пропуштен" #: ../coreapi/call_log.c:218 msgid "unknown" -msgstr "" +msgstr "непознато" #: ../coreapi/call_log.c:220 #, c-format diff --git a/po/sv.po b/po/sv.po index e4cc62a10..631dde639 100644 --- a/po/sv.po +++ b/po/sv.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: linphone-gtk\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-12-03 13:39+0100\n" -"PO-Revision-Date: 2014-12-01 13:28+0000\n" +"PO-Revision-Date: 2014-12-04 09:51+0000\n" "Last-Translator: Gautier Pelloux-Prayer \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/linphone-gtk/" "language/sv/)\n" diff --git a/po/zh_CN.po b/po/zh_CN.po index c7f5f7fd4..79bd07e81 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: linphone-gtk\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-12-03 13:39+0100\n" -"PO-Revision-Date: 2014-12-01 13:28+0000\n" +"PO-Revision-Date: 2014-12-04 09:51+0000\n" "Last-Translator: Gautier Pelloux-Prayer \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/linphone-" "gtk/language/zh_CN/)\n" diff --git a/po/zh_TW.po b/po/zh_TW.po index 977249f46..60fc52aee 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: linphone-gtk\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-12-03 13:39+0100\n" -"PO-Revision-Date: 2014-12-01 13:28+0000\n" +"PO-Revision-Date: 2014-12-04 09:51+0000\n" "Last-Translator: Gautier Pelloux-Prayer \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/" "linphone-gtk/language/zh_TW/)\n" From a2b77426c66fc63b7c60a0209eafd66176e89187 Mon Sep 17 00:00:00 2001 From: Gautier Pelloux-Prayer Date: Thu, 4 Dec 2014 15:39:38 +0100 Subject: [PATCH 018/187] Minor README change - should be totally rewrite though --- po/README | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/po/README b/po/README index 19a1dbd53..68c47a874 100644 --- a/po/README +++ b/po/README @@ -1,13 +1,12 @@ How to add a translation file ***************************** To add a translation file in linphone project you should first : - - change the variable ALL_LINGUAS in configure.ac by adding the language (ex: fr) - - then add the file .po in the directory /po + - add the file .po in the directory /po - run ./autogen.sh -Update the translation files +Update the translation files *************************** -To update all the translation files, in the directory /po run the following command +To update all the translation files, in the directory /po run the following command $ make update-po From 570ed0f598e303b29a62ad0e02ad419217cabb95 Mon Sep 17 00:00:00 2001 From: Gautier Pelloux-Prayer Date: Thu, 4 Dec 2014 15:55:24 +0100 Subject: [PATCH 019/187] Invert check order in log collection because file checking consumes lot of time --- tester/log_collection_tester.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tester/log_collection_tester.c b/tester/log_collection_tester.c index b9c1835c5..4f18f1224 100644 --- a/tester/log_collection_tester.c +++ b/tester/log_collection_tester.c @@ -161,7 +161,7 @@ static void collect_files_filled() { LinphoneCoreManager* marie = setup(TRUE); char * filepath = linphone_core_compress_log_collection(marie->lc); CU_ASSERT_PTR_NOT_NULL(filepath); - CU_ASSERT_EQUAL(ms_time(0), check_file(filepath)); + CU_ASSERT_EQUAL(check_file(filepath), ms_time(0)); linphone_core_manager_destroy(marie); } @@ -171,7 +171,7 @@ static void collect_files_small_size() { linphone_core_set_log_collection_max_file_size(5000); filepath = linphone_core_compress_log_collection(marie->lc); CU_ASSERT_PTR_NOT_NULL(filepath); - CU_ASSERT_EQUAL(ms_time(0), check_file(filepath)); + CU_ASSERT_EQUAL(check_file(filepath), ms_time(0)); linphone_core_manager_destroy(marie); } @@ -182,7 +182,7 @@ static void collect_files_changing_size() { filepath = linphone_core_compress_log_collection(marie->lc); CU_ASSERT_PTR_NOT_NULL(filepath); - CU_ASSERT_EQUAL(ms_time(0), check_file(filepath)); + CU_ASSERT_EQUAL(check_file(filepath), ms_time(0)); linphone_core_set_log_collection_max_file_size(5000); // Generate some logs @@ -190,7 +190,7 @@ static void collect_files_changing_size() { filepath = linphone_core_compress_log_collection(marie->lc); CU_ASSERT_PTR_NOT_NULL(filepath); - CU_ASSERT_EQUAL(ms_time(0), check_file(filepath)); + CU_ASSERT_EQUAL(check_file(filepath), ms_time(0)); linphone_core_manager_destroy(marie); } From 381744b0f4f2b68bb2c56fbbd7482808a312c830 Mon Sep 17 00:00:00 2001 From: Ghislain MARY Date: Thu, 4 Dec 2014 16:25:36 +0100 Subject: [PATCH 020/187] Handle msg storage option when building with CMake. --- CMakeLists.txt | 10 ++++++++++ coreapi/CMakeLists.txt | 3 +++ 2 files changed, 13 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 85a86bf42..390812533 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -86,6 +86,12 @@ if(ENABLE_TUNNEL) set(ENABLE_TUNNEL OFF CACHE BOOL "Enable tunnel support." FORCE) endif() endif() +if(ENABLE_MSG_STORAGE) + find_package(Sqlite3) + if(NOT SQLITE3_FOUND) + message(FATAL_ERROR "Could not find the sqlite3 library!") + endif() +endif() if(ENABLE_NOTIFY) find_package(Notify) if(NOTIFY_FOUND) @@ -107,6 +113,10 @@ include_directories( ${MS2_INCLUDE_DIRS} ${XML2_INCLUDE_DIRS} ) +if(SQLITE3_FOUND) + include_directories(${SQLITE3_INCLUDE_DIRS}) + add_definitions("-DMSG_STORAGE_ENABLED") +endif() if(ENABLE_TUNNEL) include_directories(${TUNNEL_INCLUDE_DIRS}) endif() diff --git a/coreapi/CMakeLists.txt b/coreapi/CMakeLists.txt index cb417a612..92689dcb8 100644 --- a/coreapi/CMakeLists.txt +++ b/coreapi/CMakeLists.txt @@ -117,6 +117,9 @@ set(LIBS ${MS2_LIBRARIES} ${XML2_LIBRARIES} ) +if(SQLITE3_FOUND) + list(APPEND LIBS ${SQLITE3_LIBRARIES}) +endif() if(ENABLE_TUNNEL) list(APPEND LIBS ${TUNNEL_LIBRARIES}) endif() From 754f4657cda73459969668b338d20def501dc102 Mon Sep 17 00:00:00 2001 From: Simon Morlat Date: Thu, 4 Dec 2014 22:20:30 +0100 Subject: [PATCH 021/187] pass workdir with environment variable, because passing it from arguments doesn't work if the path has a space. --- build/macos/environment.sh | 3 ++- gtk/main.c | 3 +++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/build/macos/environment.sh b/build/macos/environment.sh index 3b9ff16af..b466fecc4 100644 --- a/build/macos/environment.sh +++ b/build/macos/environment.sh @@ -1,4 +1,5 @@ -export EXTRA_ARGS="--workdir $bundle_res" +#export EXTRA_ARGS="--workdir $bundle_res" +export LINPHONE_WORKDIR="$bundle_res" export GIO_EXTRA_MODULES="$bundle_lib/gio/modules" export PANGO_LIBDIR="$bundle_lib" export PANGO_SYSCONFDIR="$bundle_etc" diff --git a/gtk/main.c b/gtk/main.c index ea3078c9a..1a582ebd8 100644 --- a/gtk/main.c +++ b/gtk/main.c @@ -2101,6 +2101,7 @@ int main(int argc, char *argv[]){ LpConfig *factory; const char *db_file; GError *error=NULL; + const char *tmp; #if !GLIB_CHECK_VERSION(2, 31, 0) g_thread_init(NULL); @@ -2110,6 +2111,8 @@ int main(int argc, char *argv[]){ progpath = strdup(argv[0]); config_file=linphone_gtk_get_config_file(NULL); + + workingdir= (tmp=g_getenv("LINPHONE_WORKDIR")) ? g_strdup(tmp) : NULL; #ifdef WIN32 /*workaround for windows: sometimes LANG is defined to an integer value, not understood by gtk */ From b67b596f390767d2e7e294de1e3e327276cb9bc6 Mon Sep 17 00:00:00 2001 From: Simon Morlat Date: Thu, 4 Dec 2014 22:46:41 +0100 Subject: [PATCH 022/187] allow passing of directory prefix where to pickup dependencies when running the mac bundler. --- Makefile.am | 4 +++- build/macos/linphone.bundle | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index dd66874b2..2fd425a0d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -205,7 +205,8 @@ MACAPPZIP=$(PACKAGE)-$(VERSION).app.zip MACAPPDMG=$(PACKAGE)-$(VERSION).dmg BUNDLEPREFIX=./ BUNDLEDIR=$(BUNDLEPREFIX)$(MACAPPNAME) - +#a path prefix where additional libs can be cherry-picked by the bundler. +LINPHONE_ADDITIONAL_DEPENDENCIES_PREFIX=/usr/local bundle: rm -rf $(INSTALLDIR) @@ -215,6 +216,7 @@ bundle: LINPHONE_INSTALL_PREFIX=$(INSTALLDIR_WITH_PREFIX) \ LIBLINPHONE_INSTALL_PREFIX=$(INSTALLDIR_WITH_PREFIX) \ MS2_PLUGINS_INSTALL_PREFIX=$(prefix) \ + LINPHONE_ADDITIONAL_DEPENDENCIES_PREFIX=$(LINPHONE_ADDITIONAL_DEPENDENCIES_PREFIX) \ gtk-mac-bundler $(PACKAGE_BUNDLE_FILE) printf "[Pango]\nModuleFiles=./etc/pango/pango.modules\n" \ > $(BUNDLEDIR)/Contents/Resources/etc/pango/pangorc diff --git a/build/macos/linphone.bundle b/build/macos/linphone.bundle index 8896fa7d3..7a5906e9e 100644 --- a/build/macos/linphone.bundle +++ b/build/macos/linphone.bundle @@ -16,7 +16,7 @@ ${env:LINPHONE_INSTALL_PREFIX} ${env:MS2_PLUGINS_INSTALL_PREFIX} - /usr/local + ${env:LINPHONE_ADDITIONAL_DEPENDENCIES_PREFIX}