forked from KolibriOS/kolibrios
Fix spelling programme
to program
- Correct spellings for en_US. - Minimal tweaks for fluency. git-svn-id: svn://kolibrios.org@10047 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
parent
e626066eef
commit
db1cb66d35
@ -86,7 +86,7 @@ int checkStateOnSave(int state)
|
||||
case 6: con_printf("\nEnd of a file, EOF!\n");
|
||||
return 6;
|
||||
|
||||
case 7: con_printf("\nPointer lies outside of application memory!\n");
|
||||
case 7: con_printf("\nPointer is outside of application memory!\n");
|
||||
return 7;
|
||||
|
||||
case 8: con_printf("\nDisk is full!\n");
|
||||
|
@ -1,10 +1,10 @@
|
||||
Backy (release date 2020.05.27)
|
||||
|
||||
Backy is a programme for backing up a file.
|
||||
Backy is a program for backing up a file.
|
||||
|
||||
Usage: backy <path1> <-o path2>
|
||||
path1 - path to a file to be backuped.
|
||||
-o path2 - path to the output directory without the name of a file.
|
||||
path1 - path to a file to be backed up.
|
||||
-o path2 - path to the output directory without the file name.
|
||||
|
||||
Examples:
|
||||
backy test.c
|
||||
@ -13,10 +13,9 @@ Examples:
|
||||
backy /hd0/1/test.c -o /tmp0/1/
|
||||
|
||||
//--------------------------------------//
|
||||
The programme:
|
||||
The program:
|
||||
- Compiled with KTCC compiler.
|
||||
- Written in KolibriOS NB svn7768.
|
||||
- Designed and written by JohnXenox
|
||||
aka Aleksandr Igorevich.
|
||||
//--------------------------------------//
|
||||
|
||||
|
@ -13,7 +13,7 @@ Backy - это программа для создания резервной к
|
||||
backy /hd0/1/test.c -o /tmp0/1/
|
||||
|
||||
//--------------------------------------//
|
||||
The programme:
|
||||
The program:
|
||||
- Compiled with KTCC compiler.
|
||||
- Written in KolibriOS NB svn7768.
|
||||
- Designed and written by JohnXenox
|
||||
|
@ -2,7 +2,7 @@
|
||||
/*
|
||||
* Author: JohnXenox aka Aleksandr Igorevich.
|
||||
*
|
||||
* Programme name: Beat
|
||||
* Program name: Beat
|
||||
* Description: A simple metronome.
|
||||
*/
|
||||
|
||||
@ -136,7 +136,7 @@ int main(int argc, char** argv)
|
||||
setCurrentPathToARawFile(_path_to_a_sample2, argv[0], SMPL_NAME2);
|
||||
setCurrentPathToARawFile(_path_to_a_playnote, argv[0], PRG_NAME);
|
||||
|
||||
// searches for a PlayNote programme.
|
||||
// searches for a PlayNote program
|
||||
for(char i = 0; (i < SEARCH_PATHES_NUMBER); i++)
|
||||
{
|
||||
if(startApp("/sys/loool.raw", 0, search_pathes_to_a_playnote[i]) > 0)
|
||||
@ -148,7 +148,7 @@ int main(int argc, char** argv)
|
||||
if(path_to_a_playnote == 0)
|
||||
{
|
||||
#if defined (lang_en)
|
||||
startApp("\"Can't find a PlayNote programme!\" -W", 0, "/sys/@notify");
|
||||
startApp("\"Can't find the PlayNote program!\" -W", 0, "/sys/@notify");
|
||||
#elif defined (lang_ru)
|
||||
startApp("\"<EFBFBD>¥ ¬®£ã ©â¨ ¯à®£à ¬¬ã PlayNote!\" -W", 0, "/sys/@notify");
|
||||
#endif
|
||||
@ -367,7 +367,7 @@ int main(int argc, char** argv)
|
||||
|
||||
|
||||
|
||||
// invertation of colours.
|
||||
// invert colors.
|
||||
if(key == KEY_SLASH)
|
||||
{
|
||||
if(counterIndicatorFlag != 0)
|
||||
@ -523,22 +523,3 @@ int main(int argc, char** argv)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -2,8 +2,8 @@
|
||||
/*
|
||||
* Author: JohnXenox aka Aleksandr Igorevich.
|
||||
*
|
||||
* Programme name: PlayNote
|
||||
* Description: The programme to play a note.
|
||||
* Program name: PlayNote
|
||||
* Description: The program to play a note.
|
||||
*
|
||||
* Works from command line, only!
|
||||
*/
|
||||
@ -68,7 +68,7 @@ _ksys_set_wanted_events(0);
|
||||
|
||||
con_printf("\n Name: PlayNote");
|
||||
con_printf("\n Date: %s", CREATION_DATE);
|
||||
con_printf("\n Description: The programme to play a note.\n");
|
||||
con_printf("\n Description: The program to play a note.\n");
|
||||
|
||||
con_printf("\n Author: JohnXenox\n");
|
||||
|
||||
@ -104,11 +104,3 @@ _ksys_set_wanted_events(0);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
PlayNote (release date 2020.05.17)
|
||||
|
||||
PlayNote is a programme to play a note. Sound plays through a sound driver.
|
||||
PlayNote is a program to play a note. Sound plays through a sound driver.
|
||||
|
||||
Usage: PlayNote <path>
|
||||
path - path to a file to be played.
|
||||
@ -20,10 +20,9 @@ To install a sox in Ubuntu:
|
||||
===========================
|
||||
|
||||
//--------------------------------------//
|
||||
The programme:
|
||||
The program:
|
||||
- Compiled with KTCC compiler.
|
||||
- Written in KolibriOS NB svn7768.
|
||||
- Designed and written by JohnXenox
|
||||
aka Aleksandr Igorevich.
|
||||
//--------------------------------------//
|
||||
|
||||
|
@ -20,7 +20,7 @@ PlayNote - простая программа для проигрывания н
|
||||
===========================
|
||||
|
||||
//--------------------------------------//
|
||||
The programme:
|
||||
The program:
|
||||
- Compiled with KTCC compiler.
|
||||
- Written in KolibriOS NB svn7768.
|
||||
- Designed and written by JohnXenox
|
||||
|
@ -1,26 +1,25 @@
|
||||
Beat (release date 2020.05.17)
|
||||
|
||||
Beat is a simple metronome. Uses a PlayNote programme.
|
||||
Samples Beep1.raw and Beep2.raw must be placed with a Beat.
|
||||
Beat is a simple metronome, using the PlayNote program.
|
||||
Samples 'Beep1.raw' and 'Beep2.raw' must be placed with Beat.
|
||||
|
||||
A PlayNote must be placed in one of the next directory:
|
||||
PlayNote must be placed in one of the directories:
|
||||
/sys, /sys/media or in the same place as a Beat.
|
||||
|
||||
Hot keys:
|
||||
- CTRL + LEFT ARROW - backward tempo mnemonics.
|
||||
- CTRL + LEFT ARROW - forward tempo mnemonics.
|
||||
- LEFT ARROW - decreases a tempo beat (beats per minute).
|
||||
- RIGHT ARROW - increases a tempo beat (beats per minute).
|
||||
- LEFT ARROW - decrease tempo (beats per minute).
|
||||
- RIGHT ARROW - increase tempo (beats per minute).
|
||||
- COMMA - decreases a meter.
|
||||
- DOT - increases a meter.
|
||||
- SLASH - inverts colours of a counter indicator.
|
||||
- From "NUM 1" to "+ SIGN") - (1 ... 12) makes an accent on selected beat.
|
||||
- SLASH - inverts the counter indicator's colors.
|
||||
- From "NUM 1" to "+ SIGN" - (1 ... 12) adds an accent to the selected beat.
|
||||
|
||||
//--------------------------------------//
|
||||
The programme:
|
||||
The program:
|
||||
- Compiled with KTCC compiler.
|
||||
- Written in KolibriOS NB svn7768.
|
||||
- Designed and written by JohnXenox
|
||||
aka Aleksandr Igorevich.
|
||||
//--------------------------------------//
|
||||
|
||||
|
@ -18,7 +18,7 @@ Beat - простой метроном. Для работы использует
|
||||
|
||||
|
||||
//--------------------------------------//
|
||||
The programme:
|
||||
The program:
|
||||
- Compiled with KTCC compiler.
|
||||
- Written in KolibriOS NB svn7768.
|
||||
- Designed and written by JohnXenox
|
||||
|
Loading…
Reference in New Issue
Block a user