1
0
Fork 0
mirror of synced 2024-07-01 04:30:59 +12:00

fix: syntax error in hi.locale.php

This commit is contained in:
Christy Jacob 2019-10-01 23:15:01 +05:30
parent 13fdc70e3e
commit 69b229c79b
2 changed files with 4 additions and 7 deletions

View file

@ -9,7 +9,7 @@ return [
'AI' => 'संयुक्त अरब अमीरात', 'AI' => 'संयुक्त अरब अमीरात',
'AR' => 'अर्जेंटीना', 'AR' => 'अर्जेंटीना',
'AM' => 'आर्मेनिया', 'AM' => 'आर्मेनिया',
'AG' => 'एंटीगुआ और बारबुडा' 'AG' => 'एंटीगुआ और बारबुडा',
'AU' => 'ऑस्ट्रेलिया', 'AU' => 'ऑस्ट्रेलिया',
'AT' => 'ऑस्ट्रिया', 'AT' => 'ऑस्ट्रिया',
'AZ' => 'अजरबैजान', 'AZ' => 'अजरबैजान',
@ -17,7 +17,7 @@ return [
'BI' => 'बुरुंडी', 'BI' => 'बुरुंडी',
'BE' => 'बेल्जियम', 'BE' => 'बेल्जियम',
'BJ' => 'बेनिन', 'BJ' => 'बेनिन',
'BF' => 'बुर्किना फ़ासो' 'BF' => 'बुर्किना फ़ासो',
'BD' => 'बांग्लादेश', 'BD' => 'बांग्लादेश',
'BG' => 'बुल्गारिया', 'BG' => 'बुल्गारिया',
'BH' => 'बहरीन', 'BH' => 'बहरीन',
@ -71,12 +71,12 @@ return [
'GN' => 'गिनी', 'GN' => 'गिनी',
'GM' => 'गाम्बिया', 'GM' => 'गाम्बिया',
'GW' => 'गिनी-बिसाऊ', 'GW' => 'गिनी-बिसाऊ',
'GQ' => 'इक्वेटोरियल गिनी' 'GQ' => 'इक्वेटोरियल गिनी',
'GR' => 'ग्रीस', 'GR' => 'ग्रीस',
'GD' => 'ग्रेनाडा', 'GD' => 'ग्रेनाडा',
'GT' => 'ग्वाटेमाला', 'GT' => 'ग्वाटेमाला',
'GY' => 'गुयाना', 'GY' => 'गुयाना',
'HN' => 'होंडुरास' 'HN' => 'होंडुरास',
'HR' => 'क्रोएशिया', 'HR' => 'क्रोएशिया',
'HT' => 'हैती', 'HT' => 'हैती',
'HU' => 'हंगरी', 'HU' => 'हंगरी',

View file

@ -123,9 +123,6 @@ class Bitbucket extends OAuth
$email = $this->request('GET', 'https://api.bitbucket.org/2.0/user/emails?access_token='.urlencode($accessToken)); $email = $this->request('GET', 'https://api.bitbucket.org/2.0/user/emails?access_token='.urlencode($accessToken));
$this->user['email'] = json_decode($email, true)['values'][0]['email']; $this->user['email'] = json_decode($email, true)['values'][0]['email'];
// var_dump($user);
// exit();
} }
return $this->user; return $this->user;
} }