Ticket #5169: case-misc.diff

File case-misc.diff, 28.9 KB (added by humdinger, 14 years ago)

the rest

  • build/jam/HaikuImage

     
    317317        : /boot/system/apps/$(linkTarget) : $(linkTarget) ;
    318318}
    319319
    320 # Deskbar Desktop Applets links
    321 AddDirectoryToHaikuImage home config be Desktop\ Applets ;
     320# Deskbar Desktop applets links
     321AddDirectoryToHaikuImage home config be Desktop\ applets ;
    322322DESKBAR_DESKTOP_APPLETS = LaunchBox NetworkStatus PowerStatus ProcessController
    323323    Workspaces
    324324;
    325325for linkTarget in $(DESKBAR_DESKTOP_APPLETS) {
    326     AddSymlinkToHaikuImage home config be Desktop\ Applets
     326    AddSymlinkToHaikuImage home config be Desktop\ applets
    327327        : /boot/system/apps/$(linkTarget) : $(linkTarget) ;
    328328}
    329329
  • build/jam/OptionalPackages

     
    520520            : $(baseURL)/KeymapSwitcher-1.2.3-x86-gcc4-2009-05-31.zip
    521521            :
    522522        ;
    523         AddSymlinkToHaikuImage home config be Desktop\ Applets
     523        AddSymlinkToHaikuImage home config be Desktop\ applets
    524524            : /boot/common/bin/KeymapSwitcher ;
    525525    } else {
    526526        InstallOptionalHaikuImagePackage
     
    528528            : $(baseURL)/KeymapSwitcher-1.2.4-r1a1-x86-gcc2-2009-09-06.zip
    529529            :
    530530        ;
    531         AddSymlinkToHaikuImage home config be Desktop\ Applets
     531        AddSymlinkToHaikuImage home config be Desktop\ applets
    532532            : /boot/common/bin/KeymapSwitcher ;
    533533    }
    534534}
  • HiQ-Data/source/haiku/trunk/src/documentation/uiguidelines/HaikuHIG.xml

     
    459459<sect1>
    460460<title>Capitalization and Spelling</title>
    461461
    462 <para>Nothing is more unprofessional than spelling and capitalization errors. If spelling is not your strong suit, consult a spell checker, dictionary, or at least a friend. This is particularly important if you are working with a language which is not your native one. Use title capitalization in all places except where full sentences are used. This means that all "important" words and the last word in a phrase -- regardless of importance -- are capitalized. Prepositions, definite articles, and conjunctions (as, for, to, the, and, etc.) are generally not capitalized except when they are the first or last word in the phrase, such as in "Save As...".</para>
     462<para>Nothing is more unprofessional than spelling and capitalization errors. If spelling is not your strong suit, consult a spell checker, dictionary, or at least a friend. This is particularly important if you are working with a language which is not your native one. Use sentence capitalization in all places, that is, follow the normal grammar rules of the language. For English, this means only to capitalize specific names like "Tracker" or "Deskbar".</para>
    463463
    464464</sect1>
    465465<sect1>
  • src/tests/add-ons/kernel/file_systems/userlandfs/r5/src/test/netfs/authentication_server/AuthenticationPanel.cpp

     
    4242                                 NULL, B_FOLLOW_LEFT | B_FOLLOW_RIGHT);
    4343
    4444    BRect buttonFrame(0.0, 0.0, 20.0, 15.0);
    45     fOkB = new BButton(buttonFrame, "ok", "Ok",
     45    fOkB = new BButton(buttonFrame, "ok", "OK",
    4646                       new BMessage(MSG_PANEL_OK));
    4747    fCancelB = new BButton(buttonFrame, "cancel", "Cancel",
    4848                           new BMessage(MSG_PANEL_CANCEL));
  • src/tests/servers/app/look_and_feel/LookAndFeel.cpp

     
    11/*
    2  * Copyright 2005, Haiku Inc.
     2 * Copyright 2005-2009, Haiku, Inc. All rights reserved.
    33 * Distributed under the terms of the MIT License.
    44 *
    55 * Authors:
     
    295295                    char text[512];
    296296                    snprintf(text, sizeof(text),
    297297                        "Window could not be added to subset:\n\n\%s", strerror(status));
    298                     (new BAlert("Alert", text, "Ok"))->Go(NULL);
     298                    (new BAlert("Alert", text, "OK"))->Go(NULL);
    299299
    300300                    delete window;
    301301                    break;
  • src/tests/kits/interface/look/Look.cpp

     
    9393void
    9494add_text_controls(BGridLayout* layout, int32& row)
    9595{
    96     BTextControl* control1 = new BTextControl("Enabled", "Some Text", NULL);
    97     BTextControl* control2 = new BTextControl("Disabled", "More Text", NULL);
     96    BTextControl* control1 = new BTextControl("Enabled", "Some text", NULL);
     97    BTextControl* control2 = new BTextControl("Disabled", "More text", NULL);
    9898    control2->SetEnabled(false);
    9999
    100100#if USE_LAYOUT_ITEMS
     
    270270    // BListView
    271271    BListView* listView = new BListView();
    272272    for (int32 i = 0; i < 20; i++) {
    273         BString itemLabel("List Item ");
     273        BString itemLabel("List item ");
    274274        itemLabel << i + 1;
    275275        listView->AddItem(new BStringItem(itemLabel.String()));
    276276    }
     
    327327    menu->AddItem(new BMenuItem("Test Save BFilePanel",
    328328        new BMessage(MSG_TEST_SAVE_FILE_PANEL)));
    329329    menu->AddItem(new BMenuItem("Click me!", NULL));
    330     menu->AddItem(new BMenuItem("Another Option", NULL));
     330    menu->AddItem(new BMenuItem("Another option", NULL));
    331331    menu->AddSeparatorItem();
    332332    menu->AddItem(new BMenuItem("Quit", new BMessage(B_QUIT_REQUESTED)));
    333333    menuBar->AddItem(menu);
     
    342342    menu->AddItem(new BMenuItem("Only", NULL));
    343343    menuBar->AddItem(menu);
    344344    menu = new BMenu("Sub Menu");
    345     BMenu* subMenu = new BMenu("Click Me");
     345    BMenu* subMenu = new BMenu("Click me");
    346346    subMenu->AddItem(new BMenuItem("Either", NULL));
    347347    subMenu->AddItem(new BMenuItem("Or", NULL));
    348348    subMenu->SetRadioMode(true);
    349349    menu->AddItem(subMenu);
    350350    menuBar->AddItem(menu);
    351351
    352     BButton* okButton = new BButton("Ok", new BMessage(B_QUIT_REQUESTED));
     352    BButton* okButton = new BButton("OK", new BMessage(B_QUIT_REQUESTED));
    353353
    354354    window->AddChild(BGroupLayoutBuilder(B_VERTICAL)
    355355        .Add(menuBar)
  • src/tests/kits/net/preflet/InterfacesAddOn/EthernetSettingsView.cpp

     
    11/*
    2  * Copyright 2004-2008 Haiku Inc. All rights reserved.
     2 * Copyright 2004-2009 Haiku, Inc. All rights reserved.
    33 * Distributed under the terms of the MIT License.
    44 *
    55 * Authors:
     
    340340    BMessenger networkServer(kNetServerSignature);
    341341    if (!networkServer.IsValid()) {
    342342        (new BAlert("error", "The net_server needs to run for the auto "
    343             "configuration!", "Ok"))->Go();
     343            "configuration!", "OK"))->Go();
    344344        return B_ERROR;
    345345    }
    346346
     
    356356    if (status != B_OK) {
    357357        BString errorMessage("Sending auto-config message failed: ");
    358358        errorMessage << strerror(status);
    359         (new BAlert("error", errorMessage.String(), "Ok"))->Go();
     359        (new BAlert("error", errorMessage.String(), "OK"))->Go();
    360360        return status;
    361361    } else if (reply.FindInt32("status", &status) == B_OK
    362362            && status != B_OK) {
    363363        BString errorMessage("Auto-configuring failed: ");
    364364        errorMessage << strerror(status);
    365         (new BAlert("error", errorMessage.String(), "Ok"))->Go();
     365        (new BAlert("error", errorMessage.String(), "OK"))->Go();
    366366        return status;
    367367    }
    368368
  • src/tests/kits/game/file_game_sound_test/FileSoundWindow.cpp

     
    3434    BBox *box = new BBox(appBounds);
    3535    //textcontrol to display the chosen file
    3636    BRect textBounds(appBounds.left + 10, appBounds.top + 10, appBounds.right - 70, appBounds.top + 20);
    37     textControl = new BTextControl(textBounds,"filechosen","Play File:","No file chosen yet.", NULL);
     37    textControl = new BTextControl(textBounds,"filechosen","Play file:","No file chosen yet.", NULL);
    3838    textControl -> SetEnabled(false);
    3939   
    4040    float x1 = textControl -> Bounds().left;
     
    110110                    fileSound = 0;
    111111                    if (error == B_NO_MEMORY)
    112112                    {
    113                         BAlert *alert = new BAlert("alert","Not enough memory.","Ok");
     113                        BAlert *alert = new BAlert("alert","Not enough memory.","OK");
    114114                        alert -> Go();
    115115                    }
    116116                    else if (error == B_ERROR)
    117117                    {
    118                         BAlert *alert = new BAlert("alert","Unable to create a sound player.","Ok");
     118                        BAlert *alert = new BAlert("alert","Unable to create a sound player.","OK");
    119119                        alert -> Go();
    120120                    }
    121121                    else
    122122                    {
    123                         BAlert *alert = new BAlert("alert","Other kind of error!","Ok");
     123                        BAlert *alert = new BAlert("alert","Other kind of error!","OK");
    124124                        alert -> Go();
    125125                    }               
    126126                    break;
     
    133133                    status_t preloadError = fileSound -> Preload();
    134134                    if (preloadError != B_OK)
    135135                    {
    136                         BAlert *alert = new BAlert("alert","Port errors. Unable to communicate with the streaming sound port.","Ok");
     136                        BAlert *alert = new BAlert("alert","Port errors. Unable to communicate with the streaming sound port.","OK");
    137137                        alert -> Go();
    138138                    }
    139139                }   
     
    143143                {
    144144                    if (playerror == EALREADY)
    145145                    {
    146                         BAlert *alert = new BAlert("alert","Sound is already playing","Ok");
     146                        BAlert *alert = new BAlert("alert","Sound is already playing","OK");
    147147                        alert -> Go();
    148148                    }
    149149                    else
    150150                    {
    151                         BAlert *alert = new BAlert("alert","Error playing sound","Ok");
     151                        BAlert *alert = new BAlert("alert","Error playing sound","OK");
    152152                        alert -> Go();
    153153                    }
    154154                }
     
    166166                {
    167167                    if (stoperror == EALREADY)
    168168                    {
    169                         BAlert *alert = new BAlert("alert","Sound is already stopped","Ok");
     169                        BAlert *alert = new BAlert("alert","Sound is already stopped","OK");
    170170                        alert -> Go();
    171171                    }
    172172                    else
    173173                    {
    174                         BAlert *alert = new BAlert("alert","Error stopping sound","Ok");
     174                        BAlert *alert = new BAlert("alert","Error stopping sound","OK");
    175175                        alert -> Go();
    176176                    }
    177177                }
     
    213213                {
    214214                    if (error == EALREADY)
    215215                    {
    216                         BAlert *alert = new BAlert("alert","Already in requested state","Ok");
     216                        BAlert *alert = new BAlert("alert","Already in requested state","OK");
    217217                        alert -> Go();
    218218                    }
    219219                    else
    220220                    {
    221                         BAlert *alert = new BAlert("alert","Error!","Ok");
     221                        BAlert *alert = new BAlert("alert","Error!","OK");
    222222                        alert -> Go();
    223223                    }
    224224                }
  • src/tests/kits/game/chart/ChartWindow.cpp

     
    55    by Pierre Raynaud-Richard.
    66
    77    Copyright 1998 Be Incorporated, All Rights Reserved.
     8    Copyright 2009, Haiku, Inc. All rights reserved.
    89
    910*/
    1011
     
    679680
    680681        /* Fullscreen mode check box */
    681682        r.Set(h, v, h+LEFT_WIDTH-2*LEFT_OFFSET-1, v+FULL_SCREEN-1);
    682         full_screen = new BCheckBox(r, "", "Full Screen", new BMessage(FULL_SCREEN_MSG));
     683        full_screen = new BCheckBox(r, "", "Full screen", new BMessage(FULL_SCREEN_MSG));
    683684        full_screen->SetTarget(this);
    684685        full_screen->SetFont(&font);
    685686        full_screen->ResizeToPreferred();
     
    708709
    709710        /* Enabling second thread check box */
    710711        r.Set(h, v, h+LEFT_WIDTH-2*LEFT_OFFSET-1, v+SECOND_THREAD-1);
    711         check_box = new BCheckBox(r, "", "2 Threads", new BMessage(SECOND_THREAD_MSG));
     712        check_box = new BCheckBox(r, "", "2 threads", new BMessage(SECOND_THREAD_MSG));
    712713        check_box->SetTarget(this);
    713714        check_box->SetFont(&font);
    714715        check_box->ResizeToPreferred();
  • src/bin/network/ppp_up/PPPStatusView.cpp

     
    11/*
    22 * Copyright 2005, Waldemar Kornewald <wkornew@gmx.net>
     3 * Copyright 2009, Haiku, Inc. All rights reserved.
    34 * Distributed under the terms of the MIT License.
    45 */
    56
     
    2122
    2223// labels
    2324static const char *kLabelDisconnect = "Disconnect";
    24 static const char *kLabelConnectedSince = "Connected Since: ";
     25static const char *kLabelConnectedSince = "Connected since: ";
    2526static const char *kLabelReceived = "Received";
    2627static const char *kLabelSent = "Sent";
    2728
  • src/bin/network/ppp_up/ConnectionView.cpp

     
    11/*
    22 * Copyright 2005, Waldemar Kornewald <wkornew@gmx.net>
     3 * Copyright 2009, Haiku, Inc. All rights reserved.
    34 * Distributed under the terms of the MIT License.
    45 */
    56
     
    3435static const uint32 kMsgUpdate = 'MUPD';
    3536
    3637// labels
    37 static const char *kLabelSavePassword = "Save Password";
     38static const char *kLabelSavePassword = "Save password";
    3839static const char *kLabelName = "Username: ";
    3940static const char *kLabelPassword = "Password: ";
    4041static const char *kLabelConnect = "Connect";
  • src/bin/desklink/MediaReplicant.cpp

     
    219219        BPopUpMenu* menu = new BPopUpMenu("", false, false);
    220220        menu->SetFont(be_plain_font);
    221221
    222         menu->AddItem(new BMenuItem("Media Preferences" B_UTF8_ELLIPSIS,
     222        menu->AddItem(new BMenuItem("Media preferences" B_UTF8_ELLIPSIS,
    223223            new BMessage(kMsgOpenMediaSettings)));
    224         menu->AddItem(new BMenuItem("Sound Preferences" B_UTF8_ELLIPSIS,
     224        menu->AddItem(new BMenuItem("Sound preferences" B_UTF8_ELLIPSIS,
    225225            new BMessage(kMsgOpenSoundSettings)));
    226226
    227227        menu->AddSeparatorItem();
     
    234234        BMenu* subMenu = new BMenu("Options");
    235235        menu->AddItem(subMenu);
    236236
    237         BMenuItem* item = new BMenuItem("Control Physical Output",
     237        BMenuItem* item = new BMenuItem("Control physical output",
    238238            new BMessage(kMsgVolumeWhich));
    239239        item->SetMarked(fVolumeWhich == VOLUME_USE_PHYS_OUTPUT);
    240240        subMenu->AddItem(item);
  • src/bin/mail_utils/spamdbm.cpp

     
    888888static char * g_TokenizeModeNames [TM_MAX] =
    889889{
    890890  "All",
    891   "Plain Text",
    892   "Plain Text and Header",
    893   "Any Text",
    894   "Any Text and Header",
    895   "All Parts",
    896   "All Parts and Header",
    897   "Just Header"
     891  "Plain text",
     892  "Plain text and header",
     893  "Any text",
     894  "Any text and header",
     895  "All parts",
     896  "All parts and header",
     897  "Just header"
    898898};
    899899
    900900
     
    63696369        break;
    63706370
    63716371      case TM_ANY_TEXT_HEADER:
    6372         strcat (TempString, " - Scan entire e-mail text and text attachments (Recommended)");
     6372       strcat (TempString, " - Scan entire e-mail text and text attachments (recommended)");
    63736373        break;
    63746374
    63756375      case TM_ALL_PARTS:
     
    64486448    switch (ScoringMode)
    64496449    {
    64506450      case SM_ROBINSON:
    6451         strcpy (TempString, "Learning Method 1: Naive Bayesian");
     6451        strcpy (TempString, "Learning method 1: Naive Bayesian");
    64526452        break;
    64536453
    64546454      case SM_CHISQUARED:
    6455         strcpy (TempString, "Learning Method 2: Chi-Squared");
     6455        strcpy (TempString, "Learning method 2: Chi-Squared");
    64566456        break;
    64576457
    64586458      default:
     
    64836483  CommandMessage.what = B_EXECUTE_PROPERTY;
    64846484  CommandMessage.AddSpecifier (g_PropertyNames[PN_INSTALL_THINGS]);
    64856485  m_InstallThingsButtonPntr = new BButton (TempRect, "Install Button",
    6486     "Install Spam Types",
     6486    "Install spam types",
    64876487    new BMessage (CommandMessage),
    64886488    B_FOLLOW_LEFT | B_FOLLOW_TOP);
    64896489  if (m_InstallThingsButtonPntr == NULL) goto ErrorExit;
     
    65026502  CommandMessage.what = B_EXECUTE_PROPERTY;
    65036503  CommandMessage.AddSpecifier (g_PropertyNames[PN_RESET_TO_DEFAULTS]);
    65046504  m_ResetToDefaultsButtonPntr = new BButton (TempRect, "Reset Button",
    6505     "Default Settings", new BMessage (CommandMessage),
     6505    "Default settings", new BMessage (CommandMessage),
    65066506    B_FOLLOW_RIGHT | B_FOLLOW_TOP);
    65076507  if (m_ResetToDefaultsButtonPntr == NULL) goto ErrorExit;
    65086508  AddChild (m_ResetToDefaultsButtonPntr);
     
    65256525  TempRect.left = X;
    65266526
    65276527  m_EstimateSpamButtonPntr = new BButton (TempRect, "Estimate Button",
    6528     "Scan a Message",
     6528    "Scan a message",
    65296529    new BMessage (MSG_ESTIMATE_BUTTON),
    65306530    B_FOLLOW_LEFT | B_FOLLOW_TOP);
    65316531  if (m_EstimateSpamButtonPntr == NULL) goto ErrorExit;
     
    65436543  TempRect.left = X;
    65446544
    65456545  m_AddExampleButtonPntr = new BButton (TempRect, "Example Button",
    6546     "Train Spam Filter on a Message",
     6546    "Train spam filter on a message",
    65476547    new BMessage (MSG_BROWSE_BUTTON),
    65486548    B_FOLLOW_LEFT_RIGHT | B_FOLLOW_TOP,
    65496549    B_WILL_DRAW | B_NAVIGABLE | B_FULL_UPDATE_ON_RESIZE);
     
    65776577  RowHeight = g_TextBoxHeight;
    65786578  RowHeight = ceilf (RowHeight * 1.1);
    65796579
    6580   StringPntr = "Genuine Messages:";
     6580  StringPntr = "Genuine messages:";
    65816581  m_GenuineCountCachedValue = 87654321;
    65826582  sprintf (TempString, "%d", (int) m_GenuineCountCachedValue);
    65836583
     
    65916591    3 * g_MarginBetweenControls;
    65926592
    65936593  m_GenuineCountTextboxPntr = new BTextControl (TempRect,
    6594     "Genuine Count",
     6594    "Genuine count",
    65956595    StringPntr /* label */,
    65966596    TempString /* text */,
    65976597    NULL /* no message */,
     
    66056605
    66066606  /* The word count in the center. */
    66076607
    6608   StringPntr = "Word Count:";
     6608  StringPntr = "Word count:";
    66096609  m_WordCountCachedValue = 87654321;
    66106610  sprintf (TempString, "%d", (int) m_WordCountCachedValue);
    66116611
     
    66206620  TempRect.right = TempRect.left + Width;
    66216621
    66226622  m_WordCountTextboxPntr = new BTextControl (TempRect,
    6623     "Word Count",
     6623    "Word count",
    66246624    StringPntr /* label */,
    66256625    TempString /* text */,
    66266626    NULL /* no message */,
     
    66346634
    66356635  /* The spam count on the far right. */
    66366636
    6637   StringPntr = "Spam Messages:";
     6637  StringPntr = "Spam messages:";
    66386638  m_SpamCountCachedValue = 87654321;
    66396639  sprintf (TempString, "%d", (int) m_SpamCountCachedValue);
    66406640
     
    66486648    3 * g_MarginBetweenControls;
    66496649
    66506650  m_SpamCountTextboxPntr = new BTextControl (TempRect,
    6651     "Spam Count",
     6651    "Spam count",
    66526652    StringPntr /* label */,
    66536653    TempString /* text */,
    66546654    NULL /* no message */,
     
    70357035
    70367036DatabaseWindow::DatabaseWindow ()
    70377037: BWindow (BRect (30, 30, 620, 400),
    7038     "Haiku Spam Filter Server",
     7038    "Haiku spam filter server",
    70397039    B_DOCUMENT_WINDOW, B_ASYNCHRONOUS_CONTROLS)
    70407040{
    70417041  BRect TempRect;
  • src/bin/mail_utils/mail2mbox.cpp

     
    302302    BApplication app("application/x-vnd.Haiku-mail2mbox");
    303303
    304304    if (argc <= 1 || argc >= 3) {
    305         printf("%s is a utility for converting BeMail e-mail\n", argv[0]);
     305        printf("%s is a utility for converting Mail e-mail\n", argv[0]);
    306306        printf("files to Unix Pine style e-mail files.  It could well\n");
    307307        printf("work with other Unix style mailbox files.  Each message in\n");
    308308        printf("the input directory is converted and sent to the standard\n");
  • src/bin/mail_utils/mbox2mail.cpp

     
    516516  {
    517517    printf ("%s is a utility for converting Pine e-mail\n",
    518518      argv[0]);
    519     printf ("files (mbox files) to BeOS e-mail files with attributes.  It\n");
     519    printf ("files (mbox files) to Mail e-mail files with attributes.  It\n");
    520520    printf ("could well work with other Unix style mailbox files, and\n");
    521521    printf ("saved Usenet article files.  Each message in the input\n");
    522522    printf ("mailbox is converted into a separate file.  You can\n");
  • src/bin/screen_blanker/PasswordWindow.cpp

     
    11/*
    2  * Copyright 2003-2008, Haiku, Inc. All Rights Reserved.
     2 * Copyright 2003-2009, Haiku, Inc. All rights reserved.
    33 * Distributed under the terms of the MIT License.
    44 *
    55 * Authors:
     
    2020
    2121
    2222PasswordWindow::PasswordWindow()
    23     : BWindow(BRect(100, 100, 400, 230), "Enter Password",
     23    : BWindow(BRect(100, 100, 400, 230), "Enter password",
    2424        B_NO_BORDER_WINDOW_LOOK, kPasswordWindowFeel
    2525            /* TODO: B_MODAL_APP_WINDOW_FEEL should also behave correctly */,
    2626        B_NOT_MOVABLE | B_NOT_CLOSABLE | B_NOT_ZOOMABLE | B_NOT_MINIMIZABLE
  • src/data/beos_mime/image/x-pcx

     
    55resource(2, "META:SNIFF_RULE") "0.5 (\"\\012\\005\\001\") [3](0x01 | 0x04 | 0x08)";
    66    // version 5, encoding 1 is all our translator currently supports
    77
    8 resource(3, "META:S:DESC") #'MSDC' "PCX Image";
     8resource(3, "META:S:DESC") #'MSDC' "PCX image";
    99
    10 resource(4, "META:L:DESC") #'MLDC' "PC Paintbrush Image";
     10resource(4, "META:L:DESC") #'MLDC' "PC Paintbrush image";
    1111
    1212resource(5, "META:EXTENS") message(234) {
    1313    "extensions" = "pcx",
  • src/data/beos_mime/image/sgi

     
    55
    66resource(2, "META:SNIFF_RULE") "0.50 (\"\\001\\332\")";
    77
    8 resource(3, "META:S:DESC") #'MSDC' "SGI Image";
     8resource(3, "META:S:DESC") #'MSDC' "SGI image";
    99
    1010resource(4, "META:EXTENS") message(234) {
    1111    "extensions" = "sgi",
  • src/data/beos_mime/image/vnd.microsoft.icon

     
    55
    66resource(2, "META:SNIFF_RULE") "0.50 (\"\\000\\000\\001\\000\" | \"\\000\\000\\002\\000\")";
    77
    8 resource(3, "META:S:DESC") #'MSDC' "Windows Icon";
     8resource(3, "META:S:DESC") #'MSDC' "Windows icon";
    99
    1010resource(4, "META:EXTENS") message(234) {
    1111    "extensions" = "ico",
  • src/data/beos_mime/image/x-targa

     
    22
    33resource(1, "META:TYPE") "image/x-targa";
    44
    5 resource(2, "META:S:DESC") #'MSDC' "Targa Image";
     5resource(2, "META:S:DESC") #'MSDC' "Targa image";
    66
    77resource(3, "META:EXTENS") message(234) {
    88    "extensions" = "tga",
  • src/data/beos_mime/image/png

     
    55
    66resource(2, "META:SNIFF_RULE") "0.70 (\"\\211PNG\\015\\012\\032\\012\")";
    77
    8 resource(3, "META:S:DESC") #'MSDC' "PNG Image";
     8resource(3, "META:S:DESC") #'MSDC' "PNG image";
    99
    1010resource(4, "META:EXTENS") message(234) {
    1111    "extensions" = "png",
  • src/data/beos_mime/image/gif

     
    55
    66resource(2, "META:SNIFF_RULE") "0.70 (\"GIF8\")";
    77
    8 resource(3, "META:S:DESC") #'MSDC' "GIF Image";
     8resource(3, "META:S:DESC") #'MSDC' "GIF image";
    99
    1010resource(4, "META:EXTENS") message(234) {
    1111    "extensions" = "gif",
  • src/data/beos_mime/image/jpeg

     
    55
    66resource(2, "META:SNIFF_RULE") "0.50 (\"\\377\\330\\377\")";
    77
    8 resource(3, "META:S:DESC") #'MSDC' "JPEG Image";
     8resource(3, "META:S:DESC") #'MSDC' "JPEG image";
    99
    1010resource(5, "META:EXTENS") message(234) {
    1111    "extensions" = "jpeg",
  • src/data/beos_mime/image/tiff

     
    55
    66resource(2, "META:SNIFF_RULE") "0.50 (\"MM\\000\\052\" | \"II\\052\\000\" | \"IIN1\")";
    77
    8 resource(3, "META:S:DESC") #'MSDC' "TIFF Image";
     8resource(3, "META:S:DESC") #'MSDC' "TIFF image";
    99
    1010resource(4, "META:EXTENS") message(234) {
    1111    "extensions" = "tif",
  • src/data/beos_mime/image/x-portable-pixmap

     
    55
    66resource(2, "META:SNIFF_RULE") "0.50 (\"P6\")";
    77
    8 resource(3, "META:S:DESC") #'MSDC' "PPM Image";
     8resource(3, "META:S:DESC") #'MSDC' "PPM image";
    99
    1010resource(4, "META:EXTENS") message(234) {
    1111    "extensions" = "ppm",
  • src/data/beos_mime/image/jp2

     
    33
    44resource(1, "META:TYPE") "image/jp2";
    55
    6 resource(2, "META:S:DESC") #'MSDC' "JPEG2000 Image";
     6resource(2, "META:S:DESC") #'MSDC' "JPEG2000 image";
    77
    88resource(3, "META:EXTENS") message(234) {
    99    "extensions" = "jp2",
  • src/data/beos_mime/image/svg+xml

     
    33
    44resource(1, "META:TYPE") "image/svg+xml";
    55
    6 resource(2, "META:S:DESC") #'MSDC' "SVG Image";
     6resource(2, "META:S:DESC") #'MSDC' "SVG image";
    77
    88resource(3, "META:EXTENS") message(234) {
    99    "extensions" = "svg",
  • src/data/beos_mime/image/bmp

     
    55
    66resource(2, "META:SNIFF_RULE") "0.50 (\"BM\")";
    77
    8 resource(3, "META:S:DESC") #'MSDC' "BMP Image";
     8resource(3, "META:S:DESC") #'MSDC' "BMP image";
    99
    1010resource(4, "META:EXTENS") message(234) {
    1111    "extensions" = "bmp",
  • data/image_directories/home-config-settings-printers-save-as-pdf.rdef

     
    33
    44resource(1, "Printer Name") "Save as PDF";
    55resource(2, "Driver Name") "PDF Writer";
    6 resource(3, "transport") "Print To File";
     6resource(3, "transport") "Print to file";
    77resource(4, "transport_address") "";
    88resource(5, "connection") "Local";
    99resource(6, "state") "free";
  • headers/private/media/MediaSounds.h

     
    11/*
    2  * Copyright 2007, Jérôme Duval. All rights reserved.
     2 * Copyright 2007-2009, Jérôme Duval. All rights reserved.
    33 * Distributed under the terms of the MIT License.
    44 */
    55
     
    1414
    1515#define MEDIA_SOUNDS_BEEP               "Beep"
    1616#define MEDIA_SOUNDS_STARTUP            "Startup"
    17 #define MEDIA_SOUNDS_KEY_DOWN           "Key Down"
    18 #define MEDIA_SOUNDS_KEY_REPEAT         "Key Repeat"
    19 #define MEDIA_SOUNDS_KEY_UP             "Key Up"
    20 #define MEDIA_SOUNDS_MOUSE_DOWN         "Mouse Down"
    21 #define MEDIA_SOUNDS_MOUSE_UP           "Mouse Up"
    22 #define MEDIA_SOUNDS_WINDOW_ACTIVATED   "Window Activated"
    23 #define MEDIA_SOUNDS_WINDOW_CLOSE       "Window Close"
    24 #define MEDIA_SOUNDS_WINDOW_MINIMIZED   "Window Minimized"
    25 #define MEDIA_SOUNDS_WINDOW_OPEN        "Window Open"
    26 #define MEDIA_SOUNDS_WINDOW_RESTORED    "Window Restored"
    27 #define MEDIA_SOUNDS_WINDOW_ZOOMED      "Window Zoomed"
     17#define MEDIA_SOUNDS_KEY_DOWN           "Key down"
     18#define MEDIA_SOUNDS_KEY_REPEAT         "Key repeat"
     19#define MEDIA_SOUNDS_KEY_UP             "Key up"
     20#define MEDIA_SOUNDS_MOUSE_DOWN         "Mouse down"
     21#define MEDIA_SOUNDS_MOUSE_UP           "Mouse up"
     22#define MEDIA_SOUNDS_WINDOW_ACTIVATED   "Window activated"
     23#define MEDIA_SOUNDS_WINDOW_CLOSE       "Window close"
     24#define MEDIA_SOUNDS_WINDOW_MINIMIZED   "Window minimized"
     25#define MEDIA_SOUNDS_WINDOW_OPEN        "Window open"
     26#define MEDIA_SOUNDS_WINDOW_RESTORED    "Window restored"
     27#define MEDIA_SOUNDS_WINDOW_ZOOMED      "Window zoomed"
    2828
    2929#endif // _MEDIA_SOUNDS_H