- TapwaveZodiac's submission for:

* Improved French translation, also covers previously missing strings.
* Adds a string for Borderless Windowed.
* Adds option to enable or disable borderless windowed for Windows only.

These commits had to be manually recreated because somehow the files appaarently ended up with CRLF in the repo which can cause problems with Windows Git and line ending normalization on.
This commit is contained in:
Christoph Oelckers 2018-01-09 20:30:33 +01:00
parent 68cd0fad76
commit be82f3ef56
3 changed files with 1940 additions and 711 deletions

View File

@ -2186,13 +2186,14 @@ MODMNU_CHIPOMATIC = "Chip-o-matic";
RNDMNU_TITLE = "CHANGE RENDERER"; RNDMNU_TITLE = "CHANGE RENDERER";
RNDMNU_RENDERER = "Hardware Acceleration"; RNDMNU_RENDERER = "Hardware Acceleration";
RNDMNU_TRUECOLOR = "Software Truecolor Mode"; RNDMNU_TRUECOLOR = "Software Truecolor Mode";
RNDMNU_POLY = "Poly Renderer (experimental)"; RNDMNU_POLY = "Poly Renderer (experimental)";
RNDMNU_CANVAS = "Software Canvas"; RNDMNU_CANVAS = "Software Canvas";
// Video Options // Video Options
VIDMNU_TITLE = "VIDEO MODE"; VIDMNU_TITLE = "VIDEO MODE";
VIDMNU_FULLSCREEN = "Fullscreen"; VIDMNU_FULLSCREEN = "Fullscreen";
VIDMNU_HIDPI = "Retina/HiDPI support"; VIDMNU_HIDPI = "Retina/HiDPI support";
VIDMNU_BRDLSS = "Borderless Windowed Mode";
VIDMNU_ASPECTRATIO = "Aspect ratio"; VIDMNU_ASPECTRATIO = "Aspect ratio";
VIDMNU_FORCEASPECT = "Force aspect ratio"; VIDMNU_FORCEASPECT = "Force aspect ratio";
VIDMNU_CROPASPECT = "Forced ratio style"; VIDMNU_CROPASPECT = "Forced ratio style";

File diff suppressed because it is too large Load Diff

View File

@ -1874,10 +1874,17 @@ OptionMenu VideoModeMenu protected
Title "$VIDMNU_TITLE" Title "$VIDMNU_TITLE"
Option "$VIDMNU_FULLSCREEN", "fullscreen", "YesNo" Option "$VIDMNU_FULLSCREEN", "fullscreen", "YesNo"
IfOption(Mac) IfOption(Mac)
{ {
Option "$VIDMNU_HIDPI", "vid_hidpi", "YesNo" Option "$VIDMNU_HIDPI", "vid_hidpi", "YesNo"
} }
IfOption(Windows)
{
Option "$VIDMNU_BRDLSS", "win_borderless", "YesNo"
}
Option "$VIDMNU_ASPECTRATIO", "menu_screenratios", "Ratios" Option "$VIDMNU_ASPECTRATIO", "menu_screenratios", "Ratios"
Option "$VIDMNU_FORCEASPECT", "vid_aspect", "ForceRatios" Option "$VIDMNU_FORCEASPECT", "vid_aspect", "ForceRatios"
Option "$VIDMNU_CROPASPECT", "vid_cropaspect", "CropAspect" Option "$VIDMNU_CROPASPECT", "vid_cropaspect", "CropAspect"