1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
diff --git a/gtk-recordmydesktop/src/rmdStrings.py b/gtk-recordmydesktop/src/rmdStrings.py
index 9980970..5734304 100644
--- a/gtk-recordmydesktop/src/rmdStrings.py
+++ b/gtk-recordmydesktop/src/rmdStrings.py
@@ -28,7 +28,7 @@ rmdErrStr={
9*256:_('Cannot connect to Xserver.'),
10*256:_('Color depth is not 24bpp.'),
11*256:_('Improper window specification.'),
- 12*256:_('Cannot attach shared memory to proccess.'),
+ 12*256:_('Cannot attach shared memory to process.'),
13*256:_('Cannot open file for writting.'),
14*256:_('Cannot load the Jack library (dlopen/dlsym error on libjack.so).'),
15*256:_('Cannot create new client.'),
@@ -49,7 +49,7 @@ smplTooltipLabels=[_('Click here to select a window to record'),
_('Click to start the recording.\nThis window will hide itself.'),
_('Click to choose a filename and location.\nDefault is out.ogv in your home folder.\nIf the file already exists, the new one\nwill have a number attached on its name\n(this behavior can be changed )'),
_('Click to exit the program.'),
- _('Select the video quality of your recording.\n(Lower quality will require more proccessing power,\nso it\'s recommended, when encoding on the fly,\nto leave at 100)'),
+ _('Select the video quality of your recording.\n(Lower quality will require more processing power,\nso it\'s recommended, when encoding on the fly,\nto leave at 100)'),
_('Enable/Disable sound recording.'),
_('Select the audio quality of your recording.'),
_('Click here to access more options.')]
@@ -61,7 +61,7 @@ smplStrings={ 'Record':_("Record"),
}
monStrings={'Cancel':_("Cancel"),
- 'PleaseWait':_("Please wait while your recording is being encoded\nWARNING!!!\nIf you press Cancel or close this window,\nthis proccess cannot be resumed!"),
+ 'PleaseWait':_("Please wait while your recording is being encoded\nWARNING!!!\nIf you press Cancel or close this window,\nthis process cannot be resumed!"),
'complete':_("complete")
}
|