From 33b4ed44decafad0838606f4c374f085cb208cbe Mon Sep 17 00:00:00 2001 From: PearsonFlyer Date: Thu, 1 Jul 2021 19:55:31 -0400 Subject: [PATCH] Fixed: Corrected Naming Examples --- .../MediaManagement/Naming/NamingModal.js | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/frontend/src/Settings/MediaManagement/Naming/NamingModal.js b/frontend/src/Settings/MediaManagement/Naming/NamingModal.js index 85d9493cf..3ebe1da5d 100644 --- a/frontend/src/Settings/MediaManagement/Naming/NamingModal.js +++ b/frontend/src/Settings/MediaManagement/Naming/NamingModal.js @@ -47,11 +47,11 @@ const fileNameTokens = [ ]; const authorTokens = [ - { token: '{Author Name}', example: 'Author Name' }, + { token: '{Author Name}', example: 'Author\'s Name' }, - { token: '{Author NameThe}', example: 'Author Name, The' }, + { token: '{Author NameThe}', example: 'Author\'s Name, The' }, - { token: '{Author CleanName}', example: 'Author Name' }, + { token: '{Author CleanName}', example: 'Authors Name' }, { token: '{Author SortName}', example: 'Name, Author' }, @@ -59,17 +59,17 @@ const authorTokens = [ ]; const bookTokens = [ - { token: '{Book Title}', example: 'Book Title!: Subtitle!' }, + { token: '{Book Title}', example: 'The Book\'s Title!: Subtitle!' }, - { token: '{Book TitleThe}', example: 'Book Title!, The: Subtitle!' }, + { token: '{Book TitleThe}', example: 'Book\'s Title!, The: Subtitle!' }, - { token: '{Book CleanTitle}', example: 'Book Title: Subtitle' }, + { token: '{Book CleanTitle}', example: 'The Books Title!: Subtitle' }, - { token: '{Book TitleNoSub}', example: 'Book Title!' }, + { token: '{Book TitleNoSub}', example: 'The Book\'s Title!' }, - { token: '{Book TitleTheNoSub}', example: 'Book Title!, The' }, + { token: '{Book TitleTheNoSub}', example: 'Book\'s Title!, The' }, - { token: '{Book CleanTitleNoSub}', example: 'Book Title' }, + { token: '{Book CleanTitleNoSub}', example: 'The Books Title!' }, { token: '{Book Subtitle}', example: 'Subtitle!' },