VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/Translations/Language.ko.xml
/*
 Legal Notice: Some portions of the source code contained in this file were
 derived from the source code of TrueCrypt 7.1a, which is
 Copyright (c) 2003-2012 TrueCrypt Developers Association and which is
 governed by the TrueCrypt License 3.0, also from the source code of
 Encryption for the Masses 2.02a, which is Copyright (c) 1998-2000 Paul Le Roux
 and which is governed by the 'License Agreement for Encryption for the Masses'
 Modifications and ad
AgeCommit message (Expand)AuthorFilesLines
2018-03-27Increment version to 1.22-BETA7 (1.22.7)Mounir IDRASSI1-1/+1
2018-03-25Increment version to 1.22-BETA6 (1.22.6)Mounir IDRASSI1-1/+1
2018-03-22Increment version to 1.22-BETA5 (1.22.5)Mounir IDRASSI1-1/+1
2018-03-20XML Languages files: remove unused entry.Mounir IDRASSI1-1/+0
2018-03-05Windows: Replace the text "TRIM operation" by "TRIM command" in UI and transl...Mounir IDRASSI1-1/+1
2018-03-05Windows: Add option to block TRIM command on system encryption SSD drives.Mounir IDRASSI1-0/+1
2018-03-05XML Languages files: Add translation entry for non-system TRIM configurationMounir IDRASSI1-0/+1
2017-12-09Increment version to 1.22-BETA4 (1.22.4)Mounir IDRASSI1-1/+1
2017-11-28Language XML files: remove references to GOST89 since it is not supported any...Mounir IDRASSI1-1/+0
2017-08-02Windows: Increment version to 1.22-BETA3Mounir IDRASSI1-1/+1
2017-07-23Windows: Increment version to 1.22-BETA2-Build1Mounir IDRASSI1-1/+1
2017-07-23Windows: display notice about creating new Rescue Disk at first boot after up...Mounir IDRASSI1-0/+1
2017-07-02Increment version to 1.21 (1.21.1)Mounir IDRASSI1-1/+1
2017-06-23Increment version to 1.20 (1.20.3)Mounir IDRASSI1-1/+1
2017-06-09Language XML files: Add new fields.Mounir IDRASSI1-0/+8
1-1/+1
2016-05-10Normalize all line terminatorsDavid Foerster1-1456/+1456
2016-05-05Windows: Add option and command line switch to hide waiting dialog when perfo...Mounir IDRASSI1-0/+1
2016-05-05Windows: Add checkbox in "VeraCrypt Format" to skip Rescue Disk verification ...Mounir IDRASSI1-0/+1
2016-05-04Windows/Linux/MacOSX: Set maximum PIM value to 2147468 in order to avoid havi...Mounir IDRASSI1-0/+1
2016-04-28Language XML files: add new fields related to Volume ID feature.Mounir IDRASSI1-0/+8
2016-03-17Language XML files: correct some entries to match English versionMounir IDRASSI1-4/+4
2016-02-14Increment version to 1.17. Update user guide PDF file.Mounir IDRASSI1-1/+1
2016-01-31Language XML files: update XML files with newly added fieldMounir IDRASSI1-0/+1
2016-01-28Language XML files: update exFAT message translation in Korea, Russian and Ch...Mounir IDRASSI1-1/+1
2016-01-27Language XML files: update with new fields. Reoder node so that new additions...Mounir IDRASSI1-6/+8
2016-01-10Language XML files: update XML files with newly added fieldMounir IDRASSI1-0/+1
2016-01-04Language XML files: update XML files with newly added fields.Mounir IDRASSI1-2/+2
2015-12-21Language XML files: update XML files with newly added fields.Mounir IDRASSI1-0/+2
2015-11-26Windows Language files: update language XML files with added new fields.Mounir IDRASSI1-40/+42
2015-11-08Language XML files: harmonize XML language files ad solve few issues.Mounir IDRASSI1-35/+35
2015-11-01Update Language.ko.xml #30Brehret Nish1-1/+1
2015-11-01Fix Language.ko.xmlBrehret Nish1-9/+9
2015-11-01Update Language.ko.xmlBrehret Nish1-76/+76
2015-11-01Update Language.ko.xmlBrehret Nish1-126/+126
2015-10-18Language XML files: add some missing fieldsMounir IDRASSI1-0/+5
2015-10-18Language XML files: remove unused ID.Mounir IDRASSI1-1/+0
>, IDC_COMMANDHELP_TEXT), tmp); TCfree(tmp); return 1; } case WM_COMMAND: EndDialog (hwndDlg, IDOK); return 1; case WM_CLOSE: EndDialog (hwndDlg, 0); return 1; } return 0; } int Win32CommandLine (wchar_t ***lpszArgs) { int argumentCount; int i; LPWSTR *arguments = CommandLineToArgvW (GetCommandLineW(), &argumentCount); if (!arguments) { handleWin32Error (NULL, SRC_POS); return 0; } --argumentCount; if (argumentCount < 1) { LocalFree (arguments); return 0; } *lpszArgs = malloc (sizeof (wchar_t *) * argumentCount); if (!*lpszArgs) AbortProcess ("OUTOFMEMORY"); for (i = 0; i < argumentCount; ++i) { wchar_t *arg = _wcsdup (arguments[i + 1]); if (!arg) AbortProcess ("OUTOFMEMORY"); (*lpszArgs)[i] = arg; } LocalFree (arguments); return argumentCount; } int GetArgSepPosOffset (wchar_t *lpszArgument) { if (lpszArgument[0] == L'/') return 1; return 0; } int GetArgumentID (argumentspec *as, wchar_t *lpszArgument) { int i; for (i = 0; i < as->arg_cnt; i++) { if (_wcsicmp (as->args[i].long_name, lpszArgument) == 0) { return as->args[i].Id; } } for (i = 0; i < as->arg_cnt; i++) { if (as->args[i].short_name[0] == 0) continue; if (_wcsicmp (as->args[i].short_name, lpszArgument) == 0) { return as->args[i].Id; } } return -1; } int GetArgumentValue (wchar_t **lpszCommandLineArgs, int *nArgIdx, int nNoCommandLineArgs, wchar_t *lpszValue, int nValueSize) { *lpszValue = 0; if (*nArgIdx + 1 < nNoCommandLineArgs) { int x = GetArgSepPosOffset (lpszCommandLineArgs[*nArgIdx + 1]); if (x == 0) { /* Handles the case of space between parameter code and value */ StringCchCopyW (lpszValue, nValueSize, lpszCommandLineArgs[*nArgIdx + 1]); lpszValue[nValueSize - 1] = 0; (*nArgIdx)++; return HAS_ARGUMENT; } } return HAS_NO_ARGUMENT; }