20
I’ve seen that term fallback used several times. Including framework that I use every day, the Laravel 5, that word appears in a certain configuration:
Example:
/*
|--------------------------------------------------------------------------
| Application Locale Configuration
|--------------------------------------------------------------------------
|
| The application locale determines the default locale that will be used
| by the translation service provider. You are free to set this value
| to any of the locales which will be supported by the application.
|
*/
'locale' => 'pt_br',
/*
|--------------------------------------------------------------------------
| Application Fallback Locale
|--------------------------------------------------------------------------
|
| The fallback locale determines the locale to use when the current one
| is not available. You may change the value to correspond to any of
| the language folders that are provided through your application.
|
*/
'fallback_locale' => 'en',
From what I could understand in the example above, this word fallback is more or less in the sense of: "use this location if the other one is not available".
This is what I could understand by simply analyzing, but I searched the internet and I came to the conclusion that the term could be more comprehensive.
So I’d like to know:
What does term mean fallback in our "world of programming"? It is a standard value if another fails, or goes beyond that?
That word is related to rollback?