Skip to content

Commit

Permalink
add cz language (by DžejPý)
Browse files Browse the repository at this point in the history
  • Loading branch information
geovens committed Dec 24, 2019
1 parent 13fa593 commit 98835d6
Show file tree
Hide file tree
Showing 4 changed files with 58 additions and 2 deletions.
Binary file modified bin/gInk.exe
Binary file not shown.
56 changes: 56 additions & 0 deletions bin/lang/cz.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
LanguageName = "Čeština"

ButtonNamePen0 = "Pero 0"
ButtonNamePen1 = "Pero 1"
ButtonNamePen2 = "Pero 2"
ButtonNamePen3 = "Pero 3"
ButtonNamePen4 = "Pero 4"
ButtonNamePen5 = "Pero 5"
ButtonNamePen6 = "Pero 6"
ButtonNamePen7 = "Pero 7"
ButtonNamePen8 = "Pero 8"
ButtonNamePen9 = "Pero 9"

ButtonNamePenwidth = "Velikost pera"
ButtonNameErasor = "Guma"
ButtonNamePan = "Přesun"
ButtonNameMousePointer = "Kurzor myši"
ButtonNameInkVisible = "Zobrazit/skrýt čáry"
ButtonNameSnapshot = "Sejmout obrazovku"
ButtonNameUndo = "Zpět"
ButtonNameRedo = "Znovu"
ButtonNameClear = "Vymazat"
ButtonNameExit = "Ukončit psaní"
ButtonNameDock = "Vysunout/zasunout"

MenuEntryExit = "Konec"
MenuEntryOptions = "Nastavení"
MenuEntryAbout = "O programu"

OptionsTabGeneral = "Všeobecné"
OptionsTabPens = "Pera"
OptionsTabHotkeys = "Klávesové zkratky"

OptionsGeneralLanguage = "Jazyk"
OptionsGeneralCanvascursor = "Kurzor pera"
OptionsGeneralCanvascursorArrow = "Šipka"
OptionsGeneralCanvascursorPentip = "Kruh"
OptionsGeneralSnapshotsavepath = "Sejmuté obrazovky:"
OptionsGeneralWhitetrayicon = "Použít bílou ikonu místo červené"
OptionsGeneralAllowdragging = "Povolit přemísťování panelu"
OptionsGeneralNotePenwidth = "Poznámka: z panelu se nastaví jednotná tloušťka všech per, ale nepřepíší se uložená nastavení."

OptionsPensShow = "Zobrazit"
OptionsPensColor = "Barva"
OptionsPensAlpha = "Průhlednost stopy"
OptionsPensWidth = "Šířka stopy"
OptionsPensPencil = "neprůhledná"
OptionsPensHighlighter = "průhledná"
OptionsPensThin = "tenká"
OptionsPensNormal = "střední"
OptionsPensThick = "tlustá"

OptionsHotkeysglobal = "Globální klávesová zkratka (přepíná mezi kurzorem myši a posledním použitým nástrojem)"
OptionsHotkeysEnableinpointer = "Používat všechny tyto klávesové zkratky, když je zapnutý kurzor myši (může působit potíže)"

NotificationSnapshot = "Sejmutá obrazovka byla uložena. Pro zobrazení klikněte sem."
2 changes: 1 addition & 1 deletion src/FormCollection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ public FormCollection(Root root)
//this.Width = virwidth;
//this.Height = targetbottom - this.Top;
this.Width = SystemInformation.VirtualScreen.Width;
this.Height = SystemInformation.VirtualScreen.Height;
this.Height = SystemInformation.VirtualScreen.Height - 2;
this.DoubleBuffered = true;

gpButtonsWidth = gpButtons.Width;
Expand Down
2 changes: 1 addition & 1 deletion src/FormDisplay.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public FormDisplay(Root root)
//this.Width = virwidth;
//this.Height = targetbottom - this.Top;
this.Width = SystemInformation.VirtualScreen.Width;
this.Height = SystemInformation.VirtualScreen.Height;
this.Height = SystemInformation.VirtualScreen.Height - 2;

Bitmap InitCanvus = new Bitmap(this.Width, this.Height);
Canvus = InitCanvus.GetHbitmap(Color.FromArgb(0));
Expand Down

0 comments on commit 98835d6

Please sign in to comment.