Changeset 4e0f7fd in freewrt for package/config/mconf.c


Ignore:
Timestamp:
Jul 27, 2006, 3:06:31 PM (19 years ago)
Author:
Thorsten Glaser <tg@…>
Branches:
freewrt_1_0, freewrt_2_0
Children:
6753dda
Parents:
356d3a6
Message:

s/Buildroot/FreeWRT/g

git-svn-id: svn://www.freewrt.org/trunk/freewrt@444 afb5a338-a214-0410-bd46-81f09a774fd1

File:
1 edited

Legend:

Unmodified
Added
Removed
  • package/config/mconf.c

    r356d3a6 r4e0f7fd  
    6363load_config_help[] =
    6464        "\n"
    65         "For various reasons, one may wish to keep several different Buildroot\n"
     65        "For various reasons, one may wish to keep several different FreeWRT\n"
    6666        "configurations available on a single machine.\n"
    6767        "\n"
    6868        "If you have saved a previous configuration in a file other than the\n"
    69         "Buildroot's default, entering the name of the file here will allow you\n"
     69        "FreeWRT's default, entering the name of the file here will allow you\n"
    7070        "to modify that configuration.\n"
    7171        "\n"
     
    7777save_config_help[] =
    7878        "\n"
    79         "For various reasons, one may wish to keep different Buildroot\n"
     79        "For various reasons, one may wish to keep different FreeWRT\n"
    8080        "configurations available on a single machine.\n"
    8181        "\n"
     
    683683        sym = sym_lookup("VERSION", 0);
    684684        sym_calc_value(sym);
    685         snprintf(menu_backtitle, 128, "Buildroot v%s Configuration",
     685        snprintf(menu_backtitle, 128, "FreeWRT v%s Configuration",
    686686                sym_get_string_value(sym));
    687687
     
    704704        do {
    705705                stat = dialog_yesno(NULL,
    706                                 "Do you wish to save your new Buildroot configuration?", 5, 60);
     706                                "Do you wish to save your new FreeWRT configuration?", 5, 60);
    707707        } while (stat < 0);
    708708        end_dialog();
     
    711711                conf_write(NULL);
    712712                printf("\n\n"
    713                         "*** End of Buildroot configuration.\n"
     713                        "*** End of FreeWRT configuration.\n"
    714714                        "*** Check the top-level Makefile for additional configuration options.\n\n");
    715715        } else
    716                 printf("\n\nYour Buildroot configuration changes were NOT saved.\n\n");
     716                printf("\n\nYour FreeWRT configuration changes were NOT saved.\n\n");
    717717
    718718        return 0;
Note: See TracChangeset for help on using the changeset viewer.