Bwidget Source Code
Changes On Branch msgcat
Not logged in

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Changes In Branch msgcat Excluding Merge-Ins

This is equivalent to a diff from dd7b03451d to 6f581442f8

2018-11-26
10:20
For Unix, also Bind KP_Enter for default dialog button invokation. Ticket [3e31f04367] check-in: 4460aae437 user: oehhar tags: bwidget
2018-02-09
18:15
add support to msgcat Leaf check-in: 6f581442f8 user: pd tags: msgcat
2018-01-13
14:03
Spanish translation enhanced: de el -> del (by neko on clt) check-in: dd7b03451d user: oehhar tags: bwidget
2018-01-12
15:42
Spanish tranlation enhanced by Neko check-in: f88ea0df56 user: oehhar tags: bwidget

Changes to demo/tmpldlg.tcl.

13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29












30
31
32
33
34
35
36
37

    set titf1 [TitleFrame $frame.titf1 -text "Resources"]
    set titf2 [TitleFrame $frame.titf2 -text "Template Dialog"]
    set titf3 [TitleFrame $frame.titf3 -text "Message Dialog"]
    set titf4 [TitleFrame $frame.titf4 -text "Other dialog"]

    set subf [$titf1 getframe]
    set cmd  {option read [file join $::BWIDGET::LIBRARY "lang" $DemoDlg::resources.rc]}
    set rad1 [radiobutton $subf.rad1 -text "English" \
                  -variable DemoDlg::resources -value en \
                  -command  $cmd]
    set rad2 [radiobutton $subf.rad2 -text "French" \
                  -variable DemoDlg::resources -value fr \
                  -command  $cmd]
    set rad3 [radiobutton $subf.rad3 -text "German" \
                  -variable DemoDlg::resources -value de \
                  -command  $cmd]












    pack $rad1 $rad2 $rad3 -side left

    _tmpldlg [$titf2 getframe]
    _msgdlg  [$titf3 getframe]
    _stddlg  [$titf4 getframe]

    pack $titf1 -fill x -pady 2 -padx 2
    pack $titf4 -side bottom -fill x -pady 2 -padx 2







|









>
>
>
>
>
>
>
>
>
>
>
>
|







13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49

    set titf1 [TitleFrame $frame.titf1 -text "Resources"]
    set titf2 [TitleFrame $frame.titf2 -text "Template Dialog"]
    set titf3 [TitleFrame $frame.titf3 -text "Message Dialog"]
    set titf4 [TitleFrame $frame.titf4 -text "Other dialog"]

    set subf [$titf1 getframe]
	set cmd  {BWidget::changeLang $DemoDlg::resources}
    set rad1 [radiobutton $subf.rad1 -text "English" \
                  -variable DemoDlg::resources -value en \
                  -command  $cmd]
    set rad2 [radiobutton $subf.rad2 -text "French" \
                  -variable DemoDlg::resources -value fr \
                  -command  $cmd]
    set rad3 [radiobutton $subf.rad3 -text "German" \
                  -variable DemoDlg::resources -value de \
                  -command  $cmd]
    set rad4 [radiobutton $subf.rad4 -text "Spanish" \
                  -variable DemoDlg::resources -value es \
                  -command  $cmd]
    set rad5 [radiobutton $subf.rad5 -text "Polish" \
                  -variable DemoDlg::resources -value po \
                  -command  $cmd]
    set rad6 [radiobutton $subf.rad6 -text "Norwegian" \
                  -variable DemoDlg::resources -value no \
                  -command  $cmd]
    set rad7 [radiobutton $subf.rad7 -text "Nederlans" \
                  -variable DemoDlg::resources -value nl \
                  -command  $cmd]
    pack $rad1 $rad2 $rad3 $rad4 $rad5 $rad6 $rad7 -side left

    _tmpldlg [$titf2 getframe]
    _msgdlg  [$titf3 getframe]
    _stddlg  [$titf4 getframe]

    pack $titf1 -fill x -pady 2 -padx 2
    pack $titf4 -side bottom -fill x -pady 2 -padx 2

Changes to init.tcl.

27
28
29
30
31
32
33


34
35
36
37
38
39
40
41
42
43
44

45
46
47
48
49
50
51
52
	}
    }
}
Widget::_opt_defaults

# Try to load lang file corresponding to current msgcat locale
proc Widget::_opt_lang {} {


    if {0 != [llength [info commands ::msgcat::mcpreferences]]} {
        set langs [::msgcat::mcpreferences]
    }
    lappend langs en

    foreach lang $langs {
        set l [file join $::BWIDGET::LIBRARY "lang" "$lang.rc"]
        if {(![catch {file readable $l} result]) && ($result)} {
            option read $l
            break
        }

    }
}
Widget::_opt_lang

## Add a TraverseIn binding to standard Tk widgets to handle some of
## the BWidget-specific things we do.
bind Entry   <<TraverseIn>> { %W selection range 0 end; %W icursor end }
bind Spinbox <<TraverseIn>> { %W selection range 0 end; %W icursor end }







>
>
|
|
<
<
|
|
|
<
<
<
|
>
|







27
28
29
30
31
32
33
34
35
36
37


38
39
40



41
42
43
44
45
46
47
48
49
50
	}
    }
}
Widget::_opt_defaults

# Try to load lang file corresponding to current msgcat locale
proc Widget::_opt_lang {} {
	if {![catch {package require msgcat}]} {
		# package loaded
		namespace import ::msgcat::*
		if {![::msgcat::mcload [file join $::BWIDGET::LIBRARY "lang"]]} {


			# no files loaded, default to english
			::msgcat::mclocale en
			::msgcat::mcload [file join $::BWIDGET::LIBRARY "lang"]



		}
		source [file join $::BWIDGET::LIBRARY "lang" "xopt.tcl"]
	}
}
Widget::_opt_lang

## Add a TraverseIn binding to standard Tk widgets to handle some of
## the BWidget-specific things we do.
bind Entry   <<TraverseIn>> { %W selection range 0 end; %W icursor end }
bind Spinbox <<TraverseIn>> { %W selection range 0 end; %W icursor end }

Added lang/da.msg.

























































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# ------------------------------------------------------------------------------
#  da.msg
#  This file is part of Unifix BWidget Toolkit
#  Definition of da translation
# ------------------------------------------------------------------------------

# --- symbolic names of buttons -----------------------------------------------

::msgcat::mcset da {&Abort} {&Annullér}
::msgcat::mcset da {&Retry} {P&røv igen}
::msgcat::mcset da {&Ignore} {&Ignorer}
::msgcat::mcset da {&OK} {&OK}
::msgcat::mcset da {&Cancel} {&Cancel}
::msgcat::mcset da {&Yes} {&Ja}
::msgcat::mcset da {&No} {&Nej}

# --- symbolic names of label of SelectFont dialog ----------------------------

::msgcat::mcset da {Bold} {Fed}
::msgcat::mcset da {Italic} {Kursiv}
::msgcat::mcset da {Underline} {Understreg}
::msgcat::mcset da {Overstrike} {Overstreg}
::msgcat::mcset da {&Font} {&Font}
::msgcat::mcset da {&Size} {&Størrelse}
::msgcat::mcset da {St&yle} {St&il}
::msgcat::mcset da {&Color...} {F&arve...}

# --- symbolic names of label of PasswdDlg dialog -----------------------------

::msgcat::mcset da {&Login} {&Brugernavn}
::msgcat::mcset da {&Password} {&Password}

# --- resource for SelectFont dialog ------------------------------------------

::msgcat::mcset da {Font selection} {Font-valg}
::msgcat::mcset da {Sample text} {Eksempeltekst æøå}

# --- resource for MessageDlg dialog ------------------------------------------

::msgcat::mcset da {Message} {Besked}
::msgcat::mcset da {Information} {Information}
::msgcat::mcset da {Question} {Spørgsmål}
::msgcat::mcset da {Warning} {Advarsel}
::msgcat::mcset da {Error} {Fejl}

# --- resource for PasswdDlg dialog -------------------------------------------

::msgcat::mcset da {Enter login and password} {Indtast brugernavn og password}

# --- symbolic names of label of SelectColor dialog ----------------------------

::msgcat::mcset da {Base colors} {Grundfarver}
::msgcat::mcset da {User colors} {Brugerdefinerede farver}
::msgcat::mcset da {Your Selection} {Dit valg}
::msgcat::mcset da {Color Selectors} {Farvervælger}

# --- dynamic help text for SelectColor dialog. Lines 75 chars max, split by '\n'.

::msgcat::mcset da {Click or drag the mouse in the Color Selectors to choose a color.\nIf the selected color remains black, regardless of what you\ndo in the left-hand Color Selector (for hue and saturation), check\nthe position of the pointer in the right-hand Color Selector\n(for brightness).\n\nClick one of the "Base colors" to read a value from this palette.\n\nClick one of the "User colors" to read a value from this palette,\nor to write to the palette if the color is blank. If you then\nuse the Color Selectors to change the color, your choice will be\nwritten to this (User) palette color until you select another\n(Base or User) palette color.} {Klik eller træk musen i farvervælgeren for at vælge en farve.\nHvis den valgte farve altid er sort, uanset værdierne til venstre,\ntjek intensitetsværdien til højere.\n\nKlik en af "grundfarverne" for at aflæse værdierne fra paletten,\neller for at tildele en, hvis farven er sort. Hvis du efterfølgende\nbruger farvevælgeren til at ændre en farver, gemmes ændringen under\nbrugerdefinerede farver indtil en ny paletfarve er valgt.}
::msgcat::mcset da {Click in the text entry window in the left of the "Your\nSelection" area.\n\nType the color that you want in hexadecimal RGB format.\nWhenever the number of hexadecimal digits is a multiple\nof 3, the color value is valid and will be copied to the\nother parts of the Color Selector.\n\nLeave the text entry window by clicking anywhere else,\nor by pressing the "Escape" or "Return" key. The text\nentry window will then display the color in 24-bit RGB\nformat, although internally the Color Selector uses\n48-bit colors.\n\nWhen the text entry widget does not have keyboard focus\n(i.e. does not show a cursor), the "Return" and "Escape"\nkeys do the same as the "OK" and "Cancel" buttons,\nrespectively.} {Klik i tekstboksen til venstre i "dit valg" området.\n\nIndtast den ønskede farve i hexadecimalt RGB-format.\nVærdien er gyldig når den består af et antal cifre deleligt med 3,\ni så fald opdateres resten af farvervælgeren.\n\nForlad tekstboksen ved at klikke andetsteds, eller ved at taste\n"Escape" eller "Return". Tekstboksen viser efterfølgende farven i\n24-bit RGB-format, dog arbejder farvevælgeren internt med\n48-bit værdier.\n\nNår tekstboksen ikke har fokus fungerer "Return" og "Escape"\ntasterne lige som henholdsvis "OK" og "Annullér".}

Added lang/de.msg.

























































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# ------------------------------------------------------------------------------
#  de.msg
#  This file is part of Unifix BWidget Toolkit
#  Definition of de translation
# ------------------------------------------------------------------------------

# --- symbolic names of buttons ------------------------------------------------

::msgcat::mcset de {&Abort} {&Abbrechen}
::msgcat::mcset de {&Retry} {&Wiederholen}
::msgcat::mcset de {&Ignore} {&Ignorieren}
::msgcat::mcset de {&OK} {&OK}
::msgcat::mcset de {&Cancel} {&Abbrechen}
::msgcat::mcset de {&Yes} {&Ja}
::msgcat::mcset de {&No} {&Nein}

# --- symbolic names of label of SelectFont dialog ----------------------------

::msgcat::mcset de {Bold} {Fett}
::msgcat::mcset de {Italic} {Kursiv}
::msgcat::mcset de {Underline} {Unterstrichen}
::msgcat::mcset de {Overstrike} {Durchgestrichen}
::msgcat::mcset de {&Font} {&Schriftart}
::msgcat::mcset de {&Size} {S&chriftgrad}
::msgcat::mcset de {St&yle} {Sc&hriftschnitt}
::msgcat::mcset de {&Color...} {&Farbe...}

# --- symbolic names of label of PasswdDlg dialog -----------------------------

::msgcat::mcset de {&Login} {&Login}
::msgcat::mcset de {&Password} {&Password}

# --- resource for SelectFont dialog ------------------------------------------

::msgcat::mcset de {Font selection} {Schrift Auswahl}
::msgcat::mcset de {Sample text} {Beispieltext}

# --- resource for MessageDlg dialog ------------------------------------------

::msgcat::mcset de {Message} {Meldung}
::msgcat::mcset de {Information} {Hinweis}
::msgcat::mcset de {Question} {Frage}
::msgcat::mcset de {Warning} {Warnung}
::msgcat::mcset de {Error} {Fehler}

# --- resource for PasswdDlg dialog -------------------------------------------

::msgcat::mcset de {Enter login and password} {Enter login and password}

# --- symbolic names of label of SelectColor dialog ----------------------------

::msgcat::mcset de {Base colors} {Grundfarben}
::msgcat::mcset de {User colors} {Benutzerdefinierte Farben}
::msgcat::mcset de {Your Selection} {Gewählte Farbe}
::msgcat::mcset de {Color Selectors} {Farbraum}

# --- dynamic help text for SelectColor dialog. Lines 75 chars max, split by '\n'.

::msgcat::mcset de {Click or drag the mouse in the Color Selectors to choose a color.\nIf the selected color remains black, regardless of what you\ndo in the left-hand Color Selector (for hue and saturation), check\nthe position of the pointer in the right-hand Color Selector\n(for brightness).\n\nClick one of the "Base colors" to read a value from this palette.\n\nClick one of the "User colors" to read a value from this palette,\nor to write to the palette if the color is blank. If you then\nuse the Color Selectors to change the color, your choice will be\nwritten to this (User) palette color until you select another\n(Base or User) palette color.} {Um eine Farbe zu wählen bitte im Farbraum und im Helligkeitsregler\nklicken oder ziehen. Bleibt die gewählte Farbe wieder erwarten schwarz,\nso muß die Helligkeit ganz rechts erhöht werden.\n\nMit einem Klick auf die Grundfarbenpalette kann diese gewählt werden.\n\nEin benutzerdefinierter Farbspeicher kann durch einen Klick selektiert\nwerden. Ab dann wird jede Farbveränderung auch in den Farbspeicher\n geschrieben.}
::msgcat::mcset de {Click in the text entry window in the left of the "Your\nSelection" area.\n\nType the color that you want in hexadecimal RGB format.\nWhenever the number of hexadecimal digits is a multiple\nof 3, the color value is valid and will be copied to the\nother parts of the Color Selector.\n\nLeave the text entry window by clicking anywhere else,\nor by pressing the "Escape" or "Return" key. The text\nentry window will then display the color in 24-bit RGB\nformat, although internally the Color Selector uses\n48-bit colors.\n\nWhen the text entry widget does not have keyboard focus\n(i.e. does not show a cursor), the "Return" and "Escape"\nkeys do the same as the "OK" and "Cancel" buttons,\nrespectively.} {Aktivieren sie das Texteingabefenster mit einem Klick oder mit der\nTabulatortaste. Eine Farbe kann als RGB-Wert eingegeben mit 3 oder 6\nhexadezimalen Ziffern eingegeben werden.\n\nDie Eingabe kann mit der Escape- oder Eingabetaste abgeschlossen werden.\n\nAusserhalb des Eingabefensters wird der Dialog mit der Eingabetaste\nbestätigt und mit der Escapetaste zurückgenommen.}

Added lang/en.msg.

























































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# ------------------------------------------------------------------------------
#  en.msg
#  This file is part of Unifix BWidget Toolkit
#  Definition of en translation
# ------------------------------------------------------------------------------

# --- symbolic names of buttons ------------------------------------------------

::msgcat::mcset en {&Abort} {&Abort}
::msgcat::mcset en {&Retry} {&Retry}
::msgcat::mcset en {&Ignore} {&Ignore}
::msgcat::mcset en {&OK} {&OK}
::msgcat::mcset en {&Cancel} {&Cancel}
::msgcat::mcset en {&Yes} {&Yes}
::msgcat::mcset en {&No} {&No}

# --- symbolic names of label of SelectFont dialog ----------------------------

::msgcat::mcset en {Bold} {Bold}
::msgcat::mcset en {Italic} {Italic}
::msgcat::mcset en {Underline} {Underline}
::msgcat::mcset en {Overstrike} {Overstrike}
::msgcat::mcset en {&Font} {&Font}
::msgcat::mcset en {&Size} {&Size}
::msgcat::mcset en {St&yle} {St&yle}
::msgcat::mcset en {&Color...} {&Color...}

# --- symbolic names of label of PasswdDlg dialog -----------------------------

::msgcat::mcset en {&Login} {&Login}
::msgcat::mcset en {&Password} {&Password}

# --- resource for SelectFont dialog ------------------------------------------

::msgcat::mcset en {Font selection} {Font selection}
::msgcat::mcset en {Sample text} {Sample text}

# --- resource for MessageDlg dialog ------------------------------------------

::msgcat::mcset en {Message} {Message}
::msgcat::mcset en {Information} {Information}
::msgcat::mcset en {Question} {Question}
::msgcat::mcset en {Warning} {Warning}
::msgcat::mcset en {Error} {Error}

# --- resource for PasswdDlg dialog -------------------------------------------

::msgcat::mcset en {Enter login and password} {Enter login and password}

# --- symbolic names of label of SelectColor dialog ----------------------------

::msgcat::mcset en {Base colors} {Base colors}
::msgcat::mcset en {User colors} {User colors}
::msgcat::mcset en {Your Selection} {Your Selection}
::msgcat::mcset en {Color Selectors} {Color Selectors}

# --- dynamic help text for SelectColor dialog. Lines 75 chars max, split by '\n'.

::msgcat::mcset en {Click or drag the mouse in the Color Selectors to choose a color.\nIf the selected color remains black, regardless of what you\ndo in the left-hand Color Selector (for hue and saturation), check\nthe position of the pointer in the right-hand Color Selector\n(for brightness).\n\nClick one of the "Base colors" to read a value from this palette.\n\nClick one of the "User colors" to read a value from this palette,\nor to write to the palette if the color is blank. If you then\nuse the Color Selectors to change the color, your choice will be\nwritten to this (User) palette color until you select another\n(Base or User) palette color.} {Click or drag the mouse in the Color Selectors to choose a color.\nIf the selected color remains black, regardless of what you\ndo in the left-hand Color Selector (for hue and saturation), check\nthe position of the pointer in the right-hand Color Selector\n(for brightness).\n\nClick one of the "Base colors" to read a value from this palette.\n\nClick one of the "User colors" to read a value from this palette,\nor to write to the palette if the color is blank. If you then\nuse the Color Selectors to change the color, your choice will be\nwritten to this (User) palette color until you select another\n(Base or User) palette color.}
::msgcat::mcset en {Click in the text entry window in the left of the "Your\nSelection" area.\n\nType the color that you want in hexadecimal RGB format.\nWhenever the number of hexadecimal digits is a multiple\nof 3, the color value is valid and will be copied to the\nother parts of the Color Selector.\n\nLeave the text entry window by clicking anywhere else,\nor by pressing the "Escape" or "Return" key. The text\nentry window will then display the color in 24-bit RGB\nformat, although internally the Color Selector uses\n48-bit colors.\n\nWhen the text entry widget does not have keyboard focus\n(i.e. does not show a cursor), the "Return" and "Escape"\nkeys do the same as the "OK" and "Cancel" buttons,\nrespectively.} {Click in the text entry window in the left of the "Your\nSelection" area.\n\nType the color that you want in hexadecimal RGB format.\nWhenever the number of hexadecimal digits is a multiple\nof 3, the color value is valid and will be copied to the\nother parts of the Color Selector.\n\nLeave the text entry window by clicking anywhere else,\nor by pressing the "Escape" or "Return" key. The text\nentry window will then display the color in 24-bit RGB\nformat, although internally the Color Selector uses\n48-bit colors.\n\nWhen the text entry widget does not have keyboard focus\n(i.e. does not show a cursor), the "Return" and "Escape"\nkeys do the same as the "OK" and "Cancel" buttons,\nrespectively.}

Added lang/es.msg.

























































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# ------------------------------------------------------------------------------
#  es.msg
#  This file is part of Unifix BWidget Toolkit
#  Definition of es translation
# ------------------------------------------------------------------------------

# --- symbolic names of buttons ------------------------------------------------

::msgcat::mcset es {&Abort} {&Abortar}
::msgcat::mcset es {&Retry} {&Reintentar}
::msgcat::mcset es {&Ignore} {&Ignorar}
::msgcat::mcset es {&OK} {&OK}
::msgcat::mcset es {&Cancel} {&Cancelar}
::msgcat::mcset es {&Yes} {&Sí}
::msgcat::mcset es {&No} {&No}

# --- symbolic names of label of SelectFont dialog ----------------------------

::msgcat::mcset es {Bold} {Negrita}
::msgcat::mcset es {Italic} {Cursiva}
::msgcat::mcset es {Underline} {Subrayado}
::msgcat::mcset es {Overstrike} {Tachado}
::msgcat::mcset es {&Font} {&Fuente}
::msgcat::mcset es {&Size} {&Tamaño}
::msgcat::mcset es {St&yle} {&Estilo}
::msgcat::mcset es {&Color...} {&Color...}

# --- symbolic names of label of PasswdDlg dialog -----------------------------

::msgcat::mcset es {&Login} {&Usuario}
::msgcat::mcset es {&Password} {&Contraseña}

# --- resource for SelectFont dialog ------------------------------------------

::msgcat::mcset es {Font selection} {Selección de fuente}
::msgcat::mcset es {Sample text} {Texto de Ejemplo}

# --- resource for MessageDlg dialog ------------------------------------------

::msgcat::mcset es {Message} {Mensaje}
::msgcat::mcset es {Information} {Información}
::msgcat::mcset es {Question} {Pregunta}
::msgcat::mcset es {Warning} {Aviso}
::msgcat::mcset es {Error} {Error}

# --- resource for PasswdDlg dialog -------------------------------------------

::msgcat::mcset es {Enter login and password} {Introduzca su usuario y contraseña}

# --- symbolic names of label of SelectColor dialog ----------------------------

::msgcat::mcset es {Base colors} {Colores base}
::msgcat::mcset es {User colors} {Colores de usuario}
::msgcat::mcset es {Your Selection} {Su selección}
::msgcat::mcset es {Color Selectors} {Selectores de color}

# --- dynamic help text for SelectColor dialog. Lines 75 chars max, split by '\n'.

::msgcat::mcset es {Click or drag the mouse in the Color Selectors to choose a color.\nIf the selected color remains black, regardless of what you\ndo in the left-hand Color Selector (for hue and saturation), check\nthe position of the pointer in the right-hand Color Selector\n(for brightness).\n\nClick one of the "Base colors" to read a value from this palette.\n\nClick one of the "User colors" to read a value from this palette,\nor to write to the palette if the color is blank. If you then\nuse the Color Selectors to change the color, your choice will be\nwritten to this (User) palette color until you select another\n(Base or User) palette color.} {Haga click o arrastre el ratón en los selectores de color para elegir un color.\nSi el color seleccionado permanece negro, sin importar lo que haga en el selector de\ncolor izquierdo (para tono y saturación), compruebe la posición del puntero en el selector\nde color derecho (para brillo).\n\nHaga click en uno de los "Colores base" para leer un valor de esa paleta.\n\nClick en uno de los "Colores de usuario" para leer un valor de esa paleta, o para escribir\nla paleta si el color está vacio. Si luego usted usa los Selectores de color para cambiar\nel color, su elección se escribirá en ese color de la paleta (de usuario) hasta seleccionar\notro color de la paleta (base o de usuario).}
::msgcat::mcset es {Click in the text entry window in the left of the "Your\nSelection" area.\n\nType the color that you want in hexadecimal RGB format.\nWhenever the number of hexadecimal digits is a multiple\nof 3, the color value is valid and will be copied to the\nother parts of the Color Selector.\n\nLeave the text entry window by clicking anywhere else,\nor by pressing the "Escape" or "Return" key. The text\nentry window will then display the color in 24-bit RGB\nformat, although internally the Color Selector uses\n48-bit colors.\n\nWhen the text entry widget does not have keyboard focus\n(i.e. does not show a cursor), the "Return" and "Escape"\nkeys do the same as the "OK" and "Cancel" buttons,\nrespectively.} {Haga click en la ventana de entrada de texto a la izquierda del área "Su\nSelección".\n\nTeclee el color que desee en formato RGB hexadecimal. Siempre que el número de dígitos\nhexadecimales sea múltiplo de 3, el valor de color es válido y se copiará a las\notras partes del Selector de Color.\n\nSalga de la ventana de entrada de texto haciendo click en otro lugar, o presionando la\ntecla "Escape" o "Enter". La ventana de entrada de texto mostrará entonces el color en\nformato RGB 24-bit, aunque internamente el Selector de Color usa colores de 48-bit.\n\nCuando el control de entrada de texto no tenga el foco de teclado (ej, no muestra un\ncursor), las teclas "Enter" y "Escape" hacen lo mismo que los botones "OK" y "Cancel",\nrespectivamente.}

Added lang/fr.msg.

























































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# ------------------------------------------------------------------------------
#  fr.msg
#  This file is part of Unifix BWidget Toolkit
#  Definition of fr translation
# ------------------------------------------------------------------------------

# --- symbolic names of buttons ------------------------------------------------

::msgcat::mcset fr {&Abort} {A&bandonner}
::msgcat::mcset fr {&Retry} {&Réessayer}
::msgcat::mcset fr {&Ignore} {&Ignorer}
::msgcat::mcset fr {&OK} {&OK}
::msgcat::mcset fr {&Cancel} {&Annuler}
::msgcat::mcset fr {&Yes} {&Oui}
::msgcat::mcset fr {&No} {&Non}

# --- symbolic names of label of SelectFont dialog ----------------------------

::msgcat::mcset fr {Bold} {&Gras}
::msgcat::mcset fr {Italic} {&Italique}
::msgcat::mcset fr {Underline} {&Souligné}
::msgcat::mcset fr {Overstrike} {&Barré}
::msgcat::mcset fr {&Font} {&Police}
::msgcat::mcset fr {&Size} {&Taille}
::msgcat::mcset fr {St&yle} {St&yle}
::msgcat::mcset fr {&Color...} {&Couleur...}

# --- symbolic names of label of PasswdDlg dialog -----------------------------

::msgcat::mcset fr {&Login} {Nom de l'&utilisateur}
::msgcat::mcset fr {&Password} {Mot de &passe}

# --- resource for SelectFont dialog ------------------------------------------

::msgcat::mcset fr {Font selection} {Sélection d'une police}
::msgcat::mcset fr {Sample text} {Texte d'exemple}

# --- resource for MessageDlg dialog ------------------------------------------

::msgcat::mcset fr {Message} {Message}
::msgcat::mcset fr {Information} {Information}
::msgcat::mcset fr {Question} {Question}
::msgcat::mcset fr {Warning} {Attention}
::msgcat::mcset fr {Error} {Erreur}

# --- resource for PasswdDlg dialog -------------------------------------------

::msgcat::mcset fr {Enter login and password} {Entrez le login et le mot de passe}

# --- symbolic names of label of SelectColor dialog ----------------------------

::msgcat::mcset fr {Base colors} {Couleurs de base}
::msgcat::mcset fr {User colors} {Couleurs utilisateur}
::msgcat::mcset fr {Your Selection} {Votre sélection}
::msgcat::mcset fr {Color Selectors} {Sélecteur de couleurs}

# --- dynamic help text for SelectColor dialog. Lines 75 chars max, split by '\n'.

::msgcat::mcset fr {Click or drag the mouse in the Color Selectors to choose a color.\nIf the selected color remains black, regardless of what you\ndo in the left-hand Color Selector (for hue and saturation), check\nthe position of the pointer in the right-hand Color Selector\n(for brightness).\n\nClick one of the "Base colors" to read a value from this palette.\n\nClick one of the "User colors" to read a value from this palette,\nor to write to the palette if the color is blank. If you then\nuse the Color Selectors to change the color, your choice will be\nwritten to this (User) palette color until you select another\n(Base or User) palette color.} {Cliquez ou déplacez la souris dans la palette pour choisir une couleur.\nSi la couleur affichée reste noire quelle que soit la sélection dans la palette (teinte et\nsaturation), vérifiez la position du pointeur dans le sélecteur de droite (luminosité).\n\nCliquez sur l'une des "Couleurs de base" pour la sélectionner.\n\nCliquez sur l'une des "Couleurs utilisateurs" pour la sélectionner, ou pour la\nsauver dans la palette utilisateur dans une case blanche. Les modifications via le\nsélecteur de couleurs sont alors propagées dans la case sélectionnée de la palette\nutilisateur jusqu'à ce qu'une autre couleur (de base ou utilisateur) soit sélectionnée.}
::msgcat::mcset fr {Click in the text entry window in the left of the "Your\nSelection" area.\n\nType the color that you want in hexadecimal RGB format.\nWhenever the number of hexadecimal digits is a multiple\nof 3, the color value is valid and will be copied to the\nother parts of the Color Selector.\n\nLeave the text entry window by clicking anywhere else,\nor by pressing the "Escape" or "Return" key. The text\nentry window will then display the color in 24-bit RGB\nformat, although internally the Color Selector uses\n48-bit colors.\n\nWhen the text entry widget does not have keyboard focus\n(i.e. does not show a cursor), the "Return" and "Escape"\nkeys do the same as the "OK" and "Cancel" buttons,\nrespectively.} {Cliquez dans la zone de saisie à gauche, dans la zone "Votre sélection".\n\nEntrez la couleur désirée au format RGB hexadécimal.\nLa valeur est validée lorsque le nombre de chiffres hexadécimaux est un multiple de 3.\nElle est alors propagée aux autres zones du sélecteur de couleurs.\n\nLa zone de saisie peut être quittée en cliquant n'importe où ailleurs ou en appuyant sur la\ntouche "Escape" ou "Entrée" du clavier. Bien que le sélecteur de couleurs utilise\n48 bits en interne, la zone de saisie affichera alors la couleur au format RGB en\nhexadécimal sur 24 bits.\n\nLorsque la zone de saisie n'a pas le focus (i.e. ne montre pas le curseur), les touches\n"Entrée" et "Escape" ont la même fonction que les boutons "OK" et "Annuler" respectivement.}

Added lang/hu.msg.

























































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# ------------------------------------------------------------------------------
#  hu.msg
#  This file is part of Unifix BWidget Toolkit
#  Definition of hu translation
# ------------------------------------------------------------------------------

# --- symbolic names of buttons ------------------------------------------------

::msgcat::mcset hu {&Abort} {&Megszakítás}
::msgcat::mcset hu {&Retry} {Új&ra}
::msgcat::mcset hu {&Ignore} {&Kihagyás}
::msgcat::mcset hu {&OK} {&OK}
::msgcat::mcset hu {&Cancel} {Még&sem}
::msgcat::mcset hu {&Yes} {&Igen}
::msgcat::mcset hu {&No} {&Nem}

# --- symbolic names of label of SelectFont dialog ----------------------------

::msgcat::mcset hu {Bold} {Félkövér}
::msgcat::mcset hu {Italic} {Dőlt}
::msgcat::mcset hu {Underline} {Aláhúzott}
::msgcat::mcset hu {Overstrike} {Felülírás}
::msgcat::mcset hu {&Font} {&Betűtípus}
::msgcat::mcset hu {&Size} {&Méret}
::msgcat::mcset hu {St&yle} {S&tílus}
::msgcat::mcset hu {&Color...} {&Szín...}

# --- symbolic names of label of PasswdDlg dialog -----------------------------

::msgcat::mcset hu {&Login} {&Felhasználónév}
::msgcat::mcset hu {&Password} {&Jelszó}

# --- resource for SelectFont dialog ------------------------------------------

::msgcat::mcset hu {Font selection} {Betűtípus kiválasztása}
::msgcat::mcset hu {Sample text} {Példaszöveg}

# --- resource for MessageDlg dialog ------------------------------------------

::msgcat::mcset hu {Message} {Üzenet}
::msgcat::mcset hu {Information} {Információ}
::msgcat::mcset hu {Question} {Kérdés}
::msgcat::mcset hu {Warning} {Figyelmeztetés}
::msgcat::mcset hu {Error} {Hiba}

# --- resource for PasswdDlg dialog -------------------------------------------

::msgcat::mcset hu {Enter login and password} {Add meg a felhasználónevet és a jelszót}

# --- symbolic names of label of SelectColor dialog ----------------------------

::msgcat::mcset hu {Base colors} {Alapszínek}
::msgcat::mcset hu {User colors} {Felhasználói színek}
::msgcat::mcset hu {Your Selection} {Your Selection}
::msgcat::mcset hu {Color Selectors} {Color Selectors}

# --- dynamic help text for SelectColor dialog. Lines 75 chars max, split by '\n'.

::msgcat::mcset hu {Click or drag the mouse in the Color Selectors to choose a color.\nIf the selected color remains black, regardless of what you\ndo in the left-hand Color Selector (for hue and saturation), check\nthe position of the pointer in the right-hand Color Selector\n(for brightness).\n\nClick one of the "Base colors" to read a value from this palette.\n\nClick one of the "User colors" to read a value from this palette,\nor to write to the palette if the color is blank. If you then\nuse the Color Selectors to change the color, your choice will be\nwritten to this (User) palette color until you select another\n(Base or User) palette color.} {Click or drag the mouse in the Color Selectors to choose a color.\nIf the selected color remains black, regardless of what you\ndo in the left-hand Color Selector (for hue and saturation), check\nthe position of the pointer in the right-hand Color Selector\n(for brightness).\n\nClick one of the "Base colors" to read a value from this palette.\n\nClick one of the "User colors" to read a value from this palette,\nor to write to the palette if the color is blank. If you then\nuse the Color Selectors to change the color, your choice will be\nwritten to this (User) palette color until you select another\n(Base or User) palette color.}
::msgcat::mcset hu {Click in the text entry window in the left of the "Your\nSelection" area.\n\nType the color that you want in hexadecimal RGB format.\nWhenever the number of hexadecimal digits is a multiple\nof 3, the color value is valid and will be copied to the\nother parts of the Color Selector.\n\nLeave the text entry window by clicking anywhere else,\nor by pressing the "Escape" or "Return" key. The text\nentry window will then display the color in 24-bit RGB\nformat, although internally the Color Selector uses\n48-bit colors.\n\nWhen the text entry widget does not have keyboard focus\n(i.e. does not show a cursor), the "Return" and "Escape"\nkeys do the same as the "OK" and "Cancel" buttons,\nrespectively.} {Click in the text entry window in the left of the "Your\nSelection" area.\n\nType the color that you want in hexadecimal RGB format.\nWhenever the number of hexadecimal digits is a multiple\nof 3, the color value is valid and will be copied to the\nother parts of the Color Selector.\n\nLeave the text entry window by clicking anywhere else,\nor by pressing the "Escape" or "Return" key. The text\nentry window will then display the color in 24-bit RGB\nformat, although internally the Color Selector uses\n48-bit colors.\n\nWhen the text entry widget does not have keyboard focus\n(i.e. does not show a cursor), the "Return" and "Escape"\nkeys do the same as the "OK" and "Cancel" buttons,\nrespectively.}

Added lang/nl.msg.

























































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# ------------------------------------------------------------------------------
#  nl.msg
#  This file is part of Unifix BWidget Toolkit
#  Definition of nl translation
# ------------------------------------------------------------------------------

# --- symbolic names of buttons ------------------------------------------------

::msgcat::mcset nl {&Abort} {Af&breken}
::msgcat::mcset nl {&Retry} {Opnie&uw proberen}
::msgcat::mcset nl {&Ignore} {N&egeren}
::msgcat::mcset nl {&OK} {&OK}
::msgcat::mcset nl {&Cancel} {&Annuleren}
::msgcat::mcset nl {&Yes} {&Ja}
::msgcat::mcset nl {&No} {&Nee}

# --- symbolic names of label of SelectFont dialog ----------------------------

::msgcat::mcset nl {Bold} {Vet}
::msgcat::mcset nl {Italic} {Cursief}
::msgcat::mcset nl {Underline} {Onderstrepen}
::msgcat::mcset nl {Overstrike} {Doorhalen}
::msgcat::mcset nl {&Font} {&Lettertype}
::msgcat::mcset nl {&Size} {&Grootte}
::msgcat::mcset nl {St&yle} {&Stijl}
::msgcat::mcset nl {&Color...} {&Kleur...}

# --- symbolic names of label of PasswdDlg dialog -----------------------------

::msgcat::mcset nl {&Login} {&Inlognaam}
::msgcat::mcset nl {&Password} {&Wachtwoord}

# --- resource for SelectFont dialog ------------------------------------------

::msgcat::mcset nl {Font selection} {Lettertypeselectie}
::msgcat::mcset nl {Sample text} {Voorbeeldtekst}

# --- resource for MessageDlg dialog ------------------------------------------

::msgcat::mcset nl {Message} {Bericht}
::msgcat::mcset nl {Information} {Informatie}
::msgcat::mcset nl {Question} {Vraag}
::msgcat::mcset nl {Warning} {Waarschuwing}
::msgcat::mcset nl {Error} {Fout}

# --- resource for PasswdDlg dialog -------------------------------------------

::msgcat::mcset nl {Enter login and password} {Voer inlognaam en wachtwoord in}

# --- symbolic names of label of SelectColor dialog ----------------------------

::msgcat::mcset nl {Base colors} {Basiskleuren}
::msgcat::mcset nl {User colors} {Aangepaste kleuren}
::msgcat::mcset nl {Your Selection} {Uw selectie}
::msgcat::mcset nl {Color Selectors} {Selecteren kleuren}

# --- dynamic help text for SelectColor dialog. Lines 75 chars max, split by '\n'.

::msgcat::mcset nl {Click or drag the mouse in the Color Selectors to choose a color.\nIf the selected color remains black, regardless of what you\ndo in the left-hand Color Selector (for hue and saturation), check\nthe position of the pointer in the right-hand Color Selector\n(for brightness).\n\nClick one of the "Base colors" to read a value from this palette.\n\nClick one of the "User colors" to read a value from this palette,\nor to write to the palette if the color is blank. If you then\nuse the Color Selectors to change the color, your choice will be\nwritten to this (User) palette color until you select another\n(Base or User) palette color.} {Klik of sleep de muis in de kleurselectors om een kleur te kiezen.\nAls de geselecteerde kleur zwart blijft, ongeacht wat je doet in het\nlinkerdeel (tint en verzadiging), controleer de positie van de muispointer\nin het rechterdeel (helderheid).\n\nKlik op een van de basiskleuren om een waarde uit dit palet te lezen.\n\nKlik op een van de basiskleuren om een waarde uit dit palet te lezen of\nom een nieuwe waarde in te voeren als het vakje leeg is. Als je dan de\nkleurselectors gebruikt om de kleur te wijzigen, dan wordt die nieuwe\nkeuze naar het aanpasbare kleurvakje geschreven tot je een andere\nbasiskleur of aanpasbare kleur kiest.}
::msgcat::mcset nl {Click in the text entry window in the left of the "Your\nSelection" area.\n\nType the color that you want in hexadecimal RGB format.\nWhenever the number of hexadecimal digits is a multiple\nof 3, the color value is valid and will be copied to the\nother parts of the Color Selector.\n\nLeave the text entry window by clicking anywhere else,\nor by pressing the "Escape" or "Return" key. The text\nentry window will then display the color in 24-bit RGB\nformat, although internally the Color Selector uses\n48-bit colors.\n\nWhen the text entry widget does not have keyboard focus\n(i.e. does not show a cursor), the "Return" and "Escape"\nkeys do the same as the "OK" and "Cancel" buttons,\nrespectively.} {Klik in het invoerveld links van het deel "Uw selectie".\nTyp de gewenste kleur in volgens het hexadecimale RGB-format.\nDe kleurwaarde is acceptabel als het aantal hexadecimale cijfers een\nveelvoud is van 3. De waarde wordt gekopieerd naar andere delen van de\nkleurselector.\n\nVerlaat het invoerveld door ergens anders te klikken of via "Escape" of\n"Return". Het invoerveld toont dan de kleur in 24-bits RGB-format\n(overigens wordt intern een 48-bits RGB-format gebruikt).\n\nAls het invoerveld niet de focus heeft (geen tekstcursor vertoont), dan\nwerken de "Return"- en "Escape"-toetsen net als de "OK"- en\n"Cancel"-buttons.}

Added lang/no.msg.

























































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# ------------------------------------------------------------------------------
#  no.msg
#  This file is part of Unifix BWidget Toolkit
#  Definition of no translation
# ------------------------------------------------------------------------------

# --- symbolic names of buttons ------------------------------------------------

::msgcat::mcset no {&Abort} {&Om}
::msgcat::mcset no {&Retry} {&Prøv igjen}
::msgcat::mcset no {&Ignore} {&Ignore}
::msgcat::mcset no {&OK} {&OK}
::msgcat::mcset no {&Cancel} {&Avbryt}
::msgcat::mcset no {&Yes} {&Ja}
::msgcat::mcset no {&No} {&Nei}

# --- symbolic names of label of SelectFont dialog ----------------------------

::msgcat::mcset no {Bold} {Halvfet}
::msgcat::mcset no {Italic} {Kursiv}
::msgcat::mcset no {Underline} {Understreking}
::msgcat::mcset no {Overstrike} {Overstryke}
::msgcat::mcset no {&Font} {&Skrift}
::msgcat::mcset no {&Size} {&Størrelse}
::msgcat::mcset no {St&yle} {St&il}
::msgcat::mcset no {&Color...} {&Color...}

# --- symbolic names of label of PasswdDlg dialog -----------------------------

::msgcat::mcset no {&Login} {&Logg inn}
::msgcat::mcset no {&Password} {&Passord}

# --- resource for SelectFont dialog ------------------------------------------

::msgcat::mcset no {Font selection} {Skriftvalg}
::msgcat::mcset no {Sample text} {Prøve tekst}

# --- resource for MessageDlg dialog ------------------------------------------

::msgcat::mcset no {Message} {Melding}
::msgcat::mcset no {Information} {Informasjon}
::msgcat::mcset no {Question} {Spørsmål}
::msgcat::mcset no {Warning} {Advarsel}
::msgcat::mcset no {Error} {Feil}

# --- resource for PasswdDlg dialog -------------------------------------------

::msgcat::mcset no {Enter login and password} {Skriv inn logginn og passord}

# --- symbolic names of label of SelectColor dialog ----------------------------

::msgcat::mcset no {Base colors} {Base colors}
::msgcat::mcset no {User colors} {User colors}
::msgcat::mcset no {Your Selection} {Your Selection}
::msgcat::mcset no {Color Selectors} {Color Selectors}

# --- dynamic help text for SelectColor dialog. Lines 75 chars max, split by '\n'.

::msgcat::mcset no {Click or drag the mouse in the Color Selectors to choose a color.\nIf the selected color remains black, regardless of what you\ndo in the left-hand Color Selector (for hue and saturation), check\nthe position of the pointer in the right-hand Color Selector\n(for brightness).\n\nClick one of the "Base colors" to read a value from this palette.\n\nClick one of the "User colors" to read a value from this palette,\nor to write to the palette if the color is blank. If you then\nuse the Color Selectors to change the color, your choice will be\nwritten to this (User) palette color until you select another\n(Base or User) palette color.} {Click or drag the mouse in the Color Selectors to choose a color.\nIf the selected color remains black, regardless of what you\ndo in the left-hand Color Selector (for hue and saturation), check\nthe position of the pointer in the right-hand Color Selector\n(for brightness).\n\nClick one of the "Base colors" to read a value from this palette.\n\nClick one of the "User colors" to read a value from this palette,\nor to write to the palette if the color is blank. If you then\nuse the Color Selectors to change the color, your choice will be\nwritten to this (User) palette color until you select another\n(Base or User) palette color.}
::msgcat::mcset no {Click in the text entry window in the left of the "Your\nSelection" area.\n\nType the color that you want in hexadecimal RGB format.\nWhenever the number of hexadecimal digits is a multiple\nof 3, the color value is valid and will be copied to the\nother parts of the Color Selector.\n\nLeave the text entry window by clicking anywhere else,\nor by pressing the "Escape" or "Return" key. The text\nentry window will then display the color in 24-bit RGB\nformat, although internally the Color Selector uses\n48-bit colors.\n\nWhen the text entry widget does not have keyboard focus\n(i.e. does not show a cursor), the "Return" and "Escape"\nkeys do the same as the "OK" and "Cancel" buttons,\nrespectively.} {Click in the text entry window in the left of the "Your\nSelection" area.\n\nType the color that you want in hexadecimal RGB format.\nWhenever the number of hexadecimal digits is a multiple\nof 3, the color value is valid and will be copied to the\nother parts of the Color Selector.\n\nLeave the text entry window by clicking anywhere else,\nor by pressing the "Escape" or "Return" key. The text\nentry window will then display the color in 24-bit RGB\nformat, although internally the Color Selector uses\n48-bit colors.\n\nWhen the text entry widget does not have keyboard focus\n(i.e. does not show a cursor), the "Return" and "Escape"\nkeys do the same as the "OK" and "Cancel" buttons,\nrespectively.}

Added lang/pl.msg.

























































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# ------------------------------------------------------------------------------
#  pl.msg
#  This file is part of Unifix BWidget Toolkit
#  Definition of pl translation
# ------------------------------------------------------------------------------

# --- symbolic names of buttons ------------------------------------------------

::msgcat::mcset pl {&Abort} {&Porzuć}
::msgcat::mcset pl {&Retry} {P&onów}
::msgcat::mcset pl {&Ignore} {&Ignoruj}
::msgcat::mcset pl {&OK} {&OK}
::msgcat::mcset pl {&Cancel} {&Anyluj}
::msgcat::mcset pl {&Yes} {&Tak}
::msgcat::mcset pl {&No} {&Nie}

# --- symbolic names of label of SelectFont dialog ----------------------------

::msgcat::mcset pl {Bold} {Pogrubiona}
::msgcat::mcset pl {Italic} {Kursywa}
::msgcat::mcset pl {Underline} {Podkreślenie}
::msgcat::mcset pl {Overstrike} {Przekreślenie}
::msgcat::mcset pl {&Font} {&Czcionka:}
::msgcat::mcset pl {&Size} {&Rozmiar:}
::msgcat::mcset pl {St&yle} {St&yl czcionki:}
::msgcat::mcset pl {&Color...} {&Kolor...}

# --- symbolic names of label of PasswdDlg dialog -----------------------------

::msgcat::mcset pl {&Login} {&Login}
::msgcat::mcset pl {&Password} {&Hasło}

# --- resource for SelectFont dialog ------------------------------------------

::msgcat::mcset pl {Font selection} {Wybór czcionki}
::msgcat::mcset pl {Sample text} {Przykładowy tekst}

# --- resource for MessageDlg dialog ------------------------------------------

::msgcat::mcset pl {Message} {Wiadomość}
::msgcat::mcset pl {Information} {Informacja}
::msgcat::mcset pl {Question} {Pytanie}
::msgcat::mcset pl {Warning} {Ostrzeżenie}
::msgcat::mcset pl {Error} {Błąd}

# --- resource for PasswdDlg dialog -------------------------------------------

::msgcat::mcset pl {Enter login and password} {Wpisz login i hasło}

# --- symbolic names of label of SelectColor dialog ----------------------------

::msgcat::mcset pl {Base colors} {Kolory podstawowe}
::msgcat::mcset pl {User colors} {Kolory niestandardowe}
::msgcat::mcset pl {Your Selection} {Your Selection}
::msgcat::mcset pl {Color Selectors} {Color Selectors}

# --- dynamic help text for SelectColor dialog. Lines 75 chars max, split by '\n'.

::msgcat::mcset pl {Click or drag the mouse in the Color Selectors to choose a color.\nIf the selected color remains black, regardless of what you\ndo in the left-hand Color Selector (for hue and saturation), check\nthe position of the pointer in the right-hand Color Selector\n(for brightness).\n\nClick one of the "Base colors" to read a value from this palette.\n\nClick one of the "User colors" to read a value from this palette,\nor to write to the palette if the color is blank. If you then\nuse the Color Selectors to change the color, your choice will be\nwritten to this (User) palette color until you select another\n(Base or User) palette color.} {Click or drag the mouse in the Color Selectors to choose a color.\nIf the selected color remains black, regardless of what you\ndo in the left-hand Color Selector (for hue and saturation), check\nthe position of the pointer in the right-hand Color Selector\n(for brightness).\n\nClick one of the "Base colors" to read a value from this palette.\n\nClick one of the "User colors" to read a value from this palette,\nor to write to the palette if the color is blank. If you then\nuse the Color Selectors to change the color, your choice will be\nwritten to this (User) palette color until you select another\n(Base or User) palette color.}
::msgcat::mcset pl {Click in the text entry window in the left of the "Your\nSelection" area.\n\nType the color that you want in hexadecimal RGB format.\nWhenever the number of hexadecimal digits is a multiple\nof 3, the color value is valid and will be copied to the\nother parts of the Color Selector.\n\nLeave the text entry window by clicking anywhere else,\nor by pressing the "Escape" or "Return" key. The text\nentry window will then display the color in 24-bit RGB\nformat, although internally the Color Selector uses\n48-bit colors.\n\nWhen the text entry widget does not have keyboard focus\n(i.e. does not show a cursor), the "Return" and "Escape"\nkeys do the same as the "OK" and "Cancel" buttons,\nrespectively.} {Click in the text entry window in the left of the "Your\nSelection" area.\n\nType the color that you want in hexadecimal RGB format.\nWhenever the number of hexadecimal digits is a multiple\nof 3, the color value is valid and will be copied to the\nother parts of the Color Selector.\n\nLeave the text entry window by clicking anywhere else,\nor by pressing the "Escape" or "Return" key. The text\nentry window will then display the color in 24-bit RGB\nformat, although internally the Color Selector uses\n48-bit colors.\n\nWhen the text entry widget does not have keyboard focus\n(i.e. does not show a cursor), the "Return" and "Escape"\nkeys do the same as the "OK" and "Cancel" buttons,\nrespectively.}

Added lang/xopt.tcl.







































































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# ------------------------------------------------------------------------------
# xopt.tcl
# This file is part of Unifix BWidget Toolkit
# Definition of resources
# ------------------------------------------------------------------------------


# --- symbolic names of buttons ------------------------------------------------

option add *abortName [::msgcat::mc {&Abort}]
option add *retryName [::msgcat::mc {&Retry}]
option add *ignoreName [::msgcat::mc {&Ignore}]
option add *okName [::msgcat::mc {&OK}]
option add *cancelName [::msgcat::mc {&Cancel}]
option add *yesName [::msgcat::mc {&Yes}]
option add *noName [::msgcat::mc {&No}]


# --- symbolic names of label of SelectFont dialog ----------------------------

option add *boldName [::msgcat::mc {Bold}]
option add *italicName [::msgcat::mc {Italic}]
option add *underlineName [::msgcat::mc {Underline}]
option add *overstrikeName [::msgcat::mc {Overstrike}]
option add *fontName [::msgcat::mc {&Font}]
option add *sizeName [::msgcat::mc {&Size}]
option add *styleName [::msgcat::mc {St&yle}]
option add *colorPickerName [::msgcat::mc {&Color...}]


# --- symbolic names of label of PasswdDlg dialog -----------------------------

option add *loginName [::msgcat::mc {&Login}]
option add *passwordName [::msgcat::mc {&Password}]


# --- resource for SelectFont dialog ------------------------------------------

option add *SelectFont.title [::msgcat::mc {Font selection}]
option add *SelectFont.sampletext [::msgcat::mc {Sample text}]


# --- resource for MessageDlg dialog ------------------------------------------

option add *MessageDlg.noneTitle [::msgcat::mc {Message}]
option add *MessageDlg.infoTitle [::msgcat::mc {Information}]
option add *MessageDlg.questionTitle [::msgcat::mc {Question}]
option add *MessageDlg.warningTitle [::msgcat::mc {Warning}]
option add *MessageDlg.errorTitle [::msgcat::mc {Error}]

# --- resource for PasswdDlg dialog -------------------------------------------

option add *PasswdDlg.title [::msgcat::mc {Enter login and password}]

# --- symbolic names of label of SelectColor dialog ----------------------------

option add *baseColorsName [::msgcat::mc {Base colors}]
option add *userColorsName [::msgcat::mc {User colors}]

option add *yourSelectionName [::msgcat::mc {Your Selection}]
option add *colorSelectorsName [::msgcat::mc {Color Selectors}]

# --- dynamic help text for SelectColor dialog. Lines 75 chars max, split by '\n'.

option add *mouseHelpTextName [::msgcat::mc {Click or drag the mouse in the Color Selectors to choose a color.\nIf the selected color remains black, regardless of what you\ndo in the left-hand Color Selector (for hue and saturation), check\nthe position of the pointer in the right-hand Color Selector\n(for brightness).\n\nClick one of the "Base colors" to read a value from this palette.\n\nClick one of the "User colors" to read a value from this palette,\nor to write to the palette if the color is blank. If you then\nuse the Color Selectors to change the color, your choice will be\nwritten to this (User) palette color until you select another\n(Base or User) palette color.}]

option add *keyboardHelpTextName [::msgcat::mc {Click in the text entry window in the left of the "Your\nSelection" area.\n\nType the color that you want in hexadecimal RGB format.\nWhenever the number of hexadecimal digits is a multiple\nof 3, the color value is valid and will be copied to the\nother parts of the Color Selector.\n\nLeave the text entry window by clicking anywhere else,\nor by pressing the "Escape" or "Return" key. The text\nentry window will then display the color in 24-bit RGB\nformat, although internally the Color Selector uses\n48-bit colors.\n\nWhen the text entry widget does not have keyboard focus\n(i.e. does not show a cursor), the "Return" and "Escape"\nkeys do the same as the "OK" and "Cancel" buttons,\nrespectively.}]

Changes to utils.tcl.

235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
#  have negative positions. Geometry settings with negative numbers are used
#  under X to place wrt the right or bottom of the screen. On windows, Tk
#  continues to do this. However, a geometry such as 100x100+-200-100 can be
#  used to place a window onto a secondary monitor. Passing the + gets Tk
#  to pass the remainder unchanged so the Windows manager then handles -200
#  which is a position on the left hand monitor.
#  I've tested this for left, right, above and below the primary monitor.
#  Currently there is no way to ask Tk the extent of the Windows desktop in 
#  a multi monitor system. Nor what the legal co-ordinate range might be.
#
proc BWidget::place { path w h args } {
    variable _top

    update idletasks








|







235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
#  have negative positions. Geometry settings with negative numbers are used
#  under X to place wrt the right or bottom of the screen. On windows, Tk
#  continues to do this. However, a geometry such as 100x100+-200-100 can be
#  used to place a window onto a secondary monitor. Passing the + gets Tk
#  to pass the remainder unchanged so the Windows manager then handles -200
#  which is a position on the left hand monitor.
#  I've tested this for left, right, above and below the primary monitor.
#  Currently there is no way to ask Tk the extent of the Windows desktop in
#  a multi monitor system. Nor what the legal co-ordinate range might be.
#
proc BWidget::place { path w h args } {
    variable _top

    update idletasks

492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
        lappend _fstack [::focus]
        ::focus -force $path
    }
}

# BWidget::refocus --
#
#	Helper function used to redirect focus from a container frame in 
#	a megawidget to a component widget.  Only redirects focus if
#	focus is already on the container.
#
# Arguments:
#	container	container widget to redirect from.
#	component	component widget to redirect to.
#







|







492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
        lappend _fstack [::focus]
        ::focus -force $path
    }
}

# BWidget::refocus --
#
#	Helper function used to redirect focus from a container frame in
#	a megawidget to a component widget.  Only redirects focus if
#	focus is already on the container.
#
# Arguments:
#	container	container widget to redirect from.
#	component	component widget to redirect to.
#
702
703
704
705
706
707
708
709












	# style::as and Tk 8.5 have global bindings
	# Only enable these if no global binding for them exists
	bind $widget <Button-4> {event generate %W <MouseWheel> -delta  120}
	bind $widget <Button-5> {event generate %W <MouseWheel> -delta -120}
    }
}

 	  	 



















|
>
>
>
>
>
>
>
>
>
>
>
>
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
	# style::as and Tk 8.5 have global bindings
	# Only enable these if no global binding for them exists
	bind $widget <Button-4> {event generate %W <MouseWheel> -delta  120}
	bind $widget <Button-5> {event generate %W <MouseWheel> -delta -120}
    }
}



# ----------------------------------------------------------------------------
# utility function for language (locale) support
# ----------------------------------------------------------------------------

proc BWidget::changeLang { lang } {
	if {![catch {package present BWidget}]} {
		::msgcat::mclocale $lang
		::msgcat::mcload [file join $::BWIDGET::LIBRARY "lang"]
		source [file join $::BWIDGET::LIBRARY "lang" "xopt.tcl"]
	}
}