Skip to content

Commit 5bbf954

Browse files
committed
csd-color-calibrate: Fix GNOME refs following plugin rebase
1 parent 1dbe86a commit 5bbf954

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

plugins/color/csd-color-calibrate.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ ccm_session_notify_device (CsdColorCalibrate *calibrate, CdDevice *device)
195195
CCM_SETTINGS_RECALIBRATE_DISPLAY_THRESHOLD);
196196

197197
/* TRANSLATORS: this is when the display has not been recalibrated in a while */
198-
message = g_strdup_printf (_("The display “%s” should be recalibrated soon."),
198+
message = g_strdup_printf (_("The display '%s' should be recalibrated soon."),
199199
device_title);
200200
} else {
201201

@@ -204,7 +204,7 @@ ccm_session_notify_device (CsdColorCalibrate *calibrate, CdDevice *device)
204204
CCM_SETTINGS_RECALIBRATE_PRINTER_THRESHOLD);
205205

206206
/* TRANSLATORS: this is when the printer has not been recalibrated in a while */
207-
message = g_strdup_printf (_("The printer “%s” should be recalibrated soon."),
207+
message = g_strdup_printf (_("The printer '%s' should be recalibrated soon."),
208208
device_title);
209209
}
210210

@@ -342,7 +342,7 @@ ccm_session_sensor_added_cb (CdClient *client,
342342
ca_context_play (ca_gtk_context_get (), 0,
343343
CA_PROP_EVENT_ID, "device-added",
344344
/* TRANSLATORS: this is the application name */
345-
CA_PROP_APPLICATION_NAME, _("GNOME Settings Daemon Color Plugin"),
345+
CA_PROP_APPLICATION_NAME, _("Cinnamon Settings Daemon Color Plugin"),
346346
/* TRANSLATORS: this is a sound description */
347347
CA_PROP_EVENT_DESCRIPTION, _("Color calibration device added"), NULL);
348348

@@ -358,7 +358,7 @@ ccm_session_sensor_removed_cb (CdClient *client,
358358
ca_context_play (ca_gtk_context_get (), 0,
359359
CA_PROP_EVENT_ID, "device-removed",
360360
/* TRANSLATORS: this is the application name */
361-
CA_PROP_APPLICATION_NAME, _("GNOME Settings Daemon Color Plugin"),
361+
CA_PROP_APPLICATION_NAME, _("Cinnamon Settings Daemon Color Plugin"),
362362
/* TRANSLATORS: this is a sound description */
363363
CA_PROP_EVENT_DESCRIPTION, _("Color calibration device removed"), NULL);
364364
}
@@ -374,7 +374,7 @@ csd_color_calibrate_class_init (CsdColorCalibrateClass *klass)
374374
static void
375375
csd_color_calibrate_init (CsdColorCalibrate *calibrate)
376376
{
377-
calibrate->settings = g_settings_new ("org.gnome.settings-daemon.plugins.color");
377+
calibrate->settings = g_settings_new ("org.cinnamon.settings-daemon.plugins.color");
378378
calibrate->client = cd_client_new ();
379379
g_signal_connect (calibrate->client, "device-added",
380380
G_CALLBACK (ccm_session_device_added_notify_cb),

0 commit comments

Comments
 (0)