Changeset 2464
- Timestamp:
- 3/13/2012 3:20:41 AM (15 months ago)
- Location:
- branches/eraser6/pluginsRewrite/Eraser.DefaultPlugins
- Files:
-
- 15 edited
-
CustomMethodEditorForm.cs (modified) (5 diffs)
-
ErasureMethods/Custom.cs (modified) (2 diffs)
-
ErasureMethods/FirstLast16KB.cs (modified) (1 diff)
-
ErasureTargets/DriveErasureTarget.cs (modified) (1 diff)
-
ErasureTargets/ErasureTargetBase.cs (modified) (1 diff)
-
ErasureTargets/FileSystemObjectErasureTarget.cs (modified) (1 diff)
-
ErasureTargets/FolderErasureTarget.cs (modified) (2 diffs)
-
FileSystems/Ntfs.cs (modified) (1 diff)
-
FileSystems/Windows.cs (modified) (3 diffs)
-
SettingsForm.cs (modified) (1 diff)
-
Strings.en.resx (modified) (2 diffs)
-
Strings.it.resx (modified) (5 diffs)
-
Strings.nl.resx (modified) (2 diffs)
-
Strings.pl.resx (modified) (5 diffs)
-
Strings.resx (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/eraser6/pluginsRewrite/Eraser.DefaultPlugins/CustomMethodEditorForm.cs
r2456 r2464 97 97 CultureInfo.CurrentCulture)); 98 98 item.Tag = pass; 99 if (pass.Function == IErasureMethod.WriteRandom)99 if (pass.Function == PassBasedErasureMethod.WriteRandom) 100 100 item.SubItems.Add(S._("Random Data")); 101 101 else … … 114 114 if (passEditor.PassType == CustomMethodPassEditorPassType.Random) 115 115 { 116 pass.Function = IErasureMethod.WriteRandom;116 pass.Function = PassBasedErasureMethod.WriteRandom; 117 117 pass.OpaqueValue = null; 118 118 item.SubItems[1].Text = S._("Random Data"); … … 120 120 else 121 121 { 122 pass.Function = IErasureMethod.WriteConstant;122 pass.Function = PassBasedErasureMethod.WriteConstant; 123 123 pass.OpaqueValue = passEditor.PassData; 124 124 item.SubItems[1].Text = S._("Constant ({0} bytes)", passEditor.PassData.Length); … … 135 135 ErasureMethodPass pass = (ErasureMethodPass)item.Tag; 136 136 passEditor.PassData = (byte[])pass.OpaqueValue; 137 passEditor.PassType = pass.Function == IErasureMethod.WriteRandom ?137 passEditor.PassType = pass.Function == PassBasedErasureMethod.WriteRandom ? 138 138 CustomMethodPassEditorPassType.Random : 139 139 CustomMethodPassEditorPassType.Text; … … 165 165 166 166 //Then create a new, random pass, adding it to the list 167 ErasureMethodPass pass = new ErasureMethodPass( IErasureMethod.WriteRandom, null);167 ErasureMethodPass pass = new ErasureMethodPass(PassBasedErasureMethod.WriteRandom, null); 168 168 ListViewItem item = AddPass(pass); 169 169 -
branches/eraser6/pluginsRewrite/Eraser.DefaultPlugins/ErasureMethods/Custom.cs
r2456 r2464 134 134 public PassData(ErasureMethodPass pass) 135 135 { 136 if (pass.Function == IErasureMethod.WriteConstant)136 if (pass.Function == PassBasedErasureMethod.WriteConstant) 137 137 { 138 138 Random = false; 139 139 OpaqueValue = pass.OpaqueValue; 140 140 } 141 else if (pass.Function == IErasureMethod.WriteRandom)141 else if (pass.Function == PassBasedErasureMethod.WriteRandom) 142 142 { 143 143 Random = true; … … 151 151 { 152 152 return new ErasureMethodPass(pass.Random ? 153 new ErasureMethodPass Function(IErasureMethod.WriteRandom) :154 new ErasureMethodPass Function(IErasureMethod.WriteConstant),153 new ErasureMethodPass.ErasureMethodPassFunction(PassBasedErasureMethod.WriteRandom) : 154 new ErasureMethodPass.ErasureMethodPassFunction(PassBasedErasureMethod.WriteConstant), 155 155 pass.OpaqueValue); 156 156 } -
branches/eraser6/pluginsRewrite/Eraser.DefaultPlugins/ErasureMethods/FirstLast16KB.cs
r2458 r2464 45 45 if (DefaultPlugin.Settings.FL16Method != Guid.Empty) 46 46 method = Host.Instance.ErasureMethods[DefaultPlugin.Settings.FL16Method]; 47 else if ( DefaultPlugin.Settings.DefaultFileErasureMethod != Guid)47 else if (Host.Instance.Settings.DefaultFileErasureMethod != Guid) 48 48 method = Host.Instance.ErasureMethods[ 49 DefaultPlugin.Settings.DefaultFileErasureMethod];49 Host.Instance.DefaultFileErasureMethod]; 50 50 else 51 51 method = Host.Instance.ErasureMethods[new Gutmann().Guid]; -
branches/eraser6/pluginsRewrite/Eraser.DefaultPlugins/ErasureTargets/DriveErasureTarget.cs
r2463 r2464 211 211 Progress.Completed += lastWritten; 212 212 OnProgressChanged(this, new ProgressChangedEventArgs(Progress, 213 new TaskProgressChangedEventArgs( UIText, currentPass, method.Passes)));213 new TaskProgressChangedEventArgs(ToString(), currentPass, method.Passes))); 214 214 215 215 if (Task.Canceled) -
branches/eraser6/pluginsRewrite/Eraser.DefaultPlugins/ErasureTargets/ErasureTargetBase.cs
r2461 r2464 43 43 } 44 44 45 public abstract bool SupportsMethod(IErasureMethod method); 45 public virtual bool SupportsMethod(IErasureMethod method) 46 { 47 return true; 48 } 46 49 47 50 public abstract IErasureTargetConfigurer Configurer -
branches/eraser6/pluginsRewrite/Eraser.DefaultPlugins/ErasureTargets/FileSystemObjectErasureTarget.cs
r2463 r2464 380 380 string shadowFile = null; 381 381 List<string> entries = new List<string>( 382 ManagerLibrary.Settings.PlausibleDeniabilityFiles);382 Host.Instance.Settings.PlausibleDeniabilityFiles); 383 383 IPrng prng = Host.Instance.Prngs.ActivePrng; 384 384 do -
branches/eraser6/pluginsRewrite/Eraser.DefaultPlugins/ErasureTargets/FolderErasureTarget.cs
r2456 r2464 202 202 IFileSystem fsManager = Host.Instance.FileSystems[ 203 203 VolumeInfo.FromMountPoint(Path)]; 204 fsManager.DeleteFolder(directory );204 fsManager.DeleteFolder(directory, true); 205 205 } 206 206 } … … 229 229 { 230 230 Host.Instance.FileSystems[VolumeInfo.FromMountPoint(Path)]. 231 DeleteFolder(info );231 DeleteFolder(info, true); 232 232 } 233 233 catch (UnauthorizedAccessException) -
branches/eraser6/pluginsRewrite/Eraser.DefaultPlugins/FileSystems/Ntfs.cs
r2458 r2464 153 153 } 154 154 155 DeleteFolder(tempDir );155 DeleteFolder(tempDir, true); 156 156 } 157 157 } -
branches/eraser6/pluginsRewrite/Eraser.DefaultPlugins/FileSystems/Windows.cs
r2458 r2464 50 50 //If the user wants plausible deniability, find a random file from the 51 51 //list of decoys and write it over. 52 if ( Manager.ManagerLibrary.Settings.PlausibleDeniability)52 if (Host.Instance.Settings.PlausibleDeniability) 53 53 { 54 54 using (FileStream fileStream = info.OpenWrite()) … … 68 68 { 69 69 foreach (DirectoryInfo dir in info.GetDirectories()) 70 DeleteFolder(dir );70 DeleteFolder(dir, true); 71 71 foreach (FileInfo file in info.GetFiles()) 72 72 DeleteFile(file); … … 133 133 //Try to force the handle closed. 134 134 if (tries > FileNameEraseTries + 1 || 135 ! ManagerLibrary.Settings.ForceUnlockLockedFiles)135 !Host.Instance.Settings.ForceUnlockLockedFiles) 136 136 { 137 137 throw new IOException(S._("The file {0} is currently in use " + -
branches/eraser6/pluginsRewrite/Eraser.DefaultPlugins/SettingsForm.cs
r2456 r2464 60 60 { 61 61 Guid methodGuid = 62 DefaultPlugin.Settings.DefaultFileErasureMethod;62 Host.Instance.DefaultFileErasureMethod; 63 63 if (methodGuid == typeof(FirstLast16KB).GUID) 64 64 methodGuid = typeof(Gutmann).GUID; -
branches/eraser6/pluginsRewrite/Eraser.DefaultPlugins/Strings.en.resx
r2456 r2464 142 142 <value>The input text is invalid for the current data type. Valid hexadecimal characters are the digits 0-9 and letters A-F</value> 143 143 </data> 144 <data name="Default Erasure Methods and PRNGs" xml:space="preserve"> 145 <value>Default Erasure Methods and PRNGs</value> 146 </data> 147 <data name="The Eraser Project <eraser-development@lists.sourceforge.net>" xml:space="preserve"> 148 <value>The Eraser Project <eraser-development@lists.sourceforge.net></value> 149 </data> 150 <data name="An invalid erasure method was selected." xml:space="preserve"> 151 <value>An invalid erasure method was selected.</value> 152 </data> 153 <data name="RNGCryptoServiceProvider" xml:space="preserve"> 154 <value>RNGCryptoServiceProvider</value> 155 </data> 156 <data name="Could not erase directory entries on the volume {0} because the volume is currently in use." xml:space="preserve"> 157 <value>Could not erase directory entries on the volume {0} because the volume is currently in use.</value> 158 </data> 159 <data name="The folder {0} cannot be deleted as it is not empty." xml:space="preserve"> 160 <value>The folder {0} cannot be deleted as it is not empty.</value> 161 </data> 162 <data name="The file {0} could not be erased because the file's permissions prevent access to the file." xml:space="preserve"> 163 <value>The file {0} could not be erased because the file's permissions prevent access to the file.</value> 164 </data> 165 <data name="The file {0} is currently in use and cannot be removed." xml:space="preserve"> 166 <value>The file {0} is currently in use and cannot be removed.</value> 167 </data> 168 <data name="Could not force closure of file \"{0}\" {1}(locked by {0})" xml:space="preserve"> 169 <value>Could not force closure of file \"{0}\" {1}(locked by {0})</value> 170 </data> 171 <data name="Could not erase cluster tips in {0} as the volume is not mounted." xml:space="preserve"> 172 <value>Could not erase cluster tips in {0} as the volume is not mounted.</value> 173 </data> 174 <data name="{0} did not have its cluster tips erased because you do not have the required permissions to erase the file cluster tips." xml:space="preserve"> 175 <value>{0} did not have its cluster tips erased because you do not have the required permissions to erase the file cluster tips.</value> 176 </data> 177 <data name="{0} did not have its cluster tips erased. The error returned was: {1}" xml:space="preserve"> 178 <value>{0} did not have its cluster tips erased. The error returned was: {1}</value> 179 </data> 180 <data name="Files in {0} did not have their cluster tips erased because it is a hard link or a symbolic link." xml:space="preserve"> 181 <value>Files in {0} did not have their cluster tips erased because it is a hard link or a symbolic link.</value> 182 </data> 183 <data name="{0} did not have its cluster tips erased, because it is a system file" xml:space="preserve"> 184 <value>{0} did not have its cluster tips erased, because it is a system file</value> 185 </data> 186 <data name="{0} did not have its cluster tips erased because it is a hard link or a symbolic link." xml:space="preserve"> 187 <value>{0} did not have its cluster tips erased because it is a hard link or a symbolic link.</value> 188 </data> 189 <data name="{0} did not have its cluster tips erased because it is compressed, encrypted or a sparse file." xml:space="preserve"> 190 <value>{0} did not have its cluster tips erased because it is compressed, encrypted or a sparse file.</value> 191 </data> 192 <data name="{0} did not have its cluster tips erased because of the following error: {1}" xml:space="preserve"> 193 <value>{0} did not have its cluster tips erased because of the following error: {1}</value> 194 </data> 195 <data name="Files in {0} did not have its cluster tips erased because of the following error: {1}" xml:space="preserve"> 196 <value>Files in {0} did not have its cluster tips erased because of the following error: {1}</value> 197 </data> 198 <data name="Drive/Partition" xml:space="preserve"> 199 <value>Drive/Partition</value> 200 </data> 201 <data name="Hard disk {0}" xml:space="preserve"> 202 <value>Hard disk {0}</value> 203 </data> 204 <data name="Partition: {0}" xml:space="preserve"> 205 <value>Partition: {0}</value> 206 </data> 207 <data name="Hard disk {0} Partition {1}" xml:space="preserve"> 208 <value>Hard disk {0} Partition {1}</value> 209 </data> 210 <data name="Partition" xml:space="preserve"> 211 <value>Partition</value> 212 </data> 213 <data name="The program does not have the required permissions to erase the unused space on disk. Run the program as an administrator and retry the operation." xml:space="preserve"> 214 <value>The program does not have the required permissions to erase the unused space on disk. Run the program as an administrator and retry the operation.</value> 215 </data> 216 <data name="The program does not have the required permissions to erase the unused space on disk." xml:space="preserve"> 217 <value>The program does not have the required permissions to erase the unused space on disk.</value> 218 </data> 219 <data name="The Drive erasure target requires a volume or physical drive selected for erasure." xml:space="preserve"> 220 <value>The Drive erasure target requires a volume or physical drive selected for erasure.</value> 221 </data> 222 <data name="The task was cancelled." xml:space="preserve"> 223 <value>The task was cancelled.</value> 224 </data> 225 <data name="Hard disk {0} ({1})" xml:space="preserve"> 226 <value>Hard disk {0} ({1})</value> 227 </data> 228 <data name="Partition {0} ({1})" xml:space="preserve"> 229 <value>Partition {0} ({1})</value> 230 </data> 231 <data name="Partition ({0})" xml:space="preserve"> 232 <value>Partition ({0})</value> 233 </data> 234 <data name="Partition {0}" xml:space="preserve"> 235 <value>Partition {0}</value> 236 </data> 237 <data name="drive Erases partitions, volumes or drives\r\n arguments:\r\n drive=\Device\Harddisk<index>\r\n drive=\\.\PhysicalDrive<index>\r\n drive=\\?\Volume<guid>" xml:space="preserve"> 238 <value>drive Erases partitions, volumes or drives\r\n arguments:\r\n drive=\Device\Harddisk<index>\r\n drive=\\.\PhysicalDrive<index>\r\n drive=\\?\Volume<guid></value> 239 </data> 240 <data name="The selected erasure method is not supported for this erasure target." xml:space="preserve"> 241 <value>(Untranslated)</value> 242 </data> 243 <data name="File" xml:space="preserve"> 244 <value>File</value> 245 </data> 246 <data name="Invalid file path" xml:space="preserve"> 247 <value>Invalid file path</value> 248 </data> 249 <data name="file Erases the specified file\r\n argument: file=<path>" xml:space="preserve"> 250 <value>file Erases the specified file\r\n argument: file=<path></value> 251 </data> 252 <data name="Could not erase files and subfolders in {0} because {1}" xml:space="preserve"> 253 <value>Could not erase files and subfolders in {0} because {1}</value> 254 </data> 255 <data name="Erasing files..." xml:space="preserve"> 256 <value>Erasing files...</value> 257 </data> 258 <data name="The file {0} was not erased as the file does not exist." xml:space="preserve"> 259 <value>The file {0} was not erased as the file does not exist.</value> 260 </data> 261 <data name="The file {0} could not be erased because the file was either compressed, encrypted or a sparse file." xml:space="preserve"> 262 <value>The file {0} could not be erased because the file was either compressed, encrypted or a sparse file.</value> 263 </data> 264 <data name="The file {0} is a hard link or a symbolic link thus the contents of the file was not erased." xml:space="preserve"> 265 <value>The file {0} is a hard link or a symbolic link thus the contents of the file was not erased.</value> 266 </data> 267 <data name="Plausible deniability was selected, but no decoy files were found. The current file has been only replaced with random data." xml:space="preserve"> 268 <value>Plausible deniability was selected, but no decoy files were found. The current file has been only replaced with random data.</value> 269 </data> 270 <data name="Files in Folder" xml:space="preserve"> 271 <value>Files in Folder</value> 272 </data> 273 <data name="Removing folders..." xml:space="preserve"> 274 <value>Removing folders...</value> 275 </data> 276 <data name="The folder {0} could not be deleted because the folder's permissions prevents the deletion of the folder." xml:space="preserve"> 277 <value>The folder {0} could not be deleted because the folder's permissions prevents the deletion of the folder.</value> 278 </data> 279 <data name="Invalid folder path" xml:space="preserve"> 280 <value>Invalid folder path</value> 281 </data> 282 <data name="dir Erases files and folders in the directory\r\n arguments: dir=<directory>[,-excludeMask][,+includeMask][,deleteIfEmpty]\r\n excludeMask A wildcard expression for files and folders to\r\n exclude.\r\n includeMask A wildcard expression for files and folders to\r\n include.\r\n The include mask is applied before the exclude mask.\r\n deleteIfEmpty Deletes the folder at the end of the erasure if it is\r\n empty." xml:space="preserve"> 283 <value>dir Erases files and folders in the directory\r\n arguments: dir=<directory>[,-excludeMask][,+includeMask][,deleteIfEmpty]\r\n excludeMask A wildcard expression for files and folders to\r\n exclude.\r\n includeMask A wildcard expression for files and folders to\r\n include.\r\n The include mask is applied before the exclude mask.\r\n deleteIfEmpty Deletes the folder at the end of the erasure if it is\r\n empty.</value> 284 </data> 285 <data name="The path you selected is invalid." xml:space="preserve"> 286 <value>The path you selected is invalid.</value> 287 </data> 288 <data name="Recycle Bin" xml:space="preserve"> 289 <value>Recycle Bin</value> 290 </data> 291 <data name="Emptying recycle bin..." xml:space="preserve"> 292 <value>Emptying recycle bin...</value> 293 </data> 294 <data name="recyclebin Erases files and folders in the recycle bin" xml:space="preserve"> 295 <value>recyclebin Erases files and folders in the recycle bin</value> 296 </data> 297 <data name="Secure move" xml:space="preserve"> 298 <value>Secure move</value> 299 </data> 300 <data name="Securely move {0}" xml:space="preserve"> 301 <value>Securely move {0}</value> 302 </data> 303 <data name="The destination directory cannot be within the source directory." xml:space="preserve"> 304 <value>The destination directory cannot be within the source directory.</value> 305 </data> 306 <data name="Securely moving files and folders..." xml:space="preserve"> 307 <value>Securely moving files and folders...</value> 308 </data> 309 <data name="Erasing incomplete destination file" xml:space="preserve"> 310 <value>Erasing incomplete destination file</value> 311 </data> 312 <data name="Erasing source files..." xml:space="preserve"> 313 <value>Erasing source files...</value> 314 </data> 315 <data name="Copying source files to destination..." xml:space="preserve"> 316 <value>Copying source files to destination...</value> 317 </data> 318 <data name="move Securely moves a file/directory to a new location\r\n arguments: move=<source>|<destination>" xml:space="preserve"> 319 <value>move Securely moves a file/directory to a new location\r\n arguments: move=<source>|<destination></value> 320 </data> 321 <data name="Select the Source folder" xml:space="preserve"> 322 <value>Select the Source folder</value> 323 </data> 324 <data name="Select the Source file" xml:space="preserve"> 325 <value>Select the Source file</value> 326 </data> 327 <data name="Move Source folder to:" xml:space="preserve"> 328 <value>Move Source folder to:</value> 329 </data> 330 <data name="Save Source file to" xml:space="preserve"> 331 <value>Save Source file to</value> 332 </data> 333 <data name="Unused disk space ({0})" xml:space="preserve"> 334 <value>Unused disk space ({0})</value> 335 </data> 336 <data name="Unused disk space" xml:space="preserve"> 337 <value>Unused disk space</value> 338 </data> 339 <data name="This computer has had System Restore or Volume Shadow Copies enabled. This may allow copies of files stored on the disk to be recovered and pose a security concern." xml:space="preserve"> 340 <value>This computer has had System Restore or Volume Shadow Copies enabled. This may allow copies of files stored on the disk to be recovered and pose a security concern.</value> 341 </data> 342 <data name="The drive {0} has disk quotas active. This will prevent the complete erasure of unused space and may pose a security concern." xml:space="preserve"> 343 <value>The drive {0} has disk quotas active. This will prevent the complete erasure of unused space and may pose a security concern.</value> 344 </data> 345 <data name="Searching for files' cluster tips..." xml:space="preserve"> 346 <value>Searching for files' cluster tips...</value> 347 </data> 348 <data name="Erasing cluster tips..." xml:space="preserve"> 349 <value>Erasing cluster tips...</value> 350 </data> 351 <data name="Old resident file system table files" xml:space="preserve"> 352 <value>Old resident file system table files</value> 353 </data> 354 <data name="Removing temporary files..." xml:space="preserve"> 355 <value>Removing temporary files...</value> 356 </data> 357 <data name="Erasing unused directory structures..." xml:space="preserve"> 358 <value>Erasing unused directory structures...</value> 359 </data> 360 <data name="Erasing unused space..." xml:space="preserve"> 361 <value>Erasing unused space...</value> 362 </data> 363 <data name="unused Erases unused space in the volume.\r\n arguments: unused=<drive>[,clusterTips[=(true|false)]]\r\n clusterTips If specified, the drive's files will have their\r\n cluster tips erased. This parameter accepts a Boolean\r\n value (true/false) as an argument; if none is specified\r\n true is assumed." xml:space="preserve"> 364 <value>unused Erases unused space in the volume.\r\n arguments: unused=<drive>[,clusterTips[=(true|false)]]\r\n clusterTips If specified, the drive's files will have their\r\n cluster tips erased. This parameter accepts a Boolean\r\n value (true/false) as an argument; if none is specified\r\n true is assumed.</value> 365 </data> 366 <data name="The custom erasure method can only comprise passes containing constant or random passes" xml:space="preserve"> 367 <value>The custom erasure method can only comprise passes containing constant or random passes</value> 368 </data> 369 <data name="US DoD 5220.22-M (8-306./E, C & E)" xml:space="preserve"> 370 <value>US DoD 5220.22-M (8-306./E, C & E)</value> 371 </data> 372 <data name="US DoD 5220.22-M (8-306./E)" xml:space="preserve"> 373 <value>US DoD 5220.22-M (8-306./E)</value> 374 </data> 144 375 <data name="{0} (1 pass)" xml:space="preserve"> 145 376 <value>(Untranslated)</value> … … 151 382 <value>(Untranslated)</value> 152 383 </data> 153 <data name="The selected erasure method is not supported for this erasure target." xml:space="preserve">154 <value>(Untranslated)</value>155 </data>156 <data name="Default Erasure Methods and PRNGs" xml:space="preserve">157 <value>Default Erasure Methods and PRNGs</value>158 </data>159 <data name="The Eraser Project <eraser-development@lists.sourceforge.net>" xml:space="preserve">160 <value>The Eraser Project <eraser-development@lists.sourceforge.net></value>161 </data>162 <data name="RNGCryptoServiceProvider" xml:space="preserve">163 <value>RNGCryptoServiceProvider</value>164 </data>165 <data name="An invalid erasure method was selected." xml:space="preserve">166 <value>An invalid erasure method was selected.</value>167 </data>168 <data name="Could not erase directory entries on the volume {0} because the volume is currently in use." xml:space="preserve">169 <value>Could not erase directory entries on the volume {0} because the volume is currently in use.</value>170 </data>171 <data name="The folder {0} cannot be deleted as it is not empty." xml:space="preserve">172 <value>The folder {0} cannot be deleted as it is not empty.</value>173 </data>174 <data name="The file {0} could not be erased because the file's permissions prevent access to the file." xml:space="preserve">175 <value>The file {0} could not be erased because the file's permissions prevent access to the file.</value>176 </data>177 <data name="The file {0} is currently in use and cannot be removed." xml:space="preserve">178 <value>The file {0} is currently in use and cannot be removed.</value>179 </data>180 <data name="Could not force closure of file \"{0}\" {1}(locked by {0})" xml:space="preserve">181 <value>Could not force closure of file \"{0}\" {1}(locked by {0})</value>182 </data>183 <data name="Could not erase cluster tips in {0} as the volume is not mounted." xml:space="preserve">184 <value>Could not erase cluster tips in {0} as the volume is not mounted.</value>185 </data>186 <data name="{0} did not have its cluster tips erased because you do not have the required permissions to erase the file cluster tips." xml:space="preserve">187 <value>{0} did not have its cluster tips erased because you do not have the required permissions to erase the file cluster tips.</value>188 </data>189 <data name="{0} did not have its cluster tips erased. The error returned was: {1}" xml:space="preserve">190 <value>{0} did not have its cluster tips erased. The error returned was: {1}</value>191 </data>192 <data name="Files in {0} did not have their cluster tips erased because it is a hard link or a symbolic link." xml:space="preserve">193 <value>Files in {0} did not have their cluster tips erased because it is a hard link or a symbolic link.</value>194 </data>195 <data name="{0} did not have its cluster tips erased, because it is a system file" xml:space="preserve">196 <value>{0} did not have its cluster tips erased, because it is a system file</value>197 </data>198 <data name="{0} did not have its cluster tips erased because it is a hard link or a symbolic link." xml:space="preserve">199 <value>{0} did not have its cluster tips erased because it is a hard link or a symbolic link.</value>200 </data>201 <data name="{0} did not have its cluster tips erased because it is compressed, encrypted or a sparse file." xml:space="preserve">202 <value>{0} did not have its cluster tips erased because it is compressed, encrypted or a sparse file.</value>203 </data>204 <data name="{0} did not have its cluster tips erased because of the following error: {1}" xml:space="preserve">205 <value>{0} did not have its cluster tips erased because of the following error: {1}</value>206 </data>207 <data name="Files in {0} did not have its cluster tips erased because of the following error: {1}" xml:space="preserve">208 <value>Files in {0} did not have its cluster tips erased because of the following error: {1}</value>209 </data>210 <data name="Drive/Partition" xml:space="preserve">211 <value>Drive/Partition</value>212 </data>213 <data name="Hard disk {0}" xml:space="preserve">214 <value>Hard disk {0}</value>215 </data>216 <data name="Partition: {0}" xml:space="preserve">217 <value>Partition: {0}</value>218 </data>219 <data name="Hard disk {0} Partition {1}" xml:space="preserve">220 <value>Hard disk {0} Partition {1}</value>221 </data>222 <data name="Partition" xml:space="preserve">223 <value>Partition</value>224 </data>225 <data name="The program does not have the required permissions to erase the unused space on disk. Run the program as an administrator and retry the operation." xml:space="preserve">226 <value>The program does not have the required permissions to erase the unused space on disk. Run the program as an administrator and retry the operation.</value>227 </data>228 <data name="The program does not have the required permissions to erase the unused space on disk." xml:space="preserve">229 <value>The program does not have the required permissions to erase the unused space on disk.</value>230 </data>231 <data name="The Drive erasure target requires a volume or physical drive selected for erasure." xml:space="preserve">232 <value>The Drive erasure target requires a volume or physical drive selected for erasure.</value>233 </data>234 <data name="The task was cancelled." xml:space="preserve">235 <value>The task was cancelled.</value>236 </data>237 <data name="Hard disk {0} ({1})" xml:space="preserve">238 <value>Hard disk {0} ({1})</value>239 </data>240 <data name="Partition {0} ({1})" xml:space="preserve">241 <value>Partition {0} ({1})</value>242 </data>243 <data name="Partition ({0})" xml:space="preserve">244 <value>Partition ({0})</value>245 </data>246 <data name="Partition {0}" xml:space="preserve">247 <value>Partition {0}</value>248 </data>249 <data name="drive Erases partitions, volumes or drives\r\n arguments:\r\n drive=\Device\Harddisk<index>\r\n drive=\\.\PhysicalDrive<index>\r\n drive=\\?\Volume<guid>" xml:space="preserve">250 <value>drive Erases partitions, volumes or drives\r\n arguments:\r\n drive=\Device\Harddisk<index>\r\n drive=\\.\PhysicalDrive<index>\r\n drive=\\?\Volume<guid></value>251 </data>252 <data name="File" xml:space="preserve">253 <value>File</value>254 </data>255 <data name="Invalid file path" xml:space="preserve">256 <value>Invalid file path</value>257 </data>258 <data name="file Erases the specified file\r\n argument: file=<path>" xml:space="preserve">259 <value>file Erases the specified file\r\n argument: file=<path></value>260 </data>261 <data name="Could not erase files and subfolders in {0} because {1}" xml:space="preserve">262 <value>Could not erase files and subfolders in {0} because {1}</value>263 </data>264 <data name="Erasing files..." xml:space="preserve">265 <value>Erasing files...</value>266 </data>267 <data name="The file {0} was not erased as the file does not exist." xml:space="preserve">268 <value>The file {0} was not erased as the file does not exist.</value>269 </data>270 <data name="The file {0} could not be erased because the file was either compressed, encrypted or a sparse file." xml:space="preserve">271 <value>The file {0} could not be erased because the file was either compressed, encrypted or a sparse file.</value>272 </data>273 <data name="The file {0} is a hard link or a symbolic link thus the contents of the file was not erased." xml:space="preserve">274 <value>The file {0} is a hard link or a symbolic link thus the contents of the file was not erased.</value>275 </data>276 <data name="Plausible deniability was selected, but no decoy files were found. The current file has been only replaced with random data." xml:space="preserve">277 <value>Plausible deniability was selected, but no decoy files were found. The current file has been only replaced with random data.</value>278 </data>279 <data name="Files in Folder" xml:space="preserve">280 <value>Files in Folder</value>281 </data>282 <data name="Removing folders..." xml:space="preserve">283 <value>Removing folders...</value>284 </data>285 <data name="The folder {0} could not be deleted because the folder's permissions prevents the deletion of the folder." xml:space="preserve">286 <value>The folder {0} could not be deleted because the folder's permissions prevents the deletion of the folder.</value>287 </data>288 <data name="Invalid folder path" xml:space="preserve">289 <value>Invalid folder path</value>290 </data>291 <data name="dir Erases files and folders in the directory\r\n arguments: dir=<directory>[,-excludeMask][,+includeMask][,deleteIfEmpty]\r\n excludeMask A wildcard expression for files and folders to\r\n exclude.\r\n includeMask A wildcard expression for files and folders to\r\n include.\r\n The include mask is applied before the exclude mask.\r\n deleteIfEmpty Deletes the folder at the end of the erasure if it is\r\n empty." xml:space="preserve">292 <value>dir Erases files and folders in the directory\r\n arguments: dir=<directory>[,-excludeMask][,+includeMask][,deleteIfEmpty]\r\n excludeMask A wildcard expression for files and folders to\r\n exclude.\r\n includeMask A wildcard expression for files and folders to\r\n include.\r\n The include mask is applied before the exclude mask.\r\n deleteIfEmpty Deletes the folder at the end of the erasure if it is\r\n empty.</value>293 </data>294 <data name="The path you selected is invalid." xml:space="preserve">295 <value>The path you selected is invalid.</value>296 </data>297 <data name="Recycle Bin" xml:space="preserve">298 <value>Recycle Bin</value>299 </data>300 <data name="Emptying recycle bin..." xml:space="preserve">301 <value>Emptying recycle bin...</value>302 </data>303 <data name="recyclebin Erases files and folders in the recycle bin" xml:space="preserve">304 <value>recyclebin Erases files and folders in the recycle bin</value>305 </data>306 <data name="Secure move" xml:space="preserve">307 <value>Secure move</value>308 </data>309 <data name="Securely move {0}" xml:space="preserve">310 <value>Securely move {0}</value>311 </data>312 <data name="The destination directory cannot be within the source directory." xml:space="preserve">313 <value>The destination directory cannot be within the source directory.</value>314 </data>315 <data name="Securely moving files and folders..." xml:space="preserve">316 <value>Securely moving files and folders...</value>317 </data>318 <data name="Erasing incomplete destination file" xml:space="preserve">319 <value>Erasing incomplete destination file</value>320 </data>321 <data name="Erasing source files..." xml:space="preserve">322 <value>Erasing source files...</value>323 </data>324 <data name="Copying source files to destination..." xml:space="preserve">325 <value>Copying source files to destination...</value>326 </data>327 <data name="move Securely moves a file/directory to a new location\r\n arguments: move=<source>|<destination>" xml:space="preserve">328 <value>move Securely moves a file/directory to a new location\r\n arguments: move=<source>|<destination></value>329 </data>330 <data name="Select the Source folder" xml:space="preserve">331 <value>Select the Source folder</value>332 </data>333 <data name="Select the Source file" xml:space="preserve">334 <value>Select the Source file</value>335 </data>336 <data name="Move Source folder to:" xml:space="preserve">337 <value>Move Source folder to:</value>338 </data>339 <data name="Save Source file to" xml:space="preserve">340 <value>Save Source file to</value>341 </data>342 <data name="Unused disk space" xml:space="preserve">343 <value>Unused disk space</value>344 </data>345 <data name="Unused disk space ({0})" xml:space="preserve">346 <value>Unused disk space ({0})</value>347 </data>348 <data name="This computer has had System Restore or Volume Shadow Copies enabled. This may allow copies of files stored on the disk to be recovered and pose a security concern." xml:space="preserve">349 <value>This computer has had System Restore or Volume Shadow Copies enabled. This may allow copies of files stored on the disk to be recovered and pose a security concern.</value>350 </data>351 <data name="The drive {0} has disk quotas active. This will prevent the complete erasure of unused space and may pose a security concern." xml:space="preserve">352 <value>The drive {0} has disk quotas active. This will prevent the complete erasure of unused space and may pose a security concern.</value>353 </data>354 <data name="Searching for files' cluster tips..." xml:space="preserve">355 <value>Searching for files' cluster tips...</value>356 </data>357 <data name="Erasing cluster tips..." xml:space="preserve">358 <value>Erasing cluster tips...</value>359 </data>360 <data name="Old resident file system table files" xml:space="preserve">361 <value>Old resident file system table files</value>362 </data>363 <data name="Removing temporary files..." xml:space="preserve">364 <value>Removing temporary files...</value>365 </data>366 <data name="Erasing unused directory structures..." xml:space="preserve">367 <value>Erasing unused directory structures...</value>368 </data>369 <data name="Erasing unused space..." xml:space="preserve">370 <value>Erasing unused space...</value>371 </data>372 <data name="unused Erases unused space in the volume.\r\n arguments: unused=<drive>[,clusterTips[=(true|false)]]\r\n clusterTips If specified, the drive's files will have their\r\n cluster tips erased. This parameter accepts a Boolean\r\n value (true/false) as an argument; if none is specified\r\n true is assumed." xml:space="preserve">373 <value>unused Erases unused space in the volume.\r\n arguments: unused=<drive>[,clusterTips[=(true|false)]]\r\n clusterTips If specified, the drive's files will have their\r\n cluster tips erased. This parameter accepts a Boolean\r\n value (true/false) as an argument; if none is specified\r\n true is assumed.</value>374 </data>375 <data name="The custom erasure method can only comprise passes containing constant or random passes" xml:space="preserve">376 <value>The custom erasure method can only comprise passes containing constant or random passes</value>377 </data>378 <data name="US DoD 5220.22-M (8-306./E, C & E)" xml:space="preserve">379 <value>US DoD 5220.22-M (8-306./E, C & E)</value>380 </data>381 <data name="US DoD 5220.22-M (8-306./E)" xml:space="preserve">382 <value>US DoD 5220.22-M (8-306./E)</value>383 </data>384 384 <data name="The First/last 16KB erasure method requires another erasure method to erase the file.\n\nThis must be set in the Plugin Settings dialog." xml:space="preserve"> 385 385 <value>The First/last 16KB erasure method requires another erasure method to erase the file.\n\nThis must be set in the Plugin Settings dialog.</value> -
branches/eraser6/pluginsRewrite/Eraser.DefaultPlugins/Strings.it.resx
r2456 r2464 142 142 <value>Il valore indicato non è valido per il tipo di dato. I caratteri esadecimali validi sono i numerii compresi fra 0 e 9 e le lettere fra A e F</value> 143 143 </data> 144 <data name="{0} (1 pass)" xml:space="preserve">145 <value>(Untranslated)</value>146 </data>147 <data name="{0} ({1} passes)" xml:space="preserve">148 <value>(Untranslated)</value>149 </data>150 <data name="Random" xml:space="preserve">151 <value>(Untranslated)</value>152 </data>153 <data name="The selected erasure method is not supported for this erasure target." xml:space="preserve">154 <value>(Untranslated)</value>155 </data>156 144 <data name="Default Erasure Methods and PRNGs" xml:space="preserve"> 157 145 <value>Metodi di pulizia di default e PRNGs</value> … … 160 148 <value>(Untranslated)</value> 161 149 </data> 150 <data name="An invalid erasure method was selected." xml:space="preserve"> 151 <value>E' stato selezionato un metodo di pulizia non valido.</value> 152 </data> 162 153 <data name="RNGCryptoServiceProvider" xml:space="preserve"> 163 154 <value>RNGCryptoServiceProvider</value> 164 155 </data> 165 <data name="An invalid erasure method was selected." xml:space="preserve">166 <value>E' stato selezionato un metodo di pulizia non valido.</value>167 </data>168 156 <data name="Could not erase directory entries on the volume {0} because the volume is currently in use." xml:space="preserve"> 169 157 <value>Impossibile pulire i puntamenti ai folder sul volume {0} perchè è attualmente in uso.</value> … … 250 238 <value>(Untranslated)</value> 251 239 </data> 240 <data name="The selected erasure method is not supported for this erasure target." xml:space="preserve"> 241 <value>(Untranslated)</value> 242 </data> 252 243 <data name="File" xml:space="preserve"> 253 244 <value>(Untranslated)</value> … … 340 331 <value>(Untranslated)</value> 341 332 </data> 333 <data name="Unused disk space ({0})" xml:space="preserve"> 334 <value>Spazio disco libero ({0})</value> 335 </data> 342 336 <data name="Unused disk space" xml:space="preserve"> 343 337 <value>Spazio disco libero</value> 344 338 </data> 345 <data name="Unused disk space ({0})" xml:space="preserve">346 <value>Spazio disco libero ({0})</value>347 </data>348 339 <data name="This computer has had System Restore or Volume Shadow Copies enabled. This may allow copies of files stored on the disk to be recovered and pose a security concern." xml:space="preserve"> 349 340 <value>Questo computer ha il System Restore o Volume Shadow Copies abilitato.Ciò permette il ripristino di file memorizzati sul disco anche se precedentemente puliti e ciò determina dei problemi di sicurezza.</value> … … 382 373 <value>US DoD 5220.22-M (8-306./E)</value> 383 374 </data> 375 <data name="{0} (1 pass)" xml:space="preserve"> 376 <value>(Untranslated)</value> 377 </data> 378 <data name="{0} ({1} passes)" xml:space="preserve"> 379 <value>(Untranslated)</value> 380 </data> 381 <data name="Random" xml:space="preserve"> 382 <value>(Untranslated)</value> 383 </data> 384 384 <data name="The First/last 16KB erasure method requires another erasure method to erase the file.\n\nThis must be set in the Plugin Settings dialog." xml:space="preserve"> 385 385 <value>Il metodo di pulizia First/last 16KB richiede un altro metodo di pulizia per la cancellazione del file.\n\nQuesto deve essere indicato nelle impostazioni dell'estensione.</value> -
branches/eraser6/pluginsRewrite/Eraser.DefaultPlugins/Strings.nl.resx
r2456 r2464 142 142 <value>(Untranslated)</value> 143 143 </data> 144 <data name="Default Erasure Methods and PRNGs" xml:space="preserve"> 145 <value>(Untranslated)</value> 146 </data> 147 <data name="The Eraser Project <eraser-development@lists.sourceforge.net>" xml:space="preserve"> 148 <value>(Untranslated)</value> 149 </data> 150 <data name="An invalid erasure method was selected." xml:space="preserve"> 151 <value>(Untranslated)</value> 152 </data> 153 <data name="RNGCryptoServiceProvider" xml:space="preserve"> 154 <value>(Untranslated)</value> 155 </data> 156 <data name="Could not erase directory entries on the volume {0} because the volume is currently in use." xml:space="preserve"> 157 <value>(Untranslated)</value> 158 </data> 159 <data name="The folder {0} cannot be deleted as it is not empty." xml:space="preserve"> 160 <value>(Untranslated)</value> 161 </data> 162 <data name="The file {0} could not be erased because the file's permissions prevent access to the file." xml:space="preserve"> 163 <value>(Untranslated)</value> 164 </data> 165 <data name="The file {0} is currently in use and cannot be removed." xml:space="preserve"> 166 <value>(Untranslated)</value> 167 </data> 168 <data name="Could not force closure of file \"{0}\" {1}(locked by {0})" xml:space="preserve"> 169 <value>(Untranslated)</value> 170 </data> 171 <data name="Could not erase cluster tips in {0} as the volume is not mounted." xml:space="preserve"> 172 <value>(Untranslated)</value> 173 </data> 174 <data name="{0} did not have its cluster tips erased because you do not have the required permissions to erase the file cluster tips." xml:space="preserve"> 175 <value>(Untranslated)</value> 176 </data> 177 <data name="{0} did not have its cluster tips erased. The error returned was: {1}" xml:space="preserve"> 178 <value>(Untranslated)</value> 179 </data> 180 <data name="Files in {0} did not have their cluster tips erased because it is a hard link or a symbolic link." xml:space="preserve"> 181 <value>(Untranslated)</value> 182 </data> 183 <data name="{0} did not have its cluster tips erased, because it is a system file" xml:space="preserve"> 184 <value>(Untranslated)</value> 185 </data> 186 <data name="{0} did not have its cluster tips erased because it is a hard link or a symbolic link." xml:space="preserve"> 187 <value>(Untranslated)</value> 188 </data> 189 <data name="{0} did not have its cluster tips erased because it is compressed, encrypted or a sparse file." xml:space="preserve"> 190 <value>(Untranslated)</value> 191 </data> 192 <data name="{0} did not have its cluster tips erased because of the following error: {1}" xml:space="preserve"> 193 <value>(Untranslated)</value> 194 </data> 195 <data name="Files in {0} did not have its cluster tips erased because of the following error: {1}" xml:space="preserve"> 196 <value>(Untranslated)</value> 197 </data> 198 <data name="Drive/Partition" xml:space="preserve"> 199 <value>(Untranslated)</value> 200 </data> 201 <data name="Hard disk {0}" xml:space="preserve"> 202 <value>(Untranslated)</value> 203 </data> 204 <data name="Partition: {0}" xml:space="preserve"> 205 <value>(Untranslated)</value> 206 </data> 207 <data name="Hard disk {0} Partition {1}" xml:space="preserve"> 208 <value>(Untranslated)</value> 209 </data> 210 <data name="Partition" xml:space="preserve"> 211 <value>(Untranslated)</value> 212 </data> 213 <data name="The program does not have the required permissions to erase the unused space on disk. Run the program as an administrator and retry the operation." xml:space="preserve"> 214 <value>(Untranslated)</value> 215 </data> 216 <data name="The program does not have the required permissions to erase the unused space on disk." xml:space="preserve"> 217 <value>(Untranslated)</value> 218 </data> 219 <data name="The Drive erasure target requires a volume or physical drive selected for erasure." xml:space="preserve"> 220 <value>(Untranslated)</value> 221 </data> 222 <data name="The task was cancelled." xml:space="preserve"> 223 <value>(Untranslated)</value> 224 </data> 225 <data name="Hard disk {0} ({1})" xml:space="preserve"> 226 <value>(Untranslated)</value> 227 </data> 228 <data name="Partition {0} ({1})" xml:space="preserve"> 229 <value>(Untranslated)</value> 230 </data> 231 <data name="Partition ({0})" xml:space="preserve"> 232 <value>(Untranslated)</value> 233 </data> 234 <data name="Partition {0}" xml:space="preserve"> 235 <value>(Untranslated)</value> 236 </data> 237 <data name="drive Erases partitions, volumes or drives\r\n arguments:\r\n drive=\Device\Harddisk<index>\r\n drive=\\.\PhysicalDrive<index>\r\n drive=\\?\Volume<guid>" xml:space="preserve"> 238 <value>(Untranslated)</value> 239 </data> 240 <data name="The selected erasure method is not supported for this erasure target." xml:space="preserve"> 241 <value>(Untranslated)</value> 242 </data> 243 <data name="File" xml:space="preserve"> 244 <value>(Untranslated)</value> 245 </data> 246 <data name="Invalid file path" xml:space="preserve"> 247 <value>(Untranslated)</value> 248 </data> 249 <data name="file Erases the specified file\r\n argument: file=<path>" xml:space="preserve"> 250 <value>(Untranslated)</value> 251 </data> 252 <data name="Could not erase files and subfolders in {0} because {1}" xml:space="preserve"> 253 <value>(Untranslated)</value> 254 </data> 255 <data name="Erasing files..." xml:space="preserve"> 256 <value>(Untranslated)</value> 257 </data> 258 <data name="The file {0} was not erased as the file does not exist." xml:space="preserve"> 259 <value>(Untranslated)</value> 260 </data> 261 <data name="The file {0} could not be erased because the file was either compressed, encrypted or a sparse file." xml:space="preserve"> 262 <value>(Untranslated)</value> 263 </data> 264 <data name="The file {0} is a hard link or a symbolic link thus the contents of the file was not erased." xml:space="preserve"> 265 <value>(Untranslated)</value> 266 </data> 267 <data name="Plausible deniability was selected, but no decoy files were found. The current file has been only replaced with random data." xml:space="preserve"> 268 <value>(Untranslated)</value> 269 </data> 270 <data name="Files in Folder" xml:space="preserve"> 271 <value>(Untranslated)</value> 272 </data> 273 <data name="Removing folders..." xml:space="preserve"> 274 <value>(Untranslated)</value> 275 </data> 276 <data name="The folder {0} could not be deleted because the folder's permissions prevents the deletion of the folder." xml:space="preserve"> 277 <value>(Untranslated)</value> 278 </data> 279 <data name="Invalid folder path" xml:space="preserve"> 280 <value>(Untranslated)</value> 281 </data> 282 <data name="dir Erases files and folders in the directory\r\n arguments: dir=<directory>[,-excludeMask][,+includeMask][,deleteIfEmpty]\r\n excludeMask A wildcard expression for files and folders to\r\n exclude.\r\n includeMask A wildcard expression for files and folders to\r\n include.\r\n The include mask is applied before the exclude mask.\r\n deleteIfEmpty Deletes the folder at the end of the erasure if it is\r\n empty." xml:space="preserve"> 283 <value>(Untranslated)</value> 284 </data> 285 <data name="The path you selected is invalid." xml:space="preserve"> 286 <value>(Untranslated)</value> 287 </data> 288 <data name="Recycle Bin" xml:space="preserve"> 289 <value>(Untranslated)</value> 290 </data> 291 <data name="Emptying recycle bin..." xml:space="preserve"> 292 <value>(Untranslated)</value> 293 </data> 294 <data name="recyclebin Erases files and folders in the recycle bin" xml:space="preserve"> 295 <value>(Untranslated)</value> 296 </data> 297 <data name="Secure move" xml:space="preserve"> 298 <value>(Untranslated)</value> 299 </data> 300 <data name="Securely move {0}" xml:space="preserve"> 301 <value>(Untranslated)</value> 302 </data> 303 <data name="The destination directory cannot be within the source directory." xml:space="preserve"> 304 <value>(Untranslated)</value> 305 </data> 306 <data name="Securely moving files and folders..." xml:space="preserve"> 307 <value>(Untranslated)</value> 308 </data> 309 <data name="Erasing incomplete destination file" xml:space="preserve"> 310 <value>(Untranslated)</value> 311 </data> 312 <data name="Erasing source files..." xml:space="preserve"> 313 <value>(Untranslated)</value> 314 </data> 315 <data name="Copying source files to destination..." xml:space="preserve"> 316 <value>(Untranslated)</value> 317 </data> 318 <data name="move Securely moves a file/directory to a new location\r\n arguments: move=<source>|<destination>" xml:space="preserve"> 319 <value>(Untranslated)</value> 320 </data> 321 <data name="Select the Source folder" xml:space="preserve"> 322 <value>(Untranslated)</value> 323 </data> 324 <data name="Select the Source file" xml:space="preserve"> 325 <value>(Untranslated)</value> 326 </data> 327 <data name="Move Source folder to:" xml:space="preserve"> 328 <value>(Untranslated)</value> 329 </data> 330 <data name="Save Source file to" xml:space="preserve"> 331 <value>(Untranslated)</value> 332 </data> 333 <data name="Unused disk space ({0})" xml:space="preserve"> 334 <value>(Untranslated)</value> 335 </data> 336 <data name="Unused disk space" xml:space="preserve"> 337 <value>(Untranslated)</value> 338 </data> 339 <data name="This computer has had System Restore or Volume Shadow Copies enabled. This may allow copies of files stored on the disk to be recovered and pose a security concern." xml:space="preserve"> 340 <value>(Untranslated)</value> 341 </data> 342 <data name="The drive {0} has disk quotas active. This will prevent the complete erasure of unused space and may pose a security concern." xml:space="preserve"> 343 <value>(Untranslated)</value> 344 </data> 345 <data name="Searching for files' cluster tips..." xml:space="preserve"> 346 <value>(Untranslated)</value> 347 </data> 348 <data name="Erasing cluster tips..." xml:space="preserve"> 349 <value>(Untranslated)</value> 350 </data> 351 <data name="Old resident file system table files" xml:space="preserve"> 352 <value>(Untranslated)</value> 353 </data> 354 <data name="Removing temporary files..." xml:space="preserve"> 355 <value>(Untranslated)</value> 356 </data> 357 <data name="Erasing unused directory structures..." xml:space="preserve"> 358 <value>(Untranslated)</value> 359 </data> 360 <data name="Erasing unused space..." xml:space="preserve"> 361 <value>(Untranslated)</value> 362 </data> 363 <data name="unused Erases unused space in the volume.\r\n arguments: unused=<drive>[,clusterTips[=(true|false)]]\r\n clusterTips If specified, the drive's files will have their\r\n cluster tips erased. This parameter accepts a Boolean\r\n value (true/false) as an argument; if none is specified\r\n true is assumed." xml:space="preserve"> 364 <value>(Untranslated)</value> 365 </data> 366 <data name="The custom erasure method can only comprise passes containing constant or random passes" xml:space="preserve"> 367 <value>(Untranslated)</value> 368 </data> 369 <data name="US DoD 5220.22-M (8-306./E, C & E)" xml:space="preserve"> 370 <value>(Untranslated)</value> 371 </data> 372 <data name="US DoD 5220.22-M (8-306./E)" xml:space="preserve"> 373 <value>(Untranslated)</value> 374 </data> 144 375 <data name="{0} (1 pass)" xml:space="preserve"> 145 376 <value>(Untranslated)</value> … … 151 382 <value>(Untranslated)</value> 152 383 </data> 153 <data name="The selected erasure method is not supported for this erasure target." xml:space="preserve">154 <value>(Untranslated)</value>155 </data>156 <data name="Default Erasure Methods and PRNGs" xml:space="preserve">157 <value>(Untranslated)</value>158 </data>159 <data name="The Eraser Project <eraser-development@lists.sourceforge.net>" xml:space="preserve">160 <value>(Untranslated)</value>161 </data>162 <data name="RNGCryptoServiceProvider" xml:space="preserve">163 <value>(Untranslated)</value>164 </data>165 <data name="An invalid erasure method was selected." xml:space="preserve">166 <value>(Untranslated)</value>167 </data>168 <data name="Could not erase directory entries on the volume {0} because the volume is currently in use." xml:space="preserve">169 <value>(Untranslated)</value>170 </data>171 <data name="The folder {0} cannot be deleted as it is not empty." xml:space="preserve">172 <value>(Untranslated)</value>173 </data>174 <data name="The file {0} could not be erased because the file's permissions prevent access to the file." xml:space="preserve">175 <value>(Untranslated)</value>176 </data>177 <data name="The file {0} is currently in use and cannot be removed." xml:space="preserve">178 <value>(Untranslated)</value>179 </data>180 <data name="Could not force closure of file \"{0}\" {1}(locked by {0})" xml:space="preserve">181 <value>(Untranslated)</value>182 </data>183 <data name="Could not erase cluster tips in {0} as the volume is not mounted." xml:space="preserve">184 <value>(Untranslated)</value>185 </data>186 <data name="{0} did not have its cluster tips erased because you do not have the required permissions to erase the file cluster tips." xml:space="preserve">187 <value>(Untranslated)</value>188 </data>189 <data name="{0} did not have its cluster tips erased. The error returned was: {1}" xml:space="preserve">190 <value>(Untranslated)</value>191 </data>192 <data name="Files in {0} did not have their cluster tips erased because it is a hard link or a symbolic link." xml:space="preserve">193 <value>(Untranslated)</value>194 </data>195 <data name="{0} did not have its cluster tips erased, because it is a system file" xml:space="preserve">196 <value>(Untranslated)</value>197 </data>198 <data name="{0} did not have its cluster tips erased because it is a hard link or a symbolic link." xml:space="preserve">199 <value>(Untranslated)</value>200 </data>201 <data name="{0} did not have its cluster tips erased because it is compressed, encrypted or a sparse file." xml:space="preserve">202 <value>(Untranslated)</value>203 </data>204 <data name="{0} did not have its cluster tips erased because of the following error: {1}" xml:space="preserve">205 <value>(Untranslated)</value>206 </data>207 <data name="Files in {0} did not have its cluster tips erased because of the following error: {1}" xml:space="preserve">208 <value>(Untranslated)</value>209 </data>210 <data name="Drive/Partition" xml:space="preserve">211 <value>(Untranslated)</value>212 </data>213 <data name="Hard disk {0}" xml:space="preserve">214 <value>(Untranslated)</value>215 </data>216 <data name="Partition: {0}" xml:space="preserve">217 <value>(Untranslated)</value>218 </data>219 <data name="Hard disk {0} Partition {1}" xml:space="preserve">220 <value>(Untranslated)</value>221 </data>222 <data name="Partition" xml:space="preserve">223 <value>(Untranslated)</value>224 </data>225 <data name="The program does not have the required permissions to erase the unused space on disk. Run the program as an administrator and retry the operation." xml:space="preserve">226 <value>(Untranslated)</value>227 </data>228 <data name="The program does not have the required permissions to erase the unused space on disk." xml:space="preserve">229 <value>(Untranslated)</value>230 </data>231 <data name="The Drive erasure target requires a volume or physical drive selected for erasure." xml:space="preserve">232 <value>(Untranslated)</value>233 </data>234 <data name="The task was cancelled." xml:space="preserve">235 <value>(Untranslated)</value>236 </data>237 <data name="Hard disk {0} ({1})" xml:space="preserve">238 <value>(Untranslated)</value>239 </data>240 <data name="Partition {0} ({1})" xml:space="preserve">241 <value>(Untranslated)</value>242 </data>243 <data name="Partition ({0})" xml:space="preserve">244 <value>(Untranslated)</value>245 </data>246 <data name="Partition {0}" xml:space="preserve">247 <value>(Untranslated)</value>248 </data>249 <data name="drive Erases partitions, volumes or drives\r\n arguments:\r\n drive=\Device\Harddisk<index>\r\n drive=\\.\PhysicalDrive<index>\r\n drive=\\?\Volume<guid>" xml:space="preserve">250 <value>(Untranslated)</value>251 </data>252 <data name="File" xml:space="preserve">253 <value>(Untranslated)</value>254 </data>255 <data name="Invalid file path" xml:space="preserve">256 <value>(Untranslated)</value>257 </data>258 <data name="file Erases the specified file\r\n argument: file=<path>" xml:space="preserve">259 <value>(Untranslated)</value>260 </data>261 <data name="Could not erase files and subfolders in {0} because {1}" xml:space="preserve">262 <value>(Untranslated)</value>263 </data>264 <data name="Erasing files..." xml:space="preserve">265 <value>(Untranslated)</value>266 </data>267 <data name="The file {0} was not erased as the file does not exist." xml:space="preserve">268 <value>(Untranslated)</value>269 </data>270 <data name="The file {0} could not be erased because the file was either compressed, encrypted or a sparse file." xml:space="preserve">271 <value>(Untranslated)</value>272 </data>273 <data name="The file {0} is a hard link or a symbolic link thus the contents of the file was not erased." xml:space="preserve">274 <value>(Untranslated)</value>275 </data>276 <data name="Plausible deniability was selected, but no decoy files were found. The current file has been only replaced with random data." xml:space="preserve">277 <value>(Untranslated)</value>278 </data>279 <data name="Files in Folder" xml:space="preserve">280 <value>(Untranslated)</value>281 </data>282 <data name="Removing folders..." xml:space="preserve">283 <value>(Untranslated)</value>284 </data>285 <data name="The folder {0} could not be deleted because the folder's permissions prevents the deletion of the folder." xml:space="preserve">286 <value>(Untranslated)</value>287 </data>288 <data name="Invalid folder path" xml:space="preserve">289 <value>(Untranslated)</value>290 </data>291 <data name="dir Erases files and folders in the directory\r\n arguments: dir=<directory>[,-excludeMask][,+includeMask][,deleteIfEmpty]\r\n excludeMask A wildcard expression for files and folders to\r\n exclude.\r\n includeMask A wildcard expression for files and folders to\r\n include.\r\n The include mask is applied before the exclude mask.\r\n deleteIfEmpty Deletes the folder at the end of the erasure if it is\r\n empty." xml:space="preserve">292 <value>(Untranslated)</value>293 </data>294 <data name="The path you selected is invalid." xml:space="preserve">295 <value>(Untranslated)</value>296 </data>297 <data name="Recycle Bin" xml:space="preserve">298 <value>(Untranslated)</value>299 </data>300 <data name="Emptying recycle bin..." xml:space="preserve">301 <value>(Untranslated)</value>302 </data>303 <data name="recyclebin Erases files and folders in the recycle bin" xml:space="preserve">304 <value>(Untranslated)</value>305 </data>306 <data name="Secure move" xml:space="preserve">307 <value>(Untranslated)</value>308 </data>309 <data name="Securely move {0}" xml:space="preserve">310 <value>(Untranslated)</value>311 </data>312 <data name="The destination directory cannot be within the source directory." xml:space="preserve">313 <value>(Untranslated)</value>314 </data>315 <data name="Securely moving files and folders..." xml:space="preserve">316 <value>(Untranslated)</value>317 </data>318 <data name="Erasing incomplete destination file" xml:space="preserve">319 <value>(Untranslated)</value>320 </data>321 <data name="Erasing source files..." xml:space="preserve">322 <value>(Untranslated)</value>323 </data>324 <data name="Copying source files to destination..." xml:space="preserve">325 <value>(Untranslated)</value>326 </data>327 <data name="move Securely moves a file/directory to a new location\r\n arguments: move=<source>|<destination>" xml:space="preserve">328 <value>(Untranslated)</value>329 </data>330 <data name="Select the Source folder" xml:space="preserve">331 <value>(Untranslated)</value>332 </data>333 <data name="Select the Source file" xml:space="preserve">334 <value>(Untranslated)</value>335 </data>336 <data name="Move Source folder to:" xml:space="preserve">337 <value>(Untranslated)</value>338 </data>339 <data name="Save Source file to" xml:space="preserve">340 <value>(Untranslated)</value>341 </data>342 <data name="Unused disk space" xml:space="preserve">343 <value>(Untranslated)</value>344 </data>345 <data name="Unused disk space ({0})" xml:space="preserve">346 <value>(Untranslated)</value>347 </data>348 <data name="This computer has had System Restore or Volume Shadow Copies enabled. This may allow copies of files stored on the disk to be recovered and pose a security concern." xml:space="preserve">349 <value>(Untranslated)</value>350 </data>351 <data name="The drive {0} has disk quotas active. This will prevent the complete erasure of unused space and may pose a security concern." xml:space="preserve">352 <value>(Untranslated)</value>353 </data>354 <data name="Searching for files' cluster tips..." xml:space="preserve">355 <value>(Untranslated)</value>356 </data>357 <data name="Erasing cluster tips..." xml:space="preserve">358 <value>(Untranslated)</value>359 </data>360 <data name="Old resident file system table files" xml:space="preserve">361 <value>(Untranslated)</value>362 </data>363 <data name="Removing temporary files..." xml:space="preserve">364 <value>(Untranslated)</value>365 </data>366 <data name="Erasing unused directory structures..." xml:space="preserve">367 <value>(Untranslated)</value>368 </data>369 <data name="Erasing unused space..." xml:space="preserve">370 <value>(Untranslated)</value>371 </data>372 <data name="unused Erases unused space in the volume.\r\n arguments: unused=<drive>[,clusterTips[=(true|false)]]\r\n clusterTips If specified, the drive's files will have their\r\n cluster tips erased. This parameter accepts a Boolean\r\n value (true/false) as an argument; if none is specified\r\n true is assumed." xml:space="preserve">373 <value>(Untranslated)</value>374 </data>375 <data name="The custom erasure method can only comprise passes containing constant or random passes" xml:space="preserve">376 <value>(Untranslated)</value>377 </data>378 <data name="US DoD 5220.22-M (8-306./E, C & E)" xml:space="preserve">379 <value>(Untranslated)</value>380 </data>381 <data name="US DoD 5220.22-M (8-306./E)" xml:space="preserve">382 <value>(Untranslated)</value>383 </data>384 384 <data name="The First/last 16KB erasure method requires another erasure method to erase the file.\n\nThis must be set in the Plugin Settings dialog." xml:space="preserve"> 385 385 <value>(Untranslated)</value> -
branches/eraser6/pluginsRewrite/Eraser.DefaultPlugins/Strings.pl.resx
r2456 r2464 142 142 <value>Wprowadzony tekst jest niewłaściwy dla wymaganego typu danych. Użyj symboli szesnastkowych: cyfry 0-9 i litery A-F</value> 143 143 </data> 144 <data name="{0} (1 pass)" xml:space="preserve">145 <value>(Untranslated)</value>146 </data>147 <data name="{0} ({1} passes)" xml:space="preserve">148 <value>(Untranslated)</value>149 </data>150 <data name="Random" xml:space="preserve">151 <value>(Untranslated)</value>152 </data>153 <data name="The selected erasure method is not supported for this erasure target." xml:space="preserve">154 <value>(Untranslated)</value>155 </data>156 144 <data name="Default Erasure Methods and PRNGs" xml:space="preserve"> 157 145 <value>Domyślna metoda wymazywania i generatora liczb pseudolosowych (PRNG)</value> … … 160 148 <value>Projekt Eraser <eraser-development@lists.sourceforge.net></value> 161 149 </data> 150 <data name="An invalid erasure method was selected." xml:space="preserve"> 151 <value>Wybrano niewłaściwą metodę wymazania.</value> 152 </data> 162 153 <data name="RNGCryptoServiceProvider" xml:space="preserve"> 163 154 <value>RNGCryptoServiceProvider</value> 164 155 </data> 165 <data name="An invalid erasure method was selected." xml:space="preserve">166 <value>Wybrano niewłaściwą metodę wymazania.</value>167 </data>168 156 <data name="Could not erase directory entries on the volume {0} because the volume is currently in use." xml:space="preserve"> 169 157 <value>Nie można wymazać wpisów katalogów na woluminie {0}, ponieważ ten wolumin jest w użyciu.</value> … … 250 238 <value>(Untranslated)</value> 251 239 </data> 240 <data name="The selected erasure method is not supported for this erasure target." xml:space="preserve"> 241 <value>(Untranslated)</value> 242 </data> 252 243 <data name="File" xml:space="preserve"> 253 244 <value>(Untranslated)</value> … … 340 331 <value>(Untranslated)</value> 341 332 </data> 333 <data name="Unused disk space ({0})" xml:space="preserve"> 334 <value>(Untranslated)</value> 335 </data> 342 336 <data name="Unused disk space" xml:space="preserve"> 343 <value>(Untranslated)</value>344 </data>345 <data name="Unused disk space ({0})" xml:space="preserve">346 337 <value>(Untranslated)</value> 347 338 </data> … … 382 373 <value>US DoD 5220.22-M (8-306./E)</value> 383 374 </data> 375 <data name="{0} (1 pass)" xml:space="preserve"> 376 <value>(Untranslated)</value> 377 </data> 378 <data name="{0} ({1} passes)" xml:space="preserve"> 379 <value>(Untranslated)</value> 380 </data> 381 <data name="Random" xml:space="preserve"> 382 <value>(Untranslated)</value> 383 </data> 384 384 <data name="The First/last 16KB erasure method requires another erasure method to erase the file.\n\nThis must be set in the Plugin Settings dialog." xml:space="preserve"> 385 385 <value>Metoda wymazywania pierwszych/ostatnich 16KB wymaga dodatkowej metody wymazywania pliku.\n\nSkonfiguruj w ustawieniach wtyczki.</value> -
branches/eraser6/pluginsRewrite/Eraser.DefaultPlugins/Strings.resx
r2456 r2464 142 142 <value>The input text is invalid for the current data type. Valid hexadecimal characters are the digits 0-9 and letters A-F</value> 143 143 </data> 144 <data name="Default Erasure Methods and PRNGs" xml:space="preserve"> 145 <value>Default Erasure Methods and PRNGs</value> 146 </data> 147 <data name="The Eraser Project <eraser-development@lists.sourceforge.net>" xml:space="preserve"> 148 <value>The Eraser Project <eraser-development@lists.sourceforge.net></value> 149 </data> 150 <data name="An invalid erasure method was selected." xml:space="preserve"> 151 <value>An invalid erasure method was selected.</value> 152 </data> 153 <data name="RNGCryptoServiceProvider" xml:space="preserve"> 154 <value>RNGCryptoServiceProvider</value> 155 </data> 156 <data name="Could not erase directory entries on the volume {0} because the volume is currently in use." xml:space="preserve"> 157 <value>Could not erase directory entries on the volume {0} because the volume is currently in use.</value> 158 </data> 159 <data name="The folder {0} cannot be deleted as it is not empty." xml:space="preserve"> 160 <value>The folder {0} cannot be deleted as it is not empty.</value> 161 </data> 162 <data name="The file {0} could not be erased because the file's permissions prevent access to the file." xml:space="preserve"> 163 <value>The file {0} could not be erased because the file's permissions prevent access to the file.</value> 164 </data> 165 <data name="The file {0} is currently in use and cannot be removed." xml:space="preserve"> 166 <value>The file {0} is currently in use and cannot be removed.</value> 167 </data> 168 <data name="Could not force closure of file \"{0}\" {1}(locked by {0})" xml:space="preserve"> 169 <value>Could not force closure of file \"{0}\" {1}(locked by {0})</value> 170 </data> 171 <data name="Could not erase cluster tips in {0} as the volume is not mounted." xml:space="preserve"> 172 <value>Could not erase cluster tips in {0} as the volume is not mounted.</value> 173 </data> 174 <data name="{0} did not have its cluster tips erased because you do not have the required permissions to erase the file cluster tips." xml:space="preserve"> 175 <value>{0} did not have its cluster tips erased because you do not have the required permissions to erase the file cluster tips.</value> 176 </data> 177 <data name="{0} did not have its cluster tips erased. The error returned was: {1}" xml:space="preserve"> 178 <value>{0} did not have its cluster tips erased. The error returned was: {1}</value> 179 </data> 180 <data name="Files in {0} did not have their cluster tips erased because it is a hard link or a symbolic link." xml:space="preserve"> 181 <value>Files in {0} did not have their cluster tips erased because it is a hard link or a symbolic link.</value> 182 </data> 183 <data name="{0} did not have its cluster tips erased, because it is a system file" xml:space="preserve"> 184 <value>{0} did not have its cluster tips erased, because it is a system file</value> 185 </data> 186 <data name="{0} did not have its cluster tips erased because it is a hard link or a symbolic link." xml:space="preserve"> 187 <value>{0} did not have its cluster tips erased because it is a hard link or a symbolic link.</value> 188 </data> 189 <data name="{0} did not have its cluster tips erased because it is compressed, encrypted or a sparse file." xml:space="preserve"> 190 <value>{0} did not have its cluster tips erased because it is compressed, encrypted or a sparse file.</value> 191 </data> 192 <data name="{0} did not have its cluster tips erased because of the following error: {1}" xml:space="preserve"> 193 <value>{0} did not have its cluster tips erased because of the following error: {1}</value> 194 </data> 195 <data name="Files in {0} did not have its cluster tips erased because of the following error: {1}" xml:space="preserve"> 196 <value>Files in {0} did not have its cluster tips erased because of the following error: {1}</value> 197 </data> 198 <data name="Drive/Partition" xml:space="preserve"> 199 <value>Drive/Partition</value> 200 </data> 201 <data name="Hard disk {0}" xml:space="preserve"> 202 <value>Hard disk {0}</value> 203 </data> 204 <data name="Partition: {0}" xml:space="preserve"> 205 <value>Partition: {0}</value> 206 </data> 207 <data name="Hard disk {0} Partition {1}" xml:space="preserve"> 208 <value>Hard disk {0} Partition {1}</value> 209 </data> 210 <data name="Partition" xml:space="preserve"> 211 <value>Partition</value> 212 </data> 213 <data name="The program does not have the required permissions to erase the unused space on disk. Run the program as an administrator and retry the operation." xml:space="preserve"> 214 <value>The program does not have the required permissions to erase the unused space on disk. Run the program as an administrator and retry the operation.</value> 215 </data> 216 <data name="The program does not have the required permissions to erase the unused space on disk." xml:space="preserve"> 217 <value>The program does not have the required permissions to erase the unused space on disk.</value> 218 </data> 219 <data name="The Drive erasure target requires a volume or physical drive selected for erasure." xml:space="preserve"> 220 <value>The Drive erasure target requires a volume or physical drive selected for erasure.</value> 221 </data> 222 <data name="The task was cancelled." xml:space="preserve"> 223 <value>The task was cancelled.</value> 224 </data> 225 <data name="Hard disk {0} ({1})" xml:space="preserve"> 226 <value>Hard disk {0} ({1})</value> 227 </data> 228 <data name="Partition {0} ({1})" xml:space="preserve"> 229 <value>Partition {0} ({1})</value> 230 </data> 231 <data name="Partition ({0})" xml:space="preserve"> 232 <value>Partition ({0})</value> 233 </data> 234 <data name="Partition {0}" xml:space="preserve"> 235 <value>Partition {0}</value> 236 </data> 237 <data name="drive Erases partitions, volumes or drives\r\n arguments:\r\n drive=\Device\Harddisk<index>\r\n drive=\\.\PhysicalDrive<index>\r\n drive=\\?\Volume<guid>" xml:space="preserve"> 238 <value>drive Erases partitions, volumes or drives\r\n arguments:\r\n drive=\Device\Harddisk<index>\r\n drive=\\.\PhysicalDrive<index>\r\n drive=\\?\Volume<guid></value> 239 </data> 240 <data name="The selected erasure method is not supported for this erasure target." xml:space="preserve"> 241 <value>The selected erasure method is not supported for this erasure target.</value> 242 </data> 243 <data name="File" xml:space="preserve"> 244 <value>File</value> 245 </data> 246 <data name="Invalid file path" xml:space="preserve"> 247 <value>Invalid file path</value> 248 </data> 249 <data name="file Erases the specified file\r\n argument: file=<path>" xml:space="preserve"> 250 <value>file Erases the specified file\r\n argument: file=<path></value> 251 </data> 252 <data name="Could not erase files and subfolders in {0} because {1}" xml:space="preserve"> 253 <value>Could not erase files and subfolders in {0} because {1}</value> 254 </data> 255 <data name="Erasing files..." xml:space="preserve"> 256 <value>Erasing files...</value> 257 </data> 258 <data name="The file {0} was not erased as the file does not exist." xml:space="preserve"> 259 <value>The file {0} was not erased as the file does not exist.</value> 260 </data> 261 <data name="The file {0} could not be erased because the file was either compressed, encrypted or a sparse file." xml:space="preserve"> 262 <value>The file {0} could not be erased because the file was either compressed, encrypted or a sparse file.</value> 263 </data> 264 <data name="The file {0} is a hard link or a symbolic link thus the contents of the file was not erased." xml:space="preserve"> 265 <value>The file {0} is a hard link or a symbolic link thus the contents of the file was not erased.</value> 266 </data> 267 <data name="Plausible deniability was selected, but no decoy files were found. The current file has been only replaced with random data." xml:space="preserve"> 268 <value>Plausible deniability was selected, but no decoy files were found. The current file has been only replaced with random data.</value> 269 </data> 270 <data name="Files in Folder" xml:space="preserve"> 271 <value>Files in Folder</value> 272 </data> 273 <data name="Removing folders..." xml:space="preserve"> 274 <value>Removing folders...</value> 275 </data> 276 <data name="The folder {0} could not be deleted because the folder's permissions prevents the deletion of the folder." xml:space="preserve"> 277 <value>The folder {0} could not be deleted because the folder's permissions prevents the deletion of the folder.</value> 278 </data> 279 <data name="Invalid folder path" xml:space="preserve"> 280 <value>Invalid folder path</value> 281 </data> 282 <data name="dir Erases files and folders in the directory\r\n arguments: dir=<directory>[,-excludeMask][,+includeMask][,deleteIfEmpty]\r\n excludeMask A wildcard expression for files and folders to\r\n exclude.\r\n includeMask A wildcard expression for files and folders to\r\n include.\r\n The include mask is applied before the exclude mask.\r\n deleteIfEmpty Deletes the folder at the end of the erasure if it is\r\n empty." xml:space="preserve"> 283 <value>dir Erases files and folders in the directory\r\n arguments: dir=<directory>[,-excludeMask][,+includeMask][,deleteIfEmpty]\r\n excludeMask A wildcard expression for files and folders to\r\n exclude.\r\n includeMask A wildcard expression for files and folders to\r\n include.\r\n The include mask is applied before the exclude mask.\r\n deleteIfEmpty Deletes the folder at the end of the erasure if it is\r\n empty.</value> 284 </data> 285 <data name="The path you selected is invalid." xml:space="preserve"> 286 <value>The path you selected is invalid.</value> 287 </data> 288 <data name="Recycle Bin" xml:space="preserve"> 289 <value>Recycle Bin</value> 290 </data> 291 <data name="Emptying recycle bin..." xml:space="preserve"> 292 <value>Emptying recycle bin...</value> 293 </data> 294 <data name="recyclebin Erases files and folders in the recycle bin" xml:space="preserve"> 295 <value>recyclebin Erases files and folders in the recycle bin</value> 296 </data> 297 <data name="Secure move" xml:space="preserve"> 298 <value>Secure move</value> 299 </data> 300 <data name="Securely move {0}" xml:space="preserve"> 301 <value>Securely move {0}</value> 302 </data> 303 <data name="The destination directory cannot be within the source directory." xml:space="preserve"> 304 <value>The destination directory cannot be within the source directory.</value> 305 </data> 306 <data name="Securely moving files and folders..." xml:space="preserve"> 307 <value>Securely moving files and folders...</value> 308 </data> 309 <data name="Erasing incomplete destination file" xml:space="preserve"> 310 <value>Erasing incomplete destination file</value> 311 </data> 312 <data name="Erasing source files..." xml:space="preserve"> 313 <value>Erasing source files...</value> 314 </data> 315 <data name="Copying source files to destination..." xml:space="preserve"> 316 <value>Copying source files to destination...</value> 317 </data> 318 <data name="move Securely moves a file/directory to a new location\r\n arguments: move=<source>|<destination>" xml:space="preserve"> 319 <value>move Securely moves a file/directory to a new location\r\n arguments: move=<source>|<destination></value> 320 </data> 321 <data name="Select the Source folder" xml:space="preserve"> 322 <value>Select the Source folder</value> 323 </data> 324 <data name="Select the Source file" xml:space="preserve"> 325 <value>Select the Source file</value> 326 </data> 327 <data name="Move Source folder to:" xml:space="preserve"> 328 <value>Move Source folder to:</value> 329 </data> 330 <data name="Save Source file to" xml:space="preserve"> 331 <value>Save Source file to</value> 332 </data> 333 <data name="Unused disk space ({0})" xml:space="preserve"> 334 <value>Unused disk space ({0})</value> 335 </data> 336 <data name="Unused disk space" xml:space="preserve"> 337 <value>Unused disk space</value> 338 </data> 339 <data name="This computer has had System Restore or Volume Shadow Copies enabled. This may allow copies of files stored on the disk to be recovered and pose a security concern." xml:space="preserve"> 340 <value>This computer has had System Restore or Volume Shadow Copies enabled. This may allow copies of files stored on the disk to be recovered and pose a security concern.</value> 341 </data> 342 <data name="The drive {0} has disk quotas active. This will prevent the complete erasure of unused space and may pose a security concern." xml:space="preserve"> 343 <value>The drive {0} has disk quotas active. This will prevent the complete erasure of unused space and may pose a security concern.</value> 344 </data> 345 <data name="Searching for files' cluster tips..." xml:space="preserve"> 346 <value>Searching for files' cluster tips...</value> 347 </data> 348 <data name="Erasing cluster tips..." xml:space="preserve"> 349 <value>Erasing cluster tips...</value> 350 </data> 351 <data name="Old resident file system table files" xml:space="preserve"> 352 <value>Old resident file system table files</value> 353 </data> 354 <data name="Removing temporary files..." xml:space="preserve"> 355 <value>Removing temporary files...</value> 356 </data> 357 <data name="Erasing unused directory structures..." xml:space="preserve"> 358 <value>Erasing unused directory structures...</value> 359 </data> 360 <data name="Erasing unused space..." xml:space="preserve"> 361 <value>Erasing unused space...</value> 362 </data> 363 <data name="unused Erases unused space in the volume.\r\n arguments: unused=<drive>[,clusterTips[=(true|false)]]\r\n clusterTips If specified, the drive's files will have their\r\n cluster tips erased. This parameter accepts a Boolean\r\n value (true/false) as an argument; if none is specified\r\n true is assumed." xml:space="preserve"> 364 <value>unused Erases unused space in the volume.\r\n arguments: unused=<drive>[,clusterTips[=(true|false)]]\r\n clusterTips If specified, the drive's files will have their\r\n cluster tips erased. This parameter accepts a Boolean\r\n value (true/false) as an argument; if none is specified\r\n true is assumed.</value> 365 </data> 366 <data name="The custom erasure method can only comprise passes containing constant or random passes" xml:space="preserve"> 367 <value>The custom erasure method can only comprise passes containing constant or random passes</value> 368 </data> 369 <data name="US DoD 5220.22-M (8-306./E, C & E)" xml:space="preserve"> 370 <value>US DoD 5220.22-M (8-306./E, C & E)</value> 371 </data> 372 <data name="US DoD 5220.22-M (8-306./E)" xml:space="preserve"> 373 <value>US DoD 5220.22-M (8-306./E)</value> 374 </data> 144 375 <data name="{0} (1 pass)" xml:space="preserve"> 145 376 <value>{0} (1 pass)</value> … … 151 382 <value>Random</value> 152 383 </data> 153 <data name="The selected erasure method is not supported for this erasure target." xml:space="preserve">154 <value>The selected erasure method is not supported for this erasure target.</value>155 </data>156 <data name="Default Erasure Methods and PRNGs" xml:space="preserve">157 <value>Default Erasure Methods and PRNGs</value>158 </data>159 <data name="The Eraser Project <eraser-development@lists.sourceforge.net>" xml:space="preserve">160 <value>The Eraser Project <eraser-development@lists.sourceforge.net></value>161 </data>162 <data name="RNGCryptoServiceProvider" xml:space="preserve">163 <value>RNGCryptoServiceProvider</value>164 </data>165 <data name="An invalid erasure method was selected." xml:space="preserve">166 <value>An invalid erasure method was selected.</value>167 </data>168 <data name="Could not erase directory entries on the volume {0} because the volume is currently in use." xml:space="preserve">169 <value>Could not erase directory entries on the volume {0} because the volume is currently in use.</value>170 </data>171 <data name="The folder {0} cannot be deleted as it is not empty." xml:space="preserve">172 <value>The folder {0} cannot be deleted as it is not empty.</value>173 </data>174 <data name="The file {0} could not be erased because the file's permissions prevent access to the file." xml:space="preserve">175 <value>The file {0} could not be erased because the file's permissions prevent access to the file.</value>176 </data>177 <data name="The file {0} is currently in use and cannot be removed." xml:space="preserve">178 <value>The file {0} is currently in use and cannot be removed.</value>179 </data>180 <data name="Could not force closure of file \"{0}\" {1}(locked by {0})" xml:space="preserve">181 <value>Could not force closure of file \"{0}\" {1}(locked by {0})</value>182 </data>183 <data name="Could not erase cluster tips in {0} as the volume is not mounted." xml:space="preserve">184 <value>Could not erase cluster tips in {0} as the volume is not mounted.</value>185 </data>186 <data name="{0} did not have its cluster tips erased because you do not have the required permissions to erase the file cluster tips." xml:space="preserve">187 <value>{0} did not have its cluster tips erased because you do not have the required permissions to erase the file cluster tips.</value>188 </data>189 <data name="{0} did not have its cluster tips erased. The error returned was: {1}" xml:space="preserve">190 <value>{0} did not have its cluster tips erased. The error returned was: {1}</value>191 </data>192 <data name="Files in {0} did not have their cluster tips erased because it is a hard link or a symbolic link." xml:space="preserve">193 <value>Files in {0} did not have their cluster tips erased because it is a hard link or a symbolic link.</value>194 </data>195 <data name="{0} did not have its cluster tips erased, because it is a system file" xml:space="preserve">196 <value>{0} did not have its cluster tips erased, because it is a system file</value>197 </data>198 <data name="{0} did not have its cluster tips erased because it is a hard link or a symbolic link." xml:space="preserve">199 <value>{0} did not have its cluster tips erased because it is a hard link or a symbolic link.</value>200 </data>201 <data name="{0} did not have its cluster tips erased because it is compressed, encrypted or a sparse file." xml:space="preserve">202 <value>{0} did not have its cluster tips erased because it is compressed, encrypted or a sparse file.</value>203 </data>204 <data name="{0} did not have its cluster tips erased because of the following error: {1}" xml:space="preserve">205 <value>{0} did not have its cluster tips erased because of the following error: {1}</value>206 </data>207 <data name="Files in {0} did not have its cluster tips erased because of the following error: {1}" xml:space="preserve">208 <value>Files in {0} did not have its cluster tips erased because of the following error: {1}</value>209 </data>210 <data name="Drive/Partition" xml:space="preserve">211 <value>Drive/Partition</value>212 </data>213 <data name="Hard disk {0}" xml:space="preserve">214 <value>Hard disk {0}</value>215 </data>216 <data name="Partition: {0}" xml:space="preserve">217 <value>Partition: {0}</value>218 </data>219 <data name="Hard disk {0} Partition {1}" xml:space="preserve">220 <value>Hard disk {0} Partition {1}</value>221 </data>222 <data name="Partition" xml:space="preserve">223 <value>Partition</value>224 </data>225 <data name="The program does not have the required permissions to erase the unused space on disk. Run the program as an administrator and retry the operation." xml:space="preserve">226 <value>The program does not have the required permissions to erase the unused space on disk. Run the program as an administrator and retry the operation.</value>227 </data>228 <data name="The program does not have the required permissions to erase the unused space on disk." xml:space="preserve">229 <value>The program does not have the required permissions to erase the unused space on disk.</value>230 </data>231 <data name="The Drive erasure target requires a volume or physical drive selected for erasure." xml:space="preserve">232 <value>The Drive erasure target requires a volume or physical drive selected for erasure.</value>233 </data>234 <data name="The task was cancelled." xml:space="preserve">235 <value>The task was cancelled.</value>236 </data>237 <data name="Hard disk {0} ({1})" xml:space="preserve">238 <value>Hard disk {0} ({1})</value>239 </data>240 <data name="Partition {0} ({1})" xml:space="preserve">241 <value>Partition {0} ({1})</value>242 </data>243 <data name="Partition ({0})" xml:space="preserve">244 <value>Partition ({0})</value>245 </data>246 <data name="Partition {0}" xml:space="preserve">247 <value>Partition {0}</value>248 </data>249 <data name="drive Erases partitions, volumes or drives\r\n arguments:\r\n drive=\Device\Harddisk<index>\r\n drive=\\.\PhysicalDrive<index>\r\n drive=\\?\Volume<guid>" xml:space="preserve">250 <value>drive Erases partitions, volumes or drives\r\n arguments:\r\n drive=\Device\Harddisk<index>\r\n drive=\\.\PhysicalDrive<index>\r\n drive=\\?\Volume<guid></value>251 </data>252 <data name="File" xml:space="preserve">253 <value>File</value>254 </data>255 <data name="Invalid file path" xml:space="preserve">256 <value>Invalid file path</value>257 </data>258 <data name="file Erases the specified file\r\n argument: file=<path>" xml:space="preserve">259 <value>file Erases the specified file\r\n argument: file=<path></value>260 </data>261 <data name="Could not erase files and subfolders in {0} because {1}" xml:space="preserve">262 <value>Could not erase files and subfolders in {0} because {1}</value>263 </data>264 <data name="Erasing files..." xml:space="preserve">265 <value>Erasing files...</value>266 </data>267 <data name="The file {0} was not erased as the file does not exist." xml:space="preserve">268 <value>The file {0} was not erased as the file does not exist.</value>269 </data>270 <data name="The file {0} could not be erased because the file was either compressed, encrypted or a sparse file." xml:space="preserve">271 <value>The file {0} could not be erased because the file was either compressed, encrypted or a sparse file.</value>272 </data>273 <data name="The file {0} is a hard link or a symbolic link thus the contents of the file was not erased." xml:space="preserve">274 <value>The file {0} is a hard link or a symbolic link thus the contents of the file was not erased.</value>275 </data>276 <data name="Plausible deniability was selected, but no decoy files were found. The current file has been only replaced with random data." xml:space="preserve">277 <value>Plausible deniability was selected, but no decoy files were found. The current file has been only replaced with random data.</value>278 </data>279 <data name="Files in Folder" xml:space="preserve">280 <value>Files in Folder</value>281 </data>282 <data name="Removing folders..." xml:space="preserve">283 <value>Removing folders...</value>284 </data>285 <data name="The folder {0} could not be deleted because the folder's permissions prevents the deletion of the folder." xml:space="preserve">286 <value>The folder {0} could not be deleted because the folder's permissions prevents the deletion of the folder.</value>287 </data>288 <data name="Invalid folder path" xml:space="preserve">289 <value>Invalid folder path</value>290 </data>291 <data name="dir Erases files and folders in the directory\r\n arguments: dir=<directory>[,-excludeMask][,+includeMask][,deleteIfEmpty]\r\n excludeMask A wildcard expression for files and folders to\r\n exclude.\r\n includeMask A wildcard expression for files and folders to\r\n include.\r\n The include mask is applied before the exclude mask.\r\n deleteIfEmpty Deletes the folder at the end of the erasure if it is\r\n empty." xml:space="preserve">292 <value>dir Erases files and folders in the directory\r\n arguments: dir=<directory>[,-excludeMask][,+includeMask][,deleteIfEmpty]\r\n excludeMask A wildcard expression for files and folders to\r\n exclude.\r\n includeMask A wildcard expression for files and folders to\r\n include.\r\n The include mask is applied before the exclude mask.\r\n deleteIfEmpty Deletes the folder at the end of the erasure if it is\r\n empty.</value>293 </data>294 <data name="The path you selected is invalid." xml:space="preserve">295 <value>The path you selected is invalid.</value>296 </data>297 <data name="Recycle Bin" xml:space="preserve">298 <value>Recycle Bin</value>299 </data>300 <data name="Emptying recycle bin..." xml:space="preserve">301 <value>Emptying recycle bin...</value>302 </data>303 <data name="recyclebin Erases files and folders in the recycle bin" xml:space="preserve">304 <value>recyclebin Erases files and folders in the recycle bin</value>305 </data>306 <data name="Secure move" xml:space="preserve">307 <value>Secure move</value>308 </data>309 <data name="Securely move {0}" xml:space="preserve">310 <value>Securely move {0}</value>311 </data>312 <data name="The destination directory cannot be within the source directory." xml:space="preserve">313 <value>The destination directory cannot be within the source directory.</value>314 </data>315 <data name="Securely moving files and folders..." xml:space="preserve">316 <value>Securely moving files and folders...</value>317 </data>318 <data name="Erasing incomplete destination file" xml:space="preserve">319 <value>Erasing incomplete destination file</value>320 </data>321 <data name="Erasing source files..." xml:space="preserve">322 <value>Erasing source files...</value>323 </data>324 <data name="Copying source files to destination..." xml:space="preserve">325 <value>Copying source files to destination...</value>326 </data>327 <data name="move Securely moves a file/directory to a new location\r\n arguments: move=<source>|<destination>" xml:space="preserve">328 <value>move Securely moves a file/directory to a new location\r\n arguments: move=<source>|<destination></value>329 </data>330 <data name="Select the Source folder" xml:space="preserve">331 <value>Select the Source folder</value>332 </data>333 <data name="Select the Source file" xml:space="preserve">334 <value>Select the Source file</value>335 </data>336 <data name="Move Source folder to:" xml:space="preserve">337 <value>Move Source folder to:</value>338 </data>339 <data name="Save Source file to" xml:space="preserve">340 <value>Save Source file to</value>341 </data>342 <data name="Unused disk space" xml:space="preserve">343 <value>Unused disk space</value>344 </data>345 <data name="Unused disk space ({0})" xml:space="preserve">346 <value>Unused disk space ({0})</value>347 </data>348 <data name="This computer has had System Restore or Volume Shadow Copies enabled. This may allow copies of files stored on the disk to be recovered and pose a security concern." xml:space="preserve">349 <value>This computer has had System Restore or Volume Shadow Copies enabled. This may allow copies of files stored on the disk to be recovered and pose a security concern.</value>350 </data>351 <data name="The drive {0} has disk quotas active. This will prevent the complete erasure of unused space and may pose a security concern." xml:space="preserve">352 <value>The drive {0} has disk quotas active. This will prevent the complete erasure of unused space and may pose a security concern.</value>353 </data>354 <data name="Searching for files' cluster tips..." xml:space="preserve">355 <value>Searching for files' cluster tips...</value>356 </data>357 <data name="Erasing cluster tips..." xml:space="preserve">358 <value>Erasing cluster tips...</value>359 </data>360 <data name="Old resident file system table files" xml:space="preserve">361 <value>Old resident file system table files</value>362 </data>363 <data name="Removing temporary files..." xml:space="preserve">364 <value>Removing temporary files...</value>365 </data>366 <data name="Erasing unused directory structures..." xml:space="preserve">367 <value>Erasing unused directory structures...</value>368 </data>369 <data name="Erasing unused space..." xml:space="preserve">370 <value>Erasing unused space...</value>371 </data>372 <data name="unused Erases unused space in the volume.\r\n arguments: unused=<drive>[,clusterTips[=(true|false)]]\r\n clusterTips If specified, the drive's files will have their\r\n cluster tips erased. This parameter accepts a Boolean\r\n value (true/false) as an argument; if none is specified\r\n true is assumed." xml:space="preserve">373 <value>unused Erases unused space in the volume.\r\n arguments: unused=<drive>[,clusterTips[=(true|false)]]\r\n clusterTips If specified, the drive's files will have their\r\n cluster tips erased. This parameter accepts a Boolean\r\n value (true/false) as an argument; if none is specified\r\n true is assumed.</value>374 </data>375 <data name="The custom erasure method can only comprise passes containing constant or random passes" xml:space="preserve">376 <value>The custom erasure method can only comprise passes containing constant or random passes</value>377 </data>378 <data name="US DoD 5220.22-M (8-306./E, C & E)" xml:space="preserve">379 <value>US DoD 5220.22-M (8-306./E, C & E)</value>380 </data>381 <data name="US DoD 5220.22-M (8-306./E)" xml:space="preserve">382 <value>US DoD 5220.22-M (8-306./E)</value>383 </data>384 384 <data name="The First/last 16KB erasure method requires another erasure method to erase the file.\n\nThis must be set in the Plugin Settings dialog." xml:space="preserve"> 385 385 <value>The First/last 16KB erasure method requires another erasure method to erase the file.\n\nThis must be set in the Plugin Settings dialog.</value>
Note: See TracChangeset
for help on using the changeset viewer.
