Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions doc/man/es/mc.1.in
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ como un alias para el correspondiente guión de shell.
.I \-s, \-\-slow
Activa el modo para terminales lentos. En este modo el programa no
dibuja bordes con líneas de caracteres y desactiva el modo detallado.
Si no se rellena la sección [Lines] el marco pseudo\-gráfico estará
Si no se rellena la sección [lines] el marco pseudo\-gráfico estará
formado por espacios; en caso contrario el marco se contruye con
caracteres de texto según los parámetros siguientes:
.TP
Expand Down Expand Up @@ -3723,14 +3723,14 @@ Colores\&.
.\"NODE " Skins lines"
.SH " Trazado de líneas"
Trazos de líneas de la sección
.B [Lines]
.B [lines]
del archivo de skins. Por defecto se utilizan líneas sencillas, pero
se pueden redefinir empleando cualquier símbolo utf\-8 (por ejemplo,
líneas dobles).

.PP
Descripción de parámetros de la sección
.BR [Lines] :
.BR [lines] :
.TP
.I lefttop
esquina superior izquierda.
Expand Down
4 changes: 2 additions & 2 deletions doc/man/ru/mc.1.in
Original file line number Diff line number Diff line change
Expand Up @@ -4396,13 +4396,13 @@ menuhotsel=yellow;black;bold+underline
.\"NODE " Skins lines"
.SH " Линии для отрисовки рамок"
Линии задаются в секции
.B [Lines]
.B [lines]
в скин\-файле. По умолчанию используются одинарные линии, но возможно
переназначить на использование любых utf\-8 символов, похожих на линии

.PP
Описание параметров секции
.BR [Lines] :
.BR [lines] :
.TP
.I lefttop
изображение левого верхнего угла рамки
Expand Down
4 changes: 2 additions & 2 deletions doc/man/sr/mc.1.in
Original file line number Diff line number Diff line change
Expand Up @@ -3810,13 +3810,13 @@ menuhotsel=yellow;black;bold+underline
.\"NODE " Skins lines"
.SH " Линије за исцртавање"
Линије се подешавају у одељку
.B [Lines]
.B [lines]
датотеке скина. Подразумевано, користе се једноструке линије, али можете
поставити да се користе било који utf\-8 симболи (на пример, линије).

.PP
Описи параметара
.BR [Lines] :
.BR [lines] :
.TP
.I lefttop
горњи леви фрагмент линије.
Expand Down
2 changes: 1 addition & 1 deletion lib/skin/hc-skins.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

/*** file scope macro definitions ****************************************************************/

#define set_lines(x, y) mc_config_set_string (mc_skin->config, "Lines", x, y)
#define set_lines(x, y) mc_config_set_string (mc_skin->config, "lines", x, y)

/*** file scope type declarations ****************************************************************/

Expand Down
7 changes: 6 additions & 1 deletion lib/skin/lines.c
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,12 @@ skin_get_char (mc_skin_t *mc_skin, const char *name, gunichar def, mc_tty_char_t
estr_t conv_res;
char *value_utf8;

value_utf8 = mc_config_get_string_raw (mc_skin->config, "Lines", name, NULL);
value_utf8 = mc_config_get_string_raw (mc_skin->config, "lines", name, NULL);
if (value_utf8 == NULL)
{
// it was called "Lines" (uppercase L) in mc <= 4.8.33, accept that for compatibility
value_utf8 = mc_config_get_string_raw (mc_skin->config, "Lines", name, NULL);
}
if (value_utf8 != NULL)
{
c = g_utf8_get_char_validated (value_utf8, -1);
Expand Down
2 changes: 1 addition & 1 deletion misc/skins/README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ Character sections
The following keys define characters to be shown at various positions on the
display. The characters in the skin files need to be encoded in UTF-8.

[Lines]
[lines]
Frame characters used all throughout mc.

horiz
Expand Down
2 changes: 1 addition & 1 deletion misc/skins/dark.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[skin]
description = Dark skin

[Lines]
[lines]
horiz = ─
vert = │
lefttop = ┌
Expand Down
2 changes: 1 addition & 1 deletion misc/skins/darkfar.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[skin]
description = Dark Far skin

[Lines]
[lines]
horiz = ─
vert = │
lefttop = ┌
Expand Down
2 changes: 1 addition & 1 deletion misc/skins/default.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[skin]
description = Standard skin

[Lines]
[lines]
horiz = ─
vert = │
lefttop = ┌
Expand Down
2 changes: 1 addition & 1 deletion misc/skins/double-lines.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[skin]
description = Far-like skin

[Lines]
[lines]
horiz = ─
vert = │
lefttop = ┌
Expand Down
2 changes: 1 addition & 1 deletion misc/skins/featured-plus.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[skin]
description = Enhanced standard skin with alternative directory and file select/mark colors

[Lines]
[lines]
horiz = ─
vert = │
lefttop = ┌
Expand Down
2 changes: 1 addition & 1 deletion misc/skins/featured.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[skin]
description = Enhanced standard skin

[Lines]
[lines]
horiz = ─
vert = │
lefttop = ┌
Expand Down
2 changes: 1 addition & 1 deletion misc/skins/gotar.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[skin]
description = GoTaR @PLD Linux

[Lines]
[lines]
horiz = ─
vert = │
lefttop = ┌
Expand Down
2 changes: 1 addition & 1 deletion misc/skins/gray-green-purple256.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
description = Gray-Green-Purple Skin
256colors = true

[Lines]
[lines]
horiz = ─
vert = │
lefttop = ┌
Expand Down
2 changes: 1 addition & 1 deletion misc/skins/gray-orange-blue256.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
description = Gray-Orange-Blue Skin
256colors = true

[Lines]
[lines]
horiz = ─
vert = │
lefttop = ┌
Expand Down
2 changes: 1 addition & 1 deletion misc/skins/julia256.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
description = Dark skin with calm colors and good contrast
256colors = true

[Lines]
[lines]
horiz = ─
vert = │
lefttop = ┌
Expand Down
2 changes: 1 addition & 1 deletion misc/skins/julia256root.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
description = Dark skin with calm colors and good contrast (root)
256colors = true

[Lines]
[lines]
horiz = ─
vert = │
lefttop = ┌
Expand Down
2 changes: 1 addition & 1 deletion misc/skins/mc46.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[skin]
description = mc-4.6 skin

[Lines]
[lines]
horiz = ─
vert = │
lefttop = ┌
Expand Down
2 changes: 1 addition & 1 deletion misc/skins/modarcon16-defbg-thin.ini
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
description = MoDarCon16-DefaultBG (user)
256colors = false

[Lines]
[lines]
horiz = ─
vert = │
lefttop = ┌
Expand Down
2 changes: 1 addition & 1 deletion misc/skins/modarcon16-defbg.ini
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
description = MoDarCon16-DefaultBG (user)
256colors = false

[Lines]
[lines]
horiz = ─
vert = │
lefttop = ┌
Expand Down
2 changes: 1 addition & 1 deletion misc/skins/modarcon16-thin.ini
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
description = MoDarCon16 (user)
256colors = false

[Lines]
[lines]
horiz = ─
vert = │
lefttop = ┌
Expand Down
2 changes: 1 addition & 1 deletion misc/skins/modarcon16.ini
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
description = MoDarCon16 (user)
256colors = false

[Lines]
[lines]
horiz = ─
vert = │
lefttop = ┌
Expand Down
2 changes: 1 addition & 1 deletion misc/skins/modarcon16root-defbg-thin.ini
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
description = MoDarCon16root-DefaultBG (root)
256colors = false

[Lines]
[lines]
horiz = ─
vert = │
lefttop = ┌
Expand Down
2 changes: 1 addition & 1 deletion misc/skins/modarcon16root-defbg.ini
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
description = MoDarCon16root-DefaultBG (root)
256colors = false

[Lines]
[lines]
horiz = ─
vert = │
lefttop = ┌
Expand Down
2 changes: 1 addition & 1 deletion misc/skins/modarcon16root-thin.ini
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
description = MoDarCon16root (root)
256colors = false

[Lines]
[lines]
horiz = ─
vert = │
lefttop = ┌
Expand Down
2 changes: 1 addition & 1 deletion misc/skins/modarcon16root.ini
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
description = MoDarCon16root (root)
256colors = false

[Lines]
[lines]
horiz = ─
vert = │
lefttop = ┌
Expand Down
2 changes: 1 addition & 1 deletion misc/skins/modarin256-defbg-thin.ini
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
description = MoDarIn256-DefaultBG (user)
256colors = true

[Lines]
[lines]
horiz = ─
vert = │
lefttop = ┌
Expand Down
2 changes: 1 addition & 1 deletion misc/skins/modarin256-defbg.ini
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
description = MoDarIn256-DefaultBG (user)
256colors = true

[Lines]
[lines]
horiz = ─
vert = │
lefttop = ┌
Expand Down
2 changes: 1 addition & 1 deletion misc/skins/modarin256-thin.ini
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
description = MoDarIn256 (user)
256colors = true

[Lines]
[lines]
horiz = ─
vert = │
lefttop = ┌
Expand Down
2 changes: 1 addition & 1 deletion misc/skins/modarin256.ini
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
description = MoDarIn256 (user)
256colors = true

[Lines]
[lines]
horiz = ─
vert = │
lefttop = ┌
Expand Down
2 changes: 1 addition & 1 deletion misc/skins/modarin256root-defbg-thin.ini
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
description = MoDarIn256root-DefaultBG (root)
256colors = true

[Lines]
[lines]
horiz = ─
vert = │
lefttop = ┌
Expand Down
2 changes: 1 addition & 1 deletion misc/skins/modarin256root-defbg.ini
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
description = MoDarIn256root-DefaultBG (root)
256colors = true

[Lines]
[lines]
horiz = ─
vert = │
lefttop = ┌
Expand Down
2 changes: 1 addition & 1 deletion misc/skins/modarin256root-thin.ini
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
description = MoDarIn256root (root)
256colors = true

[Lines]
[lines]
horiz = ─
vert = │
lefttop = ┌
Expand Down
2 changes: 1 addition & 1 deletion misc/skins/modarin256root.ini
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
description = MoDarIn256root (root)
256colors = true

[Lines]
[lines]
horiz = ─
vert = │
lefttop = ┌
Expand Down
2 changes: 1 addition & 1 deletion misc/skins/nicedark.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[skin]
description = Nice and Dark

[Lines]
[lines]
horiz = ─
vert = │
lefttop = ┌
Expand Down
2 changes: 1 addition & 1 deletion misc/skins/sand256.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
description = Sand skin using 256 colors
256colors = true

[Lines]
[lines]
horiz = ╌
vert = ┆
lefttop = ╭
Expand Down
2 changes: 1 addition & 1 deletion misc/skins/seasons-autumn16M.ini
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
description = Four Seasons – Autumn
truecolors = true

[Lines]
[lines]
horiz = ─
vert = │
lefttop = ┌
Expand Down
2 changes: 1 addition & 1 deletion misc/skins/seasons-spring16M.ini
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
description = Four Seasons – Spring
truecolors = true

[Lines]
[lines]
horiz = ─
vert = │
lefttop = ┌
Expand Down
2 changes: 1 addition & 1 deletion misc/skins/seasons-summer16M.ini
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
description = Four Seasons – Summer
truecolors = true

[Lines]
[lines]
horiz = ─
vert = │
lefttop = ┌
Expand Down
2 changes: 1 addition & 1 deletion misc/skins/seasons-winter16M.ini
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
description = Four Seasons – Winter
truecolors = true

[Lines]
[lines]
horiz = ─
vert = │
lefttop = ┌
Expand Down
Loading
Loading