Skip to content

Commit

Permalink
Improve French translations
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaumechereau committed Feb 8, 2024
1 parent b73788c commit 04e7e9f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/gui/layers_panel.c
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ void gui_layers_panel(void)
gui_group_begin(NULL);
gui_action_button(ACTION_img_duplicate_layer, _(DUPLICATE), 1);
gui_action_button(ACTION_img_clone_layer, _(CLONE), 1);
gui_action_button(ACTION_img_merge_visible_layers, _(MERGE), 1);
gui_action_button(ACTION_img_merge_visible_layers, _(MERGE_VISIBLE), 1);

layer = goxel.image->active_layer;
bounded = !box_is_null(layer->box);
Expand Down
6 changes: 3 additions & 3 deletions src/i18n.c
Original file line number Diff line number Diff line change
Expand Up @@ -374,9 +374,9 @@ static const string_t STRINGS[] = {
.en = "Materials",
.fr = "Matériaux",
},
[STR_MERGE] = {
.en = "Merge",
.fr = "Fusionner",
[STR_MERGE_VISIBLE] = {
.en = "Merge Visible",
.fr = "Fusionner Visibles",
},
[STR_MOVE] = {
.en = "Move",
Expand Down
2 changes: 1 addition & 1 deletion src/i18n.h
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ enum {
STR_MASK,
STR_MATERIAL,
STR_MATERIALS,
STR_MERGE,
STR_MERGE_VISIBLE,
STR_MOVE,
STR_NEW,
STR_NONE,
Expand Down

0 comments on commit 04e7e9f

Please sign in to comment.