mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-07 15:06:44 +00:00
Updated folder name scores
This commit is contained in:
parent
62b7036ed3
commit
3df3df39bf
1 changed files with 3 additions and 2 deletions
|
@ -187,8 +187,8 @@ public class EntityFolder extends EntityOrder implements Serializable {
|
|||
|
||||
private static Map<String, TypeScore> GUESS_FOLDER_TYPE = new HashMap<String, TypeScore>() {{
|
||||
// Contains:
|
||||
put("all", new TypeScore(EntityFolder.ARCHIVE, 50));
|
||||
put("Tous", new TypeScore(EntityFolder.ARCHIVE, 50));
|
||||
//put("all", new TypeScore(EntityFolder.ARCHIVE, 50));
|
||||
//put("Tous", new TypeScore(EntityFolder.ARCHIVE, 50));
|
||||
put("Archiv", new TypeScore(EntityFolder.ARCHIVE, 100)); // German
|
||||
put("archive", new TypeScore(EntityFolder.ARCHIVE, 100));
|
||||
put("archief", new TypeScore(EntityFolder.ARCHIVE, 100)); // Dutch
|
||||
|
@ -204,6 +204,7 @@ public class EntityFolder extends EntityOrder implements Serializable {
|
|||
put("Szkice lokalne", new TypeScore(EntityFolder.DRAFTS, 100)); // Polish
|
||||
|
||||
put("trash", new TypeScore(EntityFolder.TRASH, 100));
|
||||
put("Deleted", new TypeScore(EntityFolder.TRASH, 100));
|
||||
//put("Bin", new TypeScore(EntityFolder.TRASH, 50));
|
||||
put("Papierkorb", new TypeScore(EntityFolder.TRASH, 100));
|
||||
put("corbeille", new TypeScore(EntityFolder.TRASH, 100));
|
||||
|
|
Loading…
Reference in a new issue