Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
B
brasero
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Jobs
Commits
Open sidebar
GNOME
brasero
Commits
5e34b2a7
Commit
5e34b2a7
authored
Jun 01, 2009
by
Philippe Rouquier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix for #583649 – Wrong translatable strings in burn-job.c
See comment #2
parent
7233872b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
15 deletions
+9
-15
libbrasero-burn/burn-job.c
libbrasero-burn/burn-job.c
+9
-15
No files found.
libbrasero-burn/burn-job.c
View file @
5e34b2a7
...
...
@@ -411,7 +411,6 @@ brasero_job_check_output_disc_space (BraseroJob *self,
/* This is not really an error, we'll probably ask the
* user to load a new disc */
if
(
output_blocks
>
media_blocks
)
{
gchar
*
available_str
;
gchar
*
media_blocks_str
;
gchar
*
output_blocks_str
;
...
...
@@ -420,25 +419,20 @@ brasero_job_check_output_disc_space (BraseroJob *self,
output_blocks
);
media_blocks_str
=
g_strdup_printf
(
"%"
G_GINT64_FORMAT
,
media_blocks
);
output_blocks_str
=
g_strdup_printf
(
"%"
G_GINT64_FORMAT
,
output_blocks
);
output_blocks_str
=
g_strdup_printf
(
"%"
G_GINT64_FORMAT
,
output_blocks
);
g_set_error
(
error
,
BRASERO_BURN_ERROR
,
BRASERO_BURN_ERROR_MEDIUM_SPACE
,
/* Translators: the first %s is the size of the free space on the medium
* and the second %s is the size of the space required by the data to be
* burnt. */
available_str
=
g_strdup_printf
(
_
(
"
(%s available for %s)"
),
_
(
"Not enough space available on the disc
(%s available for %s)"
),
media_blocks_str
,
output_blocks_str
);
g_free
(
media_blocks_str
);
g_free
(
output_blocks_str
);
g_set_error
(
error
,
BRASERO_BURN_ERROR
,
BRASERO_BURN_ERROR_MEDIUM_SPACE
,
"%s %s."
,
_
(
"Not enough space available on the disc"
),
available_str
);
g_free
(
available_str
);
return
BRASERO_BURN_NEED_RELOAD
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment