brasero r1516 - in trunk: . src
- From: philippr svn gnome org
- To: svn-commits-list gnome org
- Subject: brasero r1516 - in trunk: . src
- Date: Tue, 11 Nov 2008 14:41:59 +0000 (UTC)
Author: philippr
Date: Tue Nov 11 14:41:59 2008
New Revision: 1516
URL: http://svn.gnome.org/viewvc/brasero?rev=1516&view=rev
Log:
Fix #557857 â Audio disc x h of data
Fixed strings
* src/brasero-medium-selection.c
(brasero_medium_selection_get_medium_string):
Modified:
trunk/ChangeLog
trunk/src/brasero-medium-selection.c
Modified: trunk/src/brasero-medium-selection.c
==============================================================================
--- trunk/src/brasero-medium-selection.c (original)
+++ trunk/src/brasero-medium-selection.c Tue Nov 11 14:41:59 2008
@@ -134,16 +134,28 @@
NULL);
/* format the size */
- if (media & BRASERO_MEDIUM_HAS_DATA)
+ if (media & BRASERO_MEDIUM_HAS_DATA) {
size_string = g_format_size_for_display (size);
- else
+ /* NOTE for translators: the first %s is the medium name, the
+ * second %s is the space (kio, gio) used by data on the disc.
+ */
+ label = g_strdup_printf (_("%s: %s"),
+ medium_name,
+ size_string);
+ }
+ else {
size_string = brasero_utils_get_time_string_from_size (size,
TRUE,
TRUE);
+ /* NOTE for translators: the first %s is the medium name, the
+ * second %s is the space (time) used by data on the disc.
+ * I really don't know if I should set this string as
+ * translatable. */
+ label = g_strdup_printf (_("%s: %s"),
+ medium_name,
+ size_string);
+ }
- /* NOTE for translators: the first %s is the medium name, the second %s
- * is the space used by data on the disc. */
- label = g_strdup_printf (_("%s: %s of data"), medium_name, size_string);
g_free (medium_name);
g_free (size_string);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]