Fill tool docs & ensuring PO translations

And also grabbing txt versions of recent fr_FR updates.
This commit is contained in:
Bill Kendrick 2021-02-20 20:40:58 -08:00
parent 058191bd04
commit 0dfe96f291
147 changed files with 4397 additions and 191 deletions

View file

@ -40,26 +40,26 @@
enum {
FILL_FLOOD,
// FILL_GRADIENT_LINEAR,
FILL_GRADIENT_LINEAR,
FILL_GRADIENT_RADIAL,
NUM_FILLS
};
const char *const fill_names[NUM_FILLS] = {
gettext_noop("Solid"),
// gettext_noop("Linear"),
gettext_noop("Linear"),
gettext_noop("Radial")
};
const char *const fill_tips[NUM_FILLS] = {
gettext_noop("Click to fill an area with a solid color."),
// gettext_noop("Click and drag to fill an area with a linear gradient (from the chosen color to transparent)."),
gettext_noop("Click and drag to fill an area with a linear gradient (from the chosen color to transparent)."),
gettext_noop("Click to fill an area with a radial gradient (from the chosen color to transparent).")
};
const char *const fill_img_fnames[NUM_FILLS] = {
DATA_PREFIX "images/fills/solid.png",
// DATA_PREFIX "images/fills/gradient_linear.png",
DATA_PREFIX "images/fills/gradient_linear.png",
DATA_PREFIX "images/fills/gradient_radial.png"
};