mirror of
https://gitlab.com/Remmina/Remmina.git
synced 2025-04-29 08:22:32 +08:00
Fix typos
This commit is contained in:
parent
5b0dda51f3
commit
18a0b86266
@ -62,7 +62,7 @@ These would make good topics for videos:
|
||||
|
||||
- Configuration and use of a basic RDP profile, quickly showing the most common controls (resizes, toolbar placement, screenshots, …).
|
||||
- Creation of a default profile.
|
||||
- Cration of and connection to a VNC server.
|
||||
- Creation of a connection to a VNC server.
|
||||
- Using a basic SSH tunnel.
|
||||
|
||||
### Disclaimer
|
||||
|
@ -198,7 +198,7 @@ Without the **Remmina community** of remminers, this project wouldn't exist.
|
||||
* Dennis Ollier ([larchunix](https://github.com/larchunix)) made the SPICE protocol plugin.
|
||||
* Luca Falavigna ([dktrkranz](https://github.com/dktrkranz)) Ubuntu PPA and Remmina patches.
|
||||
* Matteo F. Vescovi ([mfvescovi](https://github.com/mfvescovi)) brought the Remmina upstream version to Debian and Ubuntu.
|
||||
* Matteo Nastasi ([nastasi](https://github.com/nastasi)) started the implementation of build recipies for Ubuntu and Debian.
|
||||
* Matteo Nastasi ([nastasi](https://github.com/nastasi)) started the implementation of build recipes for Ubuntu and Debian.
|
||||
* Johannes Weberhofer ([weberhofer](https://github.com/weberhofer)) and **Pavel Alexeev** ([Hubbitus](https://github.com/Hubbitus))
|
||||
* Fabio Castelli ([muflone](https://github.com/muflone)) great improvements and functionalities.
|
||||
|
||||
|
@ -6,7 +6,7 @@ See [the wiki](https://gitlab.com/Remmina/Remmina/wikis/home#for-users-with-a-di
|
||||
Build instructions
|
||||
------------------
|
||||
|
||||
0. Update fluthub shared modules
|
||||
0. Update flathub shared modules
|
||||
|
||||
From time to time update the shared-modules provided by flathub
|
||||
|
||||
|
@ -819,9 +819,9 @@ static PyObject* remmina_register_plugin_wrapper(PyObject* self, PyObject* plugi
|
||||
}
|
||||
|
||||
if (python_wrapper_get_service()->register_plugin((RemminaPlugin*)remmina_plugin)) {
|
||||
g_print("%s: Successfully reigstered!\n", remmina_plugin->name);
|
||||
g_print("%s: Successfully registered!\n", remmina_plugin->name);
|
||||
} else {
|
||||
g_print("%s: Failed to reigster!\n", remmina_plugin->name);
|
||||
g_print("%s: Failed to register!\n", remmina_plugin->name);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -636,7 +636,7 @@ void remmina_rdp_cliprdr_request_data(GtkClipboard *gtkClipboard, GtkSelectionDa
|
||||
}
|
||||
|
||||
if (clipboard->format != info || clipboard->srv_data == NULL) {
|
||||
/* We do not have a local cached clipoard, so we have to start a remote request */
|
||||
/* We do not have a local cached clipboard, so we have to start a remote request */
|
||||
remmina_rdp_cliprdr_cached_clipboard_free(clipboard);
|
||||
|
||||
clipboard->format = info;
|
||||
|
@ -990,7 +990,7 @@ void remmina_rdp_event_init(RemminaProtocolWidget *gp)
|
||||
/** Fixme: This comment
|
||||
* needed for TS_SUPPRESS_OUTPUT_PDU
|
||||
* But it works only when we stay in the same window mode, if we switch to
|
||||
* fullscreen, for instance, the object refernce is lost, so we loose these
|
||||
* fullscreen, for instance, the object reference is lost, so we loose these
|
||||
* events.
|
||||
*/
|
||||
//g_signal_connect(G_OBJECT(gtk_widget_get_toplevel(rfi->drawing_area)), "map-event",
|
||||
|
@ -98,7 +98,7 @@ void remmina_rdp_monitor_get (rfContext *rfi, gchar **monitorids, guint32 *maxwi
|
||||
display = gdk_display_get_default ();
|
||||
n_monitors = gdk_display_get_n_monitors(display);
|
||||
|
||||
/* Get monitor at windows curently in use */
|
||||
/* Get monitor at windows currently in use */
|
||||
//w = gtk_widget_get_window(rfi->drawing_area);
|
||||
|
||||
//current_monitor = gdk_display_get_monitor_at_window (display, w);
|
||||
|
@ -646,7 +646,7 @@ static BOOL rf_desktop_resize(rdpContext *context)
|
||||
ui->event.type = REMMINA_RDP_UI_EVENT_DESTROY_CAIRO_SURFACE;
|
||||
remmina_rdp_event_queue_ui_sync_retint(gp, ui);
|
||||
|
||||
/* Tell libfreerdp to change its internal GDI bitmap width and heigt,
|
||||
/* Tell libfreerdp to change its internal GDI bitmap width and height,
|
||||
* this will also destroy gdi->primary_buffer, making our rfi->surface invalid */
|
||||
gdi_resize(((rdpContext *)rfi)->gdi, w, h);
|
||||
|
||||
@ -1949,7 +1949,7 @@ static gboolean remmina_rdp_main(RemminaProtocolWidget *gp)
|
||||
REMMINA_PLUGIN_DEBUG("Network settings not set");
|
||||
}
|
||||
|
||||
/* PerformanceFlags bitmask need also to be splitted into BOOL variables
|
||||
/* PerformanceFlags bitmask need also to be split into BOOL variables
|
||||
* like freerdp_settings_set_bool(rfi->clientContext.context.settings, FreeRDP_DisableWallpaper, freerdp_settings_set_bool(rfi->clientContext.context.settings, FreeRDP_AllowFontSmoothing…
|
||||
* or freerdp_get_param_bool() function will return the wrong value
|
||||
*/
|
||||
|
@ -1312,7 +1312,7 @@ static gboolean remmina_plugin_vnc_main(RemminaProtocolWidget *gp)
|
||||
}
|
||||
|
||||
if (rfbInitClient(cl, NULL, NULL)) {
|
||||
REMMINA_PLUGIN_DEBUG("Client initialization successfull");
|
||||
REMMINA_PLUGIN_DEBUG("Client initialization successful");
|
||||
break;
|
||||
} else {
|
||||
REMMINA_PLUGIN_DEBUG("Client initialization failed");
|
||||
|
@ -577,7 +577,7 @@ static GtkWidget* rmplugin_x2go_choose_session_dialog_factory(X2GoCustomUserData
|
||||
for (gint i = 0; i < SESSION_NUM_PROPERTIES; ++i) {
|
||||
// Everything is a String. (Except IS_VISIBLE flag)
|
||||
// If that changes one day, you could extent the if statement here.
|
||||
// But you would propably need a *lot* of refactoring.
|
||||
// But you would probably need a *lot* of refactoring.
|
||||
// Especially in the session parser.
|
||||
if (i == SESSION_DIALOG_IS_VISIBLE) {
|
||||
types[i] = G_TYPE_BOOLEAN;
|
||||
@ -889,7 +889,7 @@ static GValue rmplugin_x2go_session_chooser_get_property(GtkWidget *dialog,
|
||||
* Last elements has to be NULL. \n
|
||||
* Strings will get freed automatically.
|
||||
* @param error Will be filled with an error message on fail.
|
||||
* @param env String array of enviroment variables. \n
|
||||
* @param env String array of environment variables. \n
|
||||
* The list is NULL terminated and each item in
|
||||
* the list is of the form `NAME=VALUE`.
|
||||
*
|
||||
@ -966,7 +966,7 @@ static gchar* rmplugin_x2go_spawn_pyhoca_process(guint argc, gchar* argv[],
|
||||
|
||||
if (standard_err && strlen(standard_err) > 0) {
|
||||
if (g_str_has_prefix(standard_err, "pyhoca-cli: error: a socket error "
|
||||
"occured while establishing the connection:")) {
|
||||
"occurred while establishing the connection:")) {
|
||||
// Log error into GUI.
|
||||
gchar* errmsg = g_strdup_printf(
|
||||
_("The necessary PyHoca-CLI process has encountered a "
|
||||
@ -990,14 +990,14 @@ static gchar* rmplugin_x2go_spawn_pyhoca_process(guint argc, gchar* argv[],
|
||||
} else if (!success_ret || (*error) || strlen(standard_out) <= 0 || exit_code) {
|
||||
if (!(*error)) {
|
||||
gchar* errmsg = g_strdup_printf(
|
||||
_("An unknown error occured while trying "
|
||||
_("An unknown error occurred while trying "
|
||||
"to start PyHoca-CLI. Exit code: %i"),
|
||||
exit_code);
|
||||
REMMINA_PLUGIN_WARNING("%s", errmsg);
|
||||
g_set_error(error, 1, 1, "%s", errmsg);
|
||||
} else {
|
||||
gchar* errmsg = g_strdup_printf(
|
||||
_("An unknown error occured while trying to start "
|
||||
_("An unknown error occurred while trying to start "
|
||||
"PyHoca-CLI. Exit code: %i. Error: '%s'"),
|
||||
exit_code, (*error)->message);
|
||||
REMMINA_PLUGIN_WARNING("%s", errmsg);
|
||||
@ -1285,7 +1285,7 @@ static gboolean rmplugin_x2go_pyhoca_terminate_session(X2GoCustomUserData *custo
|
||||
err_ddata->flags = GTK_DIALOG_MODAL;
|
||||
err_ddata->type = GTK_MESSAGE_ERROR;
|
||||
err_ddata->buttons = GTK_BUTTONS_OK;
|
||||
err_ddata->title = _("An error occured.");
|
||||
err_ddata->title = _("An error occurred.");
|
||||
err_ddata->message = err_msg;
|
||||
// We don't need the response.
|
||||
err_ddata->callbackfunc = NULL;
|
||||
@ -2018,7 +2018,7 @@ static gchar* rmplugin_x2go_get_pyhoca_sessions(RemminaProtocolWidget* gp, GErro
|
||||
* needed for retrieving sessions from a X2Go server.
|
||||
*
|
||||
* @returns Returns either a GList containing the IDs of every already existing session
|
||||
* found or if the function failes, NULL.
|
||||
* found or if the function fails, NULL.
|
||||
*
|
||||
* TODO: If pyhoca-cli (python-x2go) implements `--json` or similar option -> Replace
|
||||
* entire function with JSON parsing.
|
||||
|
Loading…
x
Reference in New Issue
Block a user