A little change - sorry, but could you please change:
Code: Select all
17=Sæt dato og tid for %d mapper og %a arkiv(er)
Code: Select all
17=Sæt dato og tid for %d mappe(r) og %a arkiv(er)
Moderators: Hacker, petermad, Stefan2, white
Code: Select all
17=Sæt dato og tid for %d mapper og %a arkiv(er)
Code: Select all
17=Sæt dato og tid for %d mappe(r) og %a arkiv(er)
Code: Select all
7=Exp.Rég.
...
43=selon l' “ancienne date” :
Code: Select all
ProgPath7z=%COMMANDER_PATH%\..\7-Zip\7z.exe
Code: Select all
After
$strTmp = IniRead($strIniFile, "Configuration", "ProgPath7z", "")
just replace
$strTmp = StringReplace($strTmp, "%ProgramFiles%", EnvGet("ProgramFiles"))
with
$strTmp = _ProperPath($strTmp)
Code: Select all
Func _ProperPath($strPath)
;*** Ersetzt evtl. vorhandene relative Pfade am Anfang
If StringLeft($strPath, 2) = ".\" Then
$strPath = StringReplace($strPath, ".", @ScriptDir, 1)
EndIf
If StringLeft($strPath, 3) = "..\" Then
$strPath = @ScriptDir & "\" & $strPath
EndIf
;*** Ersetzt evtl. vorhandene Environment-Variable
;*** Test auf _2_ vorhandene %-Zeichen
$intBeginEnv = StringInStr($strPath, "%", 2, 1)
$intEndEnv = StringInStr($strPath, "%", 2, 2)
If $intEndEnv > $intBeginEnv Then
;*** Variable isolieren und ersetzen
$intLen = $intEndEnv - $intBeginEnv - 1
$strEnv = StringMid($strPath, $intBeginEnv + 1, $intLen)
If EnvGet($strEnv) > "" Then
$strPath = StringReplace($strPath, "%" & $strEnv & "%", EnvGet($strEnv))
EndIf
EndIf
Return $strPath
EndFunc
Code: Select all
[FRA]
DateFormat=DD/MM/YYYY
TimeFormat=hh:mm:ss
GUICtrlAddWidth=30
1=SetFolderDate V1.4
2=Modifier la date et l'heure
3=avec le fichier le plus récent
4=avec le fichier le plus ancien
5=vérication récursive
6=Certains fichiers (nom ou modèle de fichier) :
7=Exp.Rég.
8=avec une date/heure particulière :
9=Courante
10=Dossier/Archive
11=Ancienne date
12=Nouvelle date
13=Nom de fichier
14=Annuler
15=Changer !
16=Aperçu
17=Positionner la date et l'heure de %d dossier(s) et %f fichier(s)
18=
19=Date/heure non valable
20=La date/heure donnée n'est pas valable
21=*** Inchangée
22=*** OK
23=*** Erreur !
24=Fermer
25=Soyez patient, SVP...
26=Pas de fichiers sélectionnés !
27=Pas de dossiers ou archives selectionnés !
28=
29=Examiner seulement les fichiers, qui NE sont PAS specifiés dans l' “IGNORE LIST”
30=Type de date
31=Affichage et
32=changement selon
33=Modification
34=Création
35=Accès
36=*** Le dossier est vide / il ne contient pas de fichiers
37=*** Pas de correspondance
38=*** Exécutable 7z.exe introuvable
39=*** Sauter
40=*** Annuler
41={Pause} = Sauter le dossier / l'archive
42={Échap} = Abandonner l'analyse
43=selon l' “ancienne date” :
44=recursivement
45=Construction de l'arbre du dossier...
46=avec le nom du fichier
47=avec les metadonnées du fichier (images/vidéos)
48=avec les metadonnées du fichier (documents Office)
49=*** Exécutable ExifTool.exe introuvable
50=si non correspondance, alors ignorer le nom/modèle
I guess it's on purpose. Otherwise it would colide with the MM for month.Is there a error in the word : YYYYMMDD_hhnnss
I don't read the german.van Dusen wrote:Hi menet,Icfu was so kind to host my scripts. He offers to update them, when I send him new versions. I'll contact Icfu and will ask him to make SetFolderDate_1.3.1 available on his webspace.menet wrote:[...] What about proposing your tool in TOTALCMD.NET ? [...]
Regards, van Dusen
The three topmost icons (folder, brown packet, grey packet) can be clicked on:sqa_wizard wrote:What are the icons with checkmarks (folder + gray/brown "window frame") used for ?
Right, INI-key "ScanAtStartup" is set to "0" by default until you set it to "1" in SetFolderDate.ini. With "ScanAtStartup=1" files are scanned at startup (I noticed, that the options for "newest/oldest date" are not set to disabled state, when "SetDateTo" is set to 5, 6 or 7 at startup... I will fix this in the next version)sqa_wizard wrote:at startup, it shows up with default settings and does NOT scan any files with this settings
You can set the INI-key "RescanOnExecute" to "1" to force a scan, when you click the "OK" button ("RescanOnExecute=0" is the default). With "RescanOnExecute=1" a scan is performed, even if the options kept unchanged since last scan. It would be smarter, if SetFolderDate could decide itself, whether the options has been changed or not since last update of the listview. I will try to change SetFolderDate in this regard.sqa_wizard wrote:may you could disable the "Execute" button on startup until a scan is done
Thank's a lot!petermad wrote:New Danish translation can be downloaded at [...]
You can get ExifTool here: http://www.sno.phy.queensu.ca/~phil/exiftool/petermad wrote:Where can we get the ExifTool?
Thank's a bunch!menet wrote:Here is the updated French translation for 1.4 version of SetFolderDate tool
These tag names must not translated, because they are passed as parameter to ExifTool. Tables, which give the names of all tags recognized by ExifTool, can be found heremenet wrote:Why the "Tag: DateTimeOriginal and ModifyDate" words are not translated ?
As petermad already wrote, it's intentionally: "n" is the correct placeholder for minutes in the value of INI-key "TimestampInFilenameFormat". I grant you, that it is a bit inconsequent, because "m" must be used for values of INI-key "TimeFormat".menet wrote:Is there a error in the word : YYYYMMDD_hhnnss ? I suppose that it should be mm for the minutes.
No news, sorry!menet wrote:Do you have news about SetFolderDate put under TOTALCMD.NET or/and TotalCMD site ?