Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=fvbe.git;a=commitdiff;h=d8f0d44848a716f6b4eb9b6fbf613ae3488da7e6
commit d8f0d44848a716f6b4eb9b6fbf613ae3488da7e6 Author: James Buren <[email protected]> Date: Sun Apr 7 03:57:56 2013 -0500 add information about that you cannot go back to previous modules diff --git a/src/information.c b/src/information.c index cbcca71..a572c2d 100644 --- a/src/information.c +++ b/src/information.c @@ -22,6 +22,8 @@ static bool information_run(void) if(!ui_dialog_yesno(INFO_TITLE,INFO_TEXT,false)) return true; + ui_window_text(INFO_MODULE_TITLE,INFO_MODULE_TEXT); + ui_window_text(INFO_BYTES_TITLE,INFO_BYTES_TEXT); return true; diff --git a/src/text.h b/src/text.h index ffda58d..a42c51f 100644 --- a/src/text.h +++ b/src/text.h @@ -39,6 +39,8 @@ #define GREETER_TEXT _("Welcome to the Frugalware Linux installer.\nWe have worked hard to provide this distribution to the public.\nWe hope to provide you with an enjoyable experience.\n") #define INFO_TITLE _("First Time User Information") #define INFO_TEXT _("Is this your first time using our installer?\nIf so, please select 'Yes' for important information.\n") +#define INFO_MODULE_TITLE _("Installer Module Progression") +#define INFO_MODULE_TEXT _("It is not possible to return to previous installer modules.\nSo, check that your data input is really what you want.\n") #define INFO_BYTES_TITLE _("Byte Unit Sizes") #define INFO_BYTES_TEXT _("You may be familiar with byte units that end in M, MB, MiB, or such.\nMost of them lack a universal definition of their exact size.\nSo, for the purposes of this program, we only use binary byte units.\nBelow is a list of all the binary byte unit suffixes we use.\n\nBiB = 1\nKiB = 1024\nMiB = 1024 * 1024\nGiB = 1024 * 1024 * 1024\nTiB = 1024 * 1024 * 1024 * 1024\n") #define PARTITION_TITLE _("Partition Setup") _______________________________________________ Frugalware-git mailing list [email protected] http://frugalware.org/mailman/listinfo/frugalware-git
