cleanup: Stop translating nick/blurb for pspecs
As those strings are intended to be used by some UI but nothing uses that in reality except GStreamer. So drop them similar to what GTK did at https://gitlab.gnome.org/GNOME/gtk/-/merge_requests/4717 Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/3101>
This commit is contained in:

committed by
Marge Bot

parent
efe884a97f
commit
b852bbba47
@ -782,9 +782,7 @@ clutter_settings_class_init (ClutterSettingsClass *klass)
|
||||
* Deprecated: 1.10
|
||||
*/
|
||||
obj_props[PROP_BACKEND] =
|
||||
g_param_spec_object ("backend",
|
||||
"Backend",
|
||||
"A pointer to the backend",
|
||||
g_param_spec_object ("backend", NULL, NULL,
|
||||
CLUTTER_TYPE_BACKEND,
|
||||
CLUTTER_PARAM_WRITABLE |
|
||||
G_PARAM_DEPRECATED |
|
||||
@ -797,9 +795,7 @@ clutter_settings_class_init (ClutterSettingsClass *klass)
|
||||
* events in order to increase the click count by 1.
|
||||
*/
|
||||
obj_props[PROP_DOUBLE_CLICK_TIME] =
|
||||
g_param_spec_int ("double-click-time",
|
||||
P_("Double Click Time"),
|
||||
P_("The time between clicks necessary to detect a multiple click"),
|
||||
g_param_spec_int ("double-click-time", NULL, NULL,
|
||||
0, G_MAXINT,
|
||||
250,
|
||||
CLUTTER_PARAM_READWRITE);
|
||||
@ -811,9 +807,7 @@ clutter_settings_class_init (ClutterSettingsClass *klass)
|
||||
* determines whether or not to increase the click count by 1.
|
||||
*/
|
||||
obj_props[PROP_DOUBLE_CLICK_DISTANCE] =
|
||||
g_param_spec_int ("double-click-distance",
|
||||
P_("Double Click Distance"),
|
||||
P_("The distance between clicks necessary to detect a multiple click"),
|
||||
g_param_spec_int ("double-click-distance", NULL, NULL,
|
||||
0, G_MAXINT,
|
||||
5,
|
||||
CLUTTER_PARAM_READWRITE);
|
||||
@ -825,9 +819,7 @@ clutter_settings_class_init (ClutterSettingsClass *klass)
|
||||
* should travel before a drag operation should start.
|
||||
*/
|
||||
obj_props[PROP_DND_DRAG_THRESHOLD] =
|
||||
g_param_spec_int ("dnd-drag-threshold",
|
||||
P_("Drag Threshold"),
|
||||
P_("The distance the cursor should travel before starting to drag"),
|
||||
g_param_spec_int ("dnd-drag-threshold", NULL, NULL,
|
||||
1, G_MAXINT,
|
||||
8,
|
||||
CLUTTER_PARAM_READWRITE);
|
||||
@ -839,9 +831,7 @@ clutter_settings_class_init (ClutterSettingsClass *klass)
|
||||
* a string that can be passed to [func@Pango.FontDescription.from_string].
|
||||
*/
|
||||
obj_props[PROP_FONT_NAME] =
|
||||
g_param_spec_string ("font-name",
|
||||
P_("Font Name"),
|
||||
P_("The description of the default font, as one that could be parsed by Pango"),
|
||||
g_param_spec_string ("font-name", NULL, NULL,
|
||||
NULL,
|
||||
CLUTTER_PARAM_READWRITE);
|
||||
|
||||
@ -853,9 +843,7 @@ clutter_settings_class_init (ClutterSettingsClass *klass)
|
||||
* unconditionally; and -1 will use the system's default.
|
||||
*/
|
||||
obj_props[PROP_FONT_ANTIALIAS] =
|
||||
g_param_spec_int ("font-antialias",
|
||||
P_("Font Antialias"),
|
||||
P_("Whether to use antialiasing (1 to enable, 0 to disable, and -1 to use the default)"),
|
||||
g_param_spec_int ("font-antialias", NULL, NULL,
|
||||
-1, 1,
|
||||
-1,
|
||||
CLUTTER_PARAM_READWRITE);
|
||||
@ -868,17 +856,13 @@ clutter_settings_class_init (ClutterSettingsClass *klass)
|
||||
* If set to -1, the system's default will be used instead
|
||||
*/
|
||||
obj_props[PROP_FONT_DPI] =
|
||||
g_param_spec_int ("font-dpi",
|
||||
P_("Font DPI"),
|
||||
P_("The resolution of the font, in 1024 * dots/inch, or -1 to use the default"),
|
||||
g_param_spec_int ("font-dpi", NULL, NULL,
|
||||
-1, 1024 * 1024,
|
||||
-1,
|
||||
CLUTTER_PARAM_READWRITE);
|
||||
|
||||
obj_props[PROP_UNSCALED_FONT_DPI] =
|
||||
g_param_spec_int ("unscaled-font-dpi",
|
||||
P_("Font DPI"),
|
||||
P_("The resolution of the font, in 1024 * dots/inch, or -1 to use the default"),
|
||||
g_param_spec_int ("unscaled-font-dpi", NULL, NULL,
|
||||
-1, 1024 * 1024,
|
||||
-1,
|
||||
CLUTTER_PARAM_WRITABLE);
|
||||
@ -891,9 +875,7 @@ clutter_settings_class_init (ClutterSettingsClass *klass)
|
||||
* it; and a value of -1 will use the system's default.
|
||||
*/
|
||||
obj_props[PROP_FONT_HINTING] =
|
||||
g_param_spec_int ("font-hinting",
|
||||
P_("Font Hinting"),
|
||||
P_("Whether to use hinting (1 to enable, 0 to disable and -1 to use the default)"),
|
||||
g_param_spec_int ("font-hinting", NULL, NULL,
|
||||
-1, 1,
|
||||
-1,
|
||||
CLUTTER_PARAM_READWRITE);
|
||||
@ -910,9 +892,7 @@ clutter_settings_class_init (ClutterSettingsClass *klass)
|
||||
* - hintfull
|
||||
*/
|
||||
obj_props[PROP_FONT_HINT_STYLE] =
|
||||
g_param_spec_string ("font-hint-style",
|
||||
P_("Font Hint Style"),
|
||||
P_("The style of hinting (hintnone, hintslight, hintmedium, hintfull)"),
|
||||
g_param_spec_string ("font-hint-style", NULL, NULL,
|
||||
NULL,
|
||||
CLUTTER_PARAM_READWRITE);
|
||||
|
||||
@ -929,9 +909,7 @@ clutter_settings_class_init (ClutterSettingsClass *klass)
|
||||
* - vbgr
|
||||
*/
|
||||
obj_props[PROP_FONT_RGBA] =
|
||||
g_param_spec_string ("font-subpixel-order",
|
||||
P_("Font Subpixel Order"),
|
||||
P_("The type of subpixel antialiasing (none, rgb, bgr, vrgb, vbgr)"),
|
||||
g_param_spec_string ("font-subpixel-order", NULL, NULL,
|
||||
NULL,
|
||||
CLUTTER_PARAM_READWRITE);
|
||||
|
||||
@ -944,17 +922,13 @@ clutter_settings_class_init (ClutterSettingsClass *klass)
|
||||
* See also [property@ClickAction:long-press-duration].
|
||||
*/
|
||||
obj_props[PROP_LONG_PRESS_DURATION] =
|
||||
g_param_spec_int ("long-press-duration",
|
||||
P_("Long Press Duration"),
|
||||
P_("The minimum duration for a long press gesture to be recognized"),
|
||||
g_param_spec_int ("long-press-duration", NULL, NULL,
|
||||
0, G_MAXINT,
|
||||
500,
|
||||
CLUTTER_PARAM_READWRITE);
|
||||
|
||||
obj_props[PROP_FONTCONFIG_TIMESTAMP] =
|
||||
g_param_spec_uint ("fontconfig-timestamp",
|
||||
P_("Fontconfig configuration timestamp"),
|
||||
P_("Timestamp of the current fontconfig configuration"),
|
||||
g_param_spec_uint ("fontconfig-timestamp", NULL, NULL,
|
||||
0, G_MAXUINT,
|
||||
0,
|
||||
CLUTTER_PARAM_WRITABLE);
|
||||
@ -968,9 +942,7 @@ clutter_settings_class_init (ClutterSettingsClass *klass)
|
||||
* enabling the hint.
|
||||
*/
|
||||
obj_props[PROP_PASSWORD_HINT_TIME] =
|
||||
g_param_spec_uint ("password-hint-time",
|
||||
P_("Password Hint Time"),
|
||||
P_("How long to show the last input character in hidden entries"),
|
||||
g_param_spec_uint ("password-hint-time", NULL, NULL,
|
||||
0, G_MAXUINT,
|
||||
0,
|
||||
CLUTTER_PARAM_READWRITE);
|
||||
|
Reference in New Issue
Block a user