Fix source code location messages, in English and PT
This commit is contained in:
parent
9c987d7969
commit
c70968d825
|
@ -58,7 +58,7 @@ void dark_start( GtkWidget *widget, gpointer data) {
|
||||||
char *darkice_verbosity;
|
char *darkice_verbosity;
|
||||||
char command[128], foo, dark_output[128];
|
char command[128], foo, dark_output[128];
|
||||||
|
|
||||||
/* if the first caracter of shared area is 1, means that the streaming is running and we cannot start another darkice */
|
/* if the first char of shared area is 1, means that the streaming is running and we cannot start another darkice */
|
||||||
sscanf((char *) shared_area, "%c", &foo);
|
sscanf((char *) shared_area, "%c", &foo);
|
||||||
if (foo == '1')
|
if (foo == '1')
|
||||||
return;
|
return;
|
||||||
|
@ -81,7 +81,7 @@ void dark_start( GtkWidget *widget, gpointer data) {
|
||||||
|
|
||||||
|
|
||||||
if ((pid = fork()) == -1) {
|
if ((pid = fork()) == -1) {
|
||||||
printf("Fork error! God save the queen!\n");
|
printf("Could not start 'darkice' process, Fork error! \n");
|
||||||
gtk_main_quit();
|
gtk_main_quit();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -355,9 +355,9 @@ void darkice_not_found() {
|
||||||
|
|
||||||
/* sets up the darkice not found dialog */
|
/* sets up the darkice not found dialog */
|
||||||
if (!FUN)
|
if (!FUN)
|
||||||
sprintf(bar, gettext("Darkice not found!\nDownload darkice at http://darkice.sf.net/"));
|
sprintf(bar, gettext("Darkice binary 'darkice' not found on path!\nDownload darkice at http://code.google.com/p/darkice/"));
|
||||||
else
|
else
|
||||||
sprintf(bar, gettext("Don't you know you should have the fucking\ndarkice to run this shit!!\nGet it at http://darkice.sf.net/\n"));
|
sprintf(bar, gettext("Don't you know you should have the fucking\ndarkice to run this shit!!\nGet it at http://code.google.com/p/darkice/\n"));
|
||||||
|
|
||||||
dialog_darkdep = gtk_dialog_new ();
|
dialog_darkdep = gtk_dialog_new ();
|
||||||
label_darkdep = gtk_label_new ( bar );
|
label_darkdep = gtk_label_new ( bar );
|
||||||
|
|
|
@ -275,23 +275,23 @@ msgstr "Estado da Transmissao: Iniciada"
|
||||||
#: interface.c:358
|
#: interface.c:358
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Darkice not found!\n"
|
"Darkice binary 'darkice' not found on path!\n"
|
||||||
"Download darkice at http://darkice.sf.net/"
|
"Download darkice at http://code.google.com/p/darkice/"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Darkice nao encontrado!\n"
|
"Darkice nao encontrado!\n"
|
||||||
"Baixe o darkice de http://darkice.sf.net/"
|
"Baixe o darkice de http://code.google.com/p/darkice/"
|
||||||
|
|
||||||
#: interface.c:360
|
#: interface.c:360
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Don't you know you should have the fucking\n"
|
"Don't you know you should have the fucking\n"
|
||||||
"darkice to run this shit!!\n"
|
"darkice to run this shit!!\n"
|
||||||
"Get it at http://darkice.sf.net/\n"
|
"Get it at http://code.google.com/p/darkice/\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Puta vida, caraio, se num tah ligado que\n"
|
"Puta vida, caraio, se num tah ligado que\n"
|
||||||
" vc tem que ter o darkice pra rodar essa merda??\n"
|
" vc tem que ter o darkice pra rodar essa merda??\n"
|
||||||
" baixa logo daquela merda de \n"
|
" baixa logo daquela merda de \n"
|
||||||
"http://darkice.sf.net/\n"
|
"http://code.google.com/p/darkice/\n"
|
||||||
"manu!!!\n"
|
"manu!!!\n"
|
||||||
|
|
||||||
#: interface.c:365
|
#: interface.c:365
|
||||||
|
|
Loading…
Reference in New Issue