Actions
Feature proposal #5267
closedImplement provider specific language keys
Description
Language keys are currently generic and shared (e.g. SIGN_UP_WITH_PROVIDER), but should also have a provider specific key. Example as follows.
SIGN_UP_WITH_PROVIDER SIGN_UP_WITH_FACEBOOK
SIGN_UP_WITH_PROVIDER SIGN_UP_WITH_TWITTER
Updated by krileon almost 9 years ago
- Status changed from Assigned to Resolved
- % Done changed from 0 to 100
All language keys with PROVIDER can be more specifically specified replacing PROVIDER with the provider id. Examples as follows.
Generic: PROVIDER_NOT_AVAILABLE
Specific: FACEBOOK_NOT_AVAILABLE
Generic: VIEW_PROVIDER_PROFILE
Specific: VIEW_FACEBOOK_PROFILE
Generic: SIGN_UP_WITH_PROVIDER
Specific: SIGN_UP_WITH_FACEBOOK
Language files will always be parsed with the generic key. Specific keys must be manually specified.
Actions