public Q_SLOTS:
void downloadFinished();
- void downloadProgress(qint64 recieved, qint64 total);
+ void downloadProgress(qint64 received, qint64 total);
void replyError(QNetworkReply::NetworkError errorCode);
};
\ No newline at end of file
</message>
<message>
<location filename="../widgets/main_window.cpp" line="1090"/>
- <source>Extenstion ".scd" was automatically added to the selected file name, but the file "%1" already exists.
+ <source>Extension ".scd" was automatically added to the selected file name, but the file "%1" already exists.
Do you wish to overwrite it?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/main_window.cpp" line="1090"/>
- <source>Extenstion ".scd" was automatically added to the selected file name, but the file "%1" already exists.
+ <source>Extension ".scd" was automatically added to the selected file name, but the file "%1" already exists.
Do you wish to overwrite it?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/main_window.cpp" line="1090"/>
- <source>Extenstion ".scd" was automatically added to the selected file name, but the file "%1" already exists.
+ <source>Extension ".scd" was automatically added to the selected file name, but the file "%1" already exists.
Do you wish to overwrite it?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/main_window.cpp" line="1090"/>
- <source>Extenstion ".scd" was automatically added to the selected file name, but the file "%1" already exists.
+ <source>Extension ".scd" was automatically added to the selected file name, but the file "%1" already exists.
Do you wish to overwrite it?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/main_window.cpp" line="1090"/>
- <source>Extenstion ".scd" was automatically added to the selected file name, but the file "%1" already exists.
+ <source>Extension ".scd" was automatically added to the selected file name, but the file "%1" already exists.
Do you wish to overwrite it?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/main_window.cpp" line="1090"/>
- <source>Extenstion ".scd" was automatically added to the selected file name, but the file "%1" already exists.
+ <source>Extension ".scd" was automatically added to the selected file name, but the file "%1" already exists.
Do you wish to overwrite it?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/main_window.cpp" line="1090"/>
- <source>Extenstion ".scd" was automatically added to the selected file name, but the file "%1" already exists.
+ <source>Extension ".scd" was automatically added to the selected file name, but the file "%1" already exists.
Do you wish to overwrite it?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/main_window.cpp" line="1090"/>
- <source>Extenstion ".scd" was automatically added to the selected file name, but the file "%1" already exists.
+ <source>Extension ".scd" was automatically added to the selected file name, but the file "%1" already exists.
Do you wish to overwrite it?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../widgets/main_window.cpp" line="1090"/>
- <source>Extenstion ".scd" was automatically added to the selected file name, but the file "%1" already exists.
+ <source>Extension ".scd" was automatically added to the selected file name, but the file "%1" already exists.
Do you wish to overwrite it?</source>
<translation type="unfinished"></translation>
save_path.append(".scd");
QFileInfo save_path_info(save_path);
if (save_path_info.exists()) {
- QString msg = tr("Extenstion \".scd\" was automatically added to the "
+ QString msg = tr("Extension \".scd\" was automatically added to the "
"selected file name, but the file \"%1\" already exists.\n\n"
"Do you wish to overwrite it?")
.arg(save_path_info.fileName());
As a special exception, including TLSF header files in a file, or linking with
other files objects to produce an executable application, is merely considered
normal use of the library, and does *not* fall under the heading of "derived
-work". Therfore does not by itself cause the resulting executable application
+work". Therefore does not by itself cause the resulting executable application
to be covered by the GNU General Public License. This exception does not
however invalidate any other reasons why the executable file might be covered
-by the GNU Public License.
+by the GNU General Public License.
* [set] matches any character in the set
* [^set] matches any character NOT in the set
* where a set is a group of characters or ranges. a range
- * is written as two characters seperated with a hyphen: a-z denotes
+ * is written as two characters separated with a hyphen: a-z denotes
* all characters between a to z inclusive.
* [-set] set matches a literal hypen and any character in the set
* []set] matches a literal close bracket and any character in the set
" The default is 0.\n"
#ifdef _WIN32
" -U <ugen-plugins-path>\n"
- " A list of paths seperated by `;`.\n"
+ " A list of paths separated by `;`.\n"
#else
" -U <ugen-plugins-path>\n"
- " A list of paths seperated by `:`.\n"
+ " A list of paths separated by `:`.\n"
#endif
" If specified, standard paths are NOT searched for plugins.\n"
" -P <restricted-path> \n"
"-2 suppresses informational and many error messages, as well as\n"
"messages from Poll.")
#ifdef _WIN32
- ("ugen-search-path,U", value<vector<string> >(&ugen_paths), "A list of paths seperated by `;`.\n"
+ ("ugen-search-path,U", value<vector<string> >(&ugen_paths), "A list of paths separated by `;`.\n"
"If specified, standard paths are NOT searched for plugins.\nMay be specified several times.")
#else
- ("ugen-search-path,U", value<vector<string> >(&ugen_paths), "A list of paths seperated by `:`.\n"
+ ("ugen-search-path,U", value<vector<string> >(&ugen_paths), "A list of paths separated by `:`.\n"
"If specified, standard paths are NOT searched for plugins.\nMay be specified several times.")
#endif
("restricted-path,P", value<vector<string> >(&restrict_paths), "if specified, prevents file-accessing OSC commands from accessing files outside <restricted-path>")