diff --git a/Sources/App/Classes/Preferences/Themes/TPCTheme.m b/Sources/App/Classes/Preferences/Themes/TPCTheme.m index a9b5e4030..ba3334b74 100755 --- a/Sources/App/Classes/Preferences/Themes/TPCTheme.m +++ b/Sources/App/Classes/Preferences/Themes/TPCTheme.m @@ -1347,7 +1347,7 @@ DESIGNATED_INITIALIZER_EXCEPTION_BODY_END if (storeKey == nil) { if ( resultError) { - *resultError = @"Empty key-value store name in styleSettings.plist — Set the key \"Key-value Store Name\" in styleSettings.plist as a string. The current style name is the recommended value."; + *resultError = @"Empty key-value store name in settings.plist — Set the key \"Key-value Store Name\" in settings.plist as a string. The current style name is the recommended value."; } return nil; @@ -1376,7 +1376,7 @@ DESIGNATED_INITIALIZER_EXCEPTION_BODY_END if (storeKey == nil) { if (resultError) { - *resultError = @"Empty key-value store name in styleSettings.plist — Set the key \"Key-value Store Name\" in styleSettings.plist as a string. The current style name is the recommended value."; + *resultError = @"Empty key-value store name in settings.plist — Set the key \"Key-value Store Name\" in settings.plist as a string. The current style name is the recommended value."; } return NO; diff --git a/Sources/App/Resources/Styling/JavaScript/API/core.js b/Sources/App/Resources/Styling/JavaScript/API/core.js index 4ff695389..f184cd7fc 100755 --- a/Sources/App/Resources/Styling/JavaScript/API/core.js +++ b/Sources/App/Resources/Styling/JavaScript/API/core.js @@ -107,8 +107,8 @@ Textual.viewBodyDidLoad = function() {}; /* Textual.appearanceDidChange() can be used to observe changes to the appearance. */ // app.appearance(callbackFunction); -/* A boolean entry named "Post Textual.appearanceDidChange() Notifications" must be - added to the styleSettings.plist file in order to enable use of this callback. */ +/* A boolean entry named "Post Textual.appearanceDidChange() Notifications" must + be added to the settings.plist file in order to enable use of this callback. */ Textual.appearanceDidChange = function(changedTo) {}; /* *********************************************************************** */ @@ -136,7 +136,7 @@ Textual.appearanceDidChange = function(changedTo) {}; */ /* A boolean entry named "Post Textual.handleEvent() Notifications" must be - added to the styleSettings.plist file in order to enable use of this callback. */ + added to the settings.plist file in order to enable use of this callback. */ Textual.handleEvent = function(eventToken) {}; /* *********************************************************************** */ @@ -269,7 +269,7 @@ Textual.handleEvent = function(eventToken) {}; - Enabling: A string entry named "Key-value Store Name" must be added to the - styleSettings.plist file in order to enable use of this feature. + settings.plist file in order to enable use of this feature. The value of this entry is the name to save the store under. @@ -292,8 +292,8 @@ Textual.styleSettingDidChange = function(changedKey) {}; /* Textual Preferences */ /* *********************************************************************** */ -/* A boolean entry named "Post Textual.preferencesDidChange() Notifications" must be - added to the styleSettings.plist file in order to enable use of this callback. */ +/* A boolean entry named "Post Textual.preferencesDidChange() Notifications" must + be added to the settings.plist file in order to enable use of this callback. */ /* This callback is rate-limit at one call per-second, per-view. */ /* This callback exists for extremely specific use cases. In general, if you need something that doesn't exist above, then it's better to ask for it to be added