[gnome-boxes] Change installation progress string to back to 'Installed'
- From: Christophe Fergeau <teuf src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-boxes] Change installation progress string to back to 'Installed'
- Date: Tue, 28 Aug 2012 13:04:36 +0000 (UTC)
commit 516f0d99b6620f59fd2b7f1d4b85ca20777eb37d
Author: Christophe Fergeau <cfergeau redhat com>
Date: Tue Aug 28 14:57:32 2012 +0200
Change installation progress string to back to 'Installed'
Commit f18387885 was meant to use ngettext to translate "%d%% Installed"
but after review, there was an unwanted s/Installed/installed change
that I was supposed to revert. For some reason, I messed this up. This
is just a follow up commit to restore the string to what it should have
been
src/vm-creator.vala | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/vm-creator.vala b/src/vm-creator.vala
index 2e7bb35..378098f 100644
--- a/src/vm-creator.vala
+++ b/src/vm-creator.vala
@@ -214,7 +214,7 @@ private class Boxes.VMCreator {
if (progress < 0)
return;
- machine.info = ngettext ("%d%% installed", "%d%% installed", progress).printf (progress);
+ machine.info = ngettext ("%d%% Installed", "%d%% Installed", progress).printf (progress);
prev_progress = progress;
updating_install_progress = false;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]