Translate()
The Translate() method is used to create translation keys which can then be translated using the Translations interface.
So if you have some static text…
HTML
<div>File name</div>
You can use the Translate()-method to create a key and a default value if the key is not translated.
RAZOR
<div>@Translate("File name", "Default value")</div>