mirror of https://github.com/GNOME/gimp.git
app/bucket_fill.c app/clone.c app/convolve.c app/flip_tool.c app/measure.c
1999-08-22 Tomas Ogren <stric@ing.umu.se> * app/bucket_fill.c * app/clone.c * app/convolve.c * app/flip_tool.c * app/measure.c * app/pixmapbrush.c: i18n fixes
This commit is contained in:
parent
a27dcf473a
commit
51f7bf2386
|
@ -1,3 +1,12 @@
|
|||
1999-08-22 Tomas Ogren <stric@ing.umu.se>
|
||||
|
||||
* app/bucket_fill.c
|
||||
* app/clone.c
|
||||
* app/convolve.c
|
||||
* app/flip_tool.c
|
||||
* app/measure.c
|
||||
* app/pixmapbrush.c: i18n fixes
|
||||
|
||||
1999-08-22 Tomas Ogren <stric@ing.umu.se>
|
||||
|
||||
* app/tool_options.c: Remember kids, "Options" is spelled "Options",
|
||||
|
|
|
@ -161,7 +161,7 @@ bucket_options_new (void)
|
|||
gtk_widget_show (options->sample_merged_w);
|
||||
|
||||
/* fill type */
|
||||
frame = tool_options_radio_buttons_new (N_("Fill Type"),
|
||||
frame = tool_options_radio_buttons_new (_("Fill Type"),
|
||||
&options->fill_mode,
|
||||
options->fill_mode_w,
|
||||
fill_mode_label,
|
||||
|
|
|
@ -200,7 +200,8 @@ clone_options_new (void)
|
|||
group = NULL;
|
||||
for (i = 0; i < n_align_names; i++)
|
||||
{
|
||||
radio_button = gtk_radio_button_new_with_label (group, align_names[i]);
|
||||
radio_button = gtk_radio_button_new_with_label (group,
|
||||
gettext(align_names[i]));
|
||||
group = gtk_radio_button_group (GTK_RADIO_BUTTON (radio_button));
|
||||
gtk_signal_connect (GTK_OBJECT (radio_button), "toggled",
|
||||
(GtkSignalFunc) align_type_callback,
|
||||
|
|
|
@ -167,7 +167,7 @@ convolve_options_new (void)
|
|||
gtk_widget_show (scale);
|
||||
gtk_widget_show (hbox);
|
||||
|
||||
frame = tool_options_radio_buttons_new (N_("Convolve Type"),
|
||||
frame = tool_options_radio_buttons_new (_("Convolve Type"),
|
||||
&options->type,
|
||||
options->type_w,
|
||||
type_label,
|
||||
|
|
|
@ -85,7 +85,7 @@ flip_options_new (void)
|
|||
vbox = options->tool_options.main_vbox;
|
||||
|
||||
/* tool toggle */
|
||||
frame = tool_options_radio_buttons_new (N_("Tool Toggle"),
|
||||
frame = tool_options_radio_buttons_new (_("Tool Toggle"),
|
||||
&options->type,
|
||||
options->type_w,
|
||||
type_label,
|
||||
|
|
|
@ -19,6 +19,7 @@
|
|||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
#include <math.h>
|
||||
#include "actionarea.h"
|
||||
#include "appenv.h"
|
||||
|
|
|
@ -200,7 +200,8 @@ clone_options_new (void)
|
|||
group = NULL;
|
||||
for (i = 0; i < n_align_names; i++)
|
||||
{
|
||||
radio_button = gtk_radio_button_new_with_label (group, align_names[i]);
|
||||
radio_button = gtk_radio_button_new_with_label (group,
|
||||
gettext(align_names[i]));
|
||||
group = gtk_radio_button_group (GTK_RADIO_BUTTON (radio_button));
|
||||
gtk_signal_connect (GTK_OBJECT (radio_button), "toggled",
|
||||
(GtkSignalFunc) align_type_callback,
|
||||
|
|
|
@ -167,7 +167,7 @@ convolve_options_new (void)
|
|||
gtk_widget_show (scale);
|
||||
gtk_widget_show (hbox);
|
||||
|
||||
frame = tool_options_radio_buttons_new (N_("Convolve Type"),
|
||||
frame = tool_options_radio_buttons_new (_("Convolve Type"),
|
||||
&options->type,
|
||||
options->type_w,
|
||||
type_label,
|
||||
|
|
|
@ -200,7 +200,8 @@ clone_options_new (void)
|
|||
group = NULL;
|
||||
for (i = 0; i < n_align_names; i++)
|
||||
{
|
||||
radio_button = gtk_radio_button_new_with_label (group, align_names[i]);
|
||||
radio_button = gtk_radio_button_new_with_label (group,
|
||||
gettext(align_names[i]));
|
||||
group = gtk_radio_button_group (GTK_RADIO_BUTTON (radio_button));
|
||||
gtk_signal_connect (GTK_OBJECT (radio_button), "toggled",
|
||||
(GtkSignalFunc) align_type_callback,
|
||||
|
|
|
@ -15,6 +15,7 @@
|
|||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
#include "config.h"
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <math.h>
|
||||
|
|
|
@ -161,7 +161,7 @@ bucket_options_new (void)
|
|||
gtk_widget_show (options->sample_merged_w);
|
||||
|
||||
/* fill type */
|
||||
frame = tool_options_radio_buttons_new (N_("Fill Type"),
|
||||
frame = tool_options_radio_buttons_new (_("Fill Type"),
|
||||
&options->fill_mode,
|
||||
options->fill_mode_w,
|
||||
fill_mode_label,
|
||||
|
|
|
@ -200,7 +200,8 @@ clone_options_new (void)
|
|||
group = NULL;
|
||||
for (i = 0; i < n_align_names; i++)
|
||||
{
|
||||
radio_button = gtk_radio_button_new_with_label (group, align_names[i]);
|
||||
radio_button = gtk_radio_button_new_with_label (group,
|
||||
gettext(align_names[i]));
|
||||
group = gtk_radio_button_group (GTK_RADIO_BUTTON (radio_button));
|
||||
gtk_signal_connect (GTK_OBJECT (radio_button), "toggled",
|
||||
(GtkSignalFunc) align_type_callback,
|
||||
|
|
|
@ -167,7 +167,7 @@ convolve_options_new (void)
|
|||
gtk_widget_show (scale);
|
||||
gtk_widget_show (hbox);
|
||||
|
||||
frame = tool_options_radio_buttons_new (N_("Convolve Type"),
|
||||
frame = tool_options_radio_buttons_new (_("Convolve Type"),
|
||||
&options->type,
|
||||
options->type_w,
|
||||
type_label,
|
||||
|
|
|
@ -85,7 +85,7 @@ flip_options_new (void)
|
|||
vbox = options->tool_options.main_vbox;
|
||||
|
||||
/* tool toggle */
|
||||
frame = tool_options_radio_buttons_new (N_("Tool Toggle"),
|
||||
frame = tool_options_radio_buttons_new (_("Tool Toggle"),
|
||||
&options->type,
|
||||
options->type_w,
|
||||
type_label,
|
||||
|
|
|
@ -161,7 +161,7 @@ bucket_options_new (void)
|
|||
gtk_widget_show (options->sample_merged_w);
|
||||
|
||||
/* fill type */
|
||||
frame = tool_options_radio_buttons_new (N_("Fill Type"),
|
||||
frame = tool_options_radio_buttons_new (_("Fill Type"),
|
||||
&options->fill_mode,
|
||||
options->fill_mode_w,
|
||||
fill_mode_label,
|
||||
|
|
|
@ -200,7 +200,8 @@ clone_options_new (void)
|
|||
group = NULL;
|
||||
for (i = 0; i < n_align_names; i++)
|
||||
{
|
||||
radio_button = gtk_radio_button_new_with_label (group, align_names[i]);
|
||||
radio_button = gtk_radio_button_new_with_label (group,
|
||||
gettext(align_names[i]));
|
||||
group = gtk_radio_button_group (GTK_RADIO_BUTTON (radio_button));
|
||||
gtk_signal_connect (GTK_OBJECT (radio_button), "toggled",
|
||||
(GtkSignalFunc) align_type_callback,
|
||||
|
|
|
@ -167,7 +167,7 @@ convolve_options_new (void)
|
|||
gtk_widget_show (scale);
|
||||
gtk_widget_show (hbox);
|
||||
|
||||
frame = tool_options_radio_buttons_new (N_("Convolve Type"),
|
||||
frame = tool_options_radio_buttons_new (_("Convolve Type"),
|
||||
&options->type,
|
||||
options->type_w,
|
||||
type_label,
|
||||
|
|
|
@ -85,7 +85,7 @@ flip_options_new (void)
|
|||
vbox = options->tool_options.main_vbox;
|
||||
|
||||
/* tool toggle */
|
||||
frame = tool_options_radio_buttons_new (N_("Tool Toggle"),
|
||||
frame = tool_options_radio_buttons_new (_("Tool Toggle"),
|
||||
&options->type,
|
||||
options->type_w,
|
||||
type_label,
|
||||
|
|
|
@ -19,6 +19,7 @@
|
|||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
#include <math.h>
|
||||
#include "actionarea.h"
|
||||
#include "appenv.h"
|
||||
|
|
|
@ -200,7 +200,8 @@ clone_options_new (void)
|
|||
group = NULL;
|
||||
for (i = 0; i < n_align_names; i++)
|
||||
{
|
||||
radio_button = gtk_radio_button_new_with_label (group, align_names[i]);
|
||||
radio_button = gtk_radio_button_new_with_label (group,
|
||||
gettext(align_names[i]));
|
||||
group = gtk_radio_button_group (GTK_RADIO_BUTTON (radio_button));
|
||||
gtk_signal_connect (GTK_OBJECT (radio_button), "toggled",
|
||||
(GtkSignalFunc) align_type_callback,
|
||||
|
|
|
@ -19,6 +19,7 @@
|
|||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
#include <math.h>
|
||||
#include "actionarea.h"
|
||||
#include "appenv.h"
|
||||
|
|
Loading…
Reference in New Issue