localisation to localization

pull/1825/head
Christian Schabesberger 2018-10-22 12:25:50 +02:00
rodzic 988251deb6
commit fa3aebb7b1
1 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -104,13 +104,13 @@ public class Downloader implements org.schabi.newpipe.extractor.Downloader {
* but set the HTTP header field "Accept-Language" to the supplied string.
*
* @param siteUrl the URL of the text file to return the contents of
* @param localisation the language and country (usually a 2-character code) to set
* @param localization the language and country (usually a 2-character code) to set
* @return the contents of the specified text file
*/
@Override
public String download(String siteUrl, Localization localisation) throws IOException, ReCaptchaException {
public String download(String siteUrl, Localization localization) throws IOException, ReCaptchaException {
Map<String, String> requestProperties = new HashMap<>();
requestProperties.put("Accept-Language", localisation.getLanguage());
requestProperties.put("Accept-Language", localization.getLanguage());
return download(siteUrl, requestProperties);
}