Commit 20975004 authored by Mantas Kriaučiūnas's avatar Mantas Kriaučiūnas
Browse files

Fix Lithuanian layout - Debian bug #951387 in keyboard-configuration.config:

replace not intuitive second lt(us) layout with us(altgr-intl), which contains Euro (€) and other symbols, often used in Lithuania. us layout is used by the majority of Lithuanian users as second layout.
parent 9bb74348
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -1065,7 +1065,7 @@ debconf_model="$XKBMODEL"
# on values of $XKBLAYOUT and $XKBVARIANT.
if [ "$XKBLAYOUT" ]; then
    case "$XKBLAYOUT" in
	lt,lt)
	lt,us)
	    debconf_layout="${XKBLAYOUT%,*}"
	    debconf_variant="${XKBVARIANT%,*}"
	    unsupported_layout=no
@@ -1427,7 +1427,7 @@ while :; do
			esac
			;;
		    lt)
			XKBLAYOUT=lt,lt
			XKBLAYOUT=lt,us
			;;
                        # TODO: make s.t. to not forget to update this
		        # list.  Do not forget to update also the
@@ -1450,12 +1450,12 @@ while :; do
                                XKBVARIANT="latin,$debconf_variant" ;;
		        esac
                        ;;
                    lt,lt)
                    lt,us)
		        case "$debconf_variant" in
		            us)
                                XKBVARIANT="us," ;;
		            *)
                                XKBVARIANT="$debconf_variant,us" ;;
                                XKBVARIANT="$debconf_variant,altgr-intl" ;;
		        esac
                        ;;
		    *,*)