~ubuntu-branches/ubuntu/hardy/avidemux/hardy

« back to all changes in this revision

Viewing changes to avidemux/ADM_dialog/DIA_v2v.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Daniel T Chen
  • Date: 2006-12-15 17:13:20 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20061215171320-w79pvpehxx2fr217
Tags: 1:2.3.0-0.0ubuntu1
* Merge from debian-multimedia.org, remaining Ubuntu change:
  - desktop file,
  - no support for ccache and make -j.
* Closes Ubuntu: #69614.

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
                                        {
54
54
                                        
55
55
                                        int r;
56
 
                                                GUI_FileSelRead("Select Vob file to scan",&tmp);
 
56
                                                GUI_FileSelRead(_("Select Vob file to scan"),&tmp);
57
57
                                                if(!tmp) continue;
58
58
                                                gtk_editable_delete_text(GTK_EDITABLE(WID(entryVob)), 0,-1);
59
59
                                                gtk_editable_insert_text(GTK_EDITABLE(WID(entryVob)), tmp, strlen(tmp), &r);
64
64
                                        {
65
65
                                        
66
66
                                        int r;
67
 
                                                GUI_FileSelRead("Select ifo file to use",&tmp);
 
67
                                                GUI_FileSelRead(_("Select ifo file to use"),&tmp);
68
68
                                                if(!tmp) continue;
69
69
                                                gtk_editable_delete_text(GTK_EDITABLE(WID(entryIfo)), 0,-1);
70
70
                                                gtk_editable_insert_text(GTK_EDITABLE(WID(entryIfo)), tmp, strlen(tmp), &r);
75
75
                                        {
76
76
                                        
77
77
                                        int r;
78
 
                                                GUI_FileSelWrite("Select vobsub to write",&tmp);
 
78
                                                GUI_FileSelWrite(_("Select vobsub to write"),&tmp);
79
79
                                                if(!tmp) continue;
80
80
                                                gtk_editable_delete_text(GTK_EDITABLE(WID(entryVobSub)), 0,-1);
81
81
                                                gtk_editable_insert_text(GTK_EDITABLE(WID(entryVobSub)), tmp, strlen(tmp), &r);
89
89
                                           tmp=gtk_editable_get_chars(GTK_EDITABLE (WID(entryVob)), 0, -1);
90
90
                                           if(!tmp || !*tmp)
91
91
                                           {
92
 
                                                        GUI_Error_HIG("Invalid vobname","Please select or enter a valid vob name");
 
92
                                             GUI_Error_HIG(_("Invalid vobname"),_("Please select or enter a valid vob name"));
93
93
                                                        continue;
94
94
                                            }
95
95
                                           tmp2=gtk_editable_get_chars(GTK_EDITABLE (WID(entryIfo)), 0, -1);
96
96
                                           if(!tmp2 || !*tmp2)
97
97
                                           {
98
 
                                                        GUI_Error_HIG("Invalid ifo","Please select or enter a valid ifo file");
 
98
                                             GUI_Error_HIG(_("Invalid ifo"),_("Please select or enter a valid ifo file"));
99
99
                                                        continue;
100
100
                                            }
101
101
                                           tmp3=gtk_editable_get_chars(GTK_EDITABLE (WID(entryVobSub)), 0, -1);
102
102
                                           if(!tmp3 || !*tmp3 )
103
103
                                           {
104
 
                                                        GUI_Error_HIG("Invalid vobsubname","Please select or enter a valid vobsub file");
 
104
                                             GUI_Error_HIG(_("Invalid vobsubname"),_("Please select or enter a valid vobsub file"));
105
105
                                                        continue;
106
106
                                            }
107
107
                                            if(*vobname) ADM_dealloc(*vobname);