Laravel Google Translate Package

  Рет қаралды 22,633

Bitfumes

Bitfumes

Күн бұрын

A #laravel #package for #translate any language by using google translate
Package Useful Links:
Laravel News Post: laravel-news.com/laravel-goog...
Github Repo: github.com/Stichoza/google-tr...
======================= Ad Free Tutorials ======================
Check bitfumes.com For ads-free and more advanced courses (use Coupon code WELCOME60 to get 60% discount)
==================FOLLOW ME ==================
Subscribe for New Releases!
Twitter - / bitfumes
Facebook - / bitfumes
Instagram - / bitfumes
(ask me questions!)
-- QUESTIONS? --
Leave a comment below and I or someone else can help you.
For quick questions you may also want to ask me on Twitter, I respond almost immediately.
Email me support@bitfumes.com
Thanks for all your support!

Пікірлер: 75
@ProgrammingwithPeter
@ProgrammingwithPeter 4 жыл бұрын
Nice, first time I searched for something like this, didn't exist, nice that there is one now!
@Bitfumes
@Bitfumes 4 жыл бұрын
yeahhh
@user-sz3vo7zw9s
@user-sz3vo7zw9s 2 жыл бұрын
Hi great teacher, I always enjoy your high quality lovely coding with very clear pronunciation.
@SaifulIslam-dn3tj
@SaifulIslam-dn3tj 3 жыл бұрын
helpful to me. Thank you, Sir.
@lorcas6831
@lorcas6831 3 жыл бұрын
Thanks very great tutorial. May I know if this can be use for translating pdf in laravel? thanks in advance
@testedev5584
@testedev5584 3 жыл бұрын
Could i make the text be a variable? something that the user types
@jayantsingh5204
@jayantsingh5204 4 жыл бұрын
What we will if want to convert whole website with few drop-down clivk.
@motivational-quotes-0rk
@motivational-quotes-0rk 4 жыл бұрын
Sooo cool pacage sir ,
@Bitfumes
@Bitfumes 4 жыл бұрын
Exactly. awesome package
@awarpulldozer8228
@awarpulldozer8228 4 жыл бұрын
thanks a lot its very useful
@Bitfumes
@Bitfumes 4 жыл бұрын
Thanks for your love and support, keep learning. Follow bitfumes on twitter.com/bitfumes or facebook.com/Bitfumes to get the latest updates. bitfumes.com
@vellvj489
@vellvj489 4 жыл бұрын
Must specify word to be translated? Cannot detect it automatically?
@rajdeepdabhi8160
@rajdeepdabhi8160 3 жыл бұрын
Hello plz help me some time work compelte but getting this Data cannot be decoded or it is deeper than the recursion limit
@rosenblat_ivan
@rosenblat_ivan 4 жыл бұрын
Oooh! God bless you!
@Bitfumes
@Bitfumes 4 жыл бұрын
Thanks for your love and support, keep learning. Follow bitfumes on twitter.com/bitfumes or facebook.com/Bitfumes to get the latest updates. bitfumes.com
@plusSilver
@plusSilver 4 жыл бұрын
It's awesome
@Bitfumes
@Bitfumes 4 жыл бұрын
Yeahh it is
@ankitasawarkar3877
@ankitasawarkar3877 3 жыл бұрын
I want jar, package for offline language translator in java? Can you help me?
@afrarshaikh1888
@afrarshaikh1888 2 жыл бұрын
what if i want this in blade directly?
@click4rajesh823
@click4rajesh823 4 жыл бұрын
Great🙏
@Bitfumes
@Bitfumes 4 жыл бұрын
Yeahhh
@tanujkumar2488
@tanujkumar2488 3 жыл бұрын
Can we translate whole website with this package sir ?
@mix5497
@mix5497 11 ай бұрын
Sir but if I want translate whole website its slow my page load time
@hemalatavishnumahajan3706
@hemalatavishnumahajan3706 4 жыл бұрын
Thanks..
@surendraojha3258
@surendraojha3258 3 жыл бұрын
i want to translate whole website , is there any sort way to translate entire website at once?
@geneartista9714
@geneartista9714 3 жыл бұрын
Great explanation, but can this package translate multiple language at once ? like Tagalog and English, what's its downside :)
@keyur-vamja-it
@keyur-vamja-it 4 жыл бұрын
Hello sir 👋 u know about any package for multiple languages like English language and gujrati for example only.in Google translate it will not give expect answer so I want in gujrati lang I wood add those data in my side
@mohdhasanchishti4672
@mohdhasanchishti4672 2 жыл бұрын
If I want to translate the whole page using this api, how can I translate??
@prasanths5025
@prasanths5025 3 жыл бұрын
how to use view pages
@sufeemymon
@sufeemymon Жыл бұрын
want to change over all page just choose language how can do not individually words cause how much we can change individually words , while want change over all page on select different language how can do that's let me know plz thanks
@icrmsoftware59
@icrmsoftware59 4 жыл бұрын
Good Job... Please make some more videos on interesting packages
@Bitfumes
@Bitfumes 4 жыл бұрын
Yeahhh sure, please suggest your favourite laravel packages
@sportsxone5969
@sportsxone5969 4 жыл бұрын
@@Bitfumes Cashier(stripe)
@surendraojha3258
@surendraojha3258 3 жыл бұрын
it is makes my site too much slow what to do??
@md.mazharulislam1586
@md.mazharulislam1586 3 жыл бұрын
@Bitfumes .. I use this package for laravel for translating values coming from the database. But what I see is this package is making the website load slower. How can I resolve that please make a video on that. PLEASE
@renasgh-besri6256
@renasgh-besri6256 Жыл бұрын
u are still use this package ?
@bariqdharmawan6604
@bariqdharmawan6604 4 жыл бұрын
So when we wanna translate something dynamic record, we can use something like this? $data = Model::all(); GoogleTranslate::($data, 'en');
@randomguy5922
@randomguy5922 4 жыл бұрын
$data will give you an object which you cant pass directly, instead first loop each $data object by foreach() then use pass $data->column_name (string type or text type columns preferably ). foreach($data as $row){ echo GoogleTranslate::($row->name, 'en'); }
@mdriponshake3453
@mdriponshake3453 3 жыл бұрын
@@randomguy5922 Can you give a dynamic source code with using GoogleTranslate?
@subratasaha777
@subratasaha777 3 жыл бұрын
Good.. Can you tell me how to change whole front end page by choosing only the language from the drop down button to which i want to translate. Means how to implement multilingual support by laravel 5.8
@mianasim6673
@mianasim6673 3 жыл бұрын
if you done this thing please answer me
@fauzisafina1827
@fauzisafina1827 10 ай бұрын
i have try this package and implement to entire page but the website becomes very slow
@rezwansaki
@rezwansaki 4 жыл бұрын
How can I delete a package later when it is no longer needed? please make a tutorial about it.
@automaton2863
@automaton2863 4 жыл бұрын
I would be most happy if you do a course on this package
@Bitfumes
@Bitfumes 4 жыл бұрын
Course means ? can you elaborate.
@automaton2863
@automaton2863 4 жыл бұрын
@@Bitfumes I just want you to do a small a small project course on Laravel translate
@rahim3070
@rahim3070 2 жыл бұрын
What about the whole project / application ? Not a specific word. Please create a demo for a whole application to translate.
@shaidulislam2424
@shaidulislam2424 4 жыл бұрын
So, how can I translate the whole page with this package in laravel??
@mitulpatel9590
@mitulpatel9590 3 жыл бұрын
Hy , you got any solution for that ,, i need a same situation
@maksymdudyk1718
@maksymdudyk1718 3 жыл бұрын
For a small remuneration, I could build a widget that does it for you.
@andrewaghoghovwia1948
@andrewaghoghovwia1948 4 жыл бұрын
How can this be used in a complete project
@Bitfumes
@Bitfumes 4 жыл бұрын
whenever you want any functionality for user to translate some word or paragraph
@danhdat9277
@danhdat9277 2 жыл бұрын
Excuse me ! Let me ask this is free for use or not free ???
@agungmartono1214
@agungmartono1214 4 жыл бұрын
Sir, how to simole console php artisan serve to pas ?
@skpao08
@skpao08 4 жыл бұрын
You should make an alias for that command 😉😉😉
@Bitfumes
@Bitfumes 4 жыл бұрын
check this gist for all my alias and settings gist.github.com/sarthaksavvy
@HelalUddin-ot5uy
@HelalUddin-ot5uy 4 жыл бұрын
Show live project usage Multiple language.
@atduongtuan7425
@atduongtuan7425 2 жыл бұрын
Can you fix 429 error ? :
@nurhossainsakil9904
@nurhossainsakil9904 3 жыл бұрын
Thanks for making such a great tutorial. And request to explain how can I translate whole website or whole page in laravel.
@numansiddique4326
@numansiddique4326 3 жыл бұрын
use this code bro {{ Stichoza\GoogleTranslate\GoogleTranslate::trans($menu_page->page_name, App::getLocale())}}
@kuldippatil2006
@kuldippatil2006 2 жыл бұрын
@@numansiddique4326 where to use this code?
@raziburrahman8891
@raziburrahman8891 3 жыл бұрын
Make a Detail video on Translate full website by google translate and how to use it for all views
@ankitasawarkar3877
@ankitasawarkar3877 3 жыл бұрын
Is it work offline or without internet connection????
@Bitfumes
@Bitfumes 3 жыл бұрын
No, it is calling google api so you need connection
@SpaceCoding
@SpaceCoding 4 жыл бұрын
Hiii)
@mmejazhanif
@mmejazhanif 4 жыл бұрын
by using this package, after some time googled my IP address, how can we fix this issue?
@alexios4392
@alexios4392 4 жыл бұрын
Why you don't use official package from Google? github.com/googleapis/google-cloud-php-translate
@Bitfumes
@Bitfumes 4 жыл бұрын
Because this package provide laravel friendly behaviour
@cletuskingdom
@cletuskingdom 2 жыл бұрын
Translate the whole page nah, that's what I want
@JohnnyBigodes
@JohnnyBigodes 4 жыл бұрын
To be fair... Dont use this in production at all... Google translation is horrible.
Laravel Translations: Store in PHP or JSON Files?
7:34
Laravel Daily
Рет қаралды 19 М.
Clown takes blame for missing candy 🍬🤣 #shorts
00:49
Yoeslan
Рет қаралды 45 МЛН
Эффект Карбонаро и нестандартная коробка
01:00
История одного вокалиста
Рет қаралды 10 МЛН
A teacher captured the cutest moment at the nursery #shorts
00:33
Fabiosa Stories
Рет қаралды 51 МЛН
Laravel Translation to any Language easy from UI
10:24
Tony Xhepa
Рет қаралды 2,6 М.
1. Laravel Query builder - Search Made Easy @freekspatie
11:13
The Tools I Use to Build Products in Laravel
19:00
Josh Cirre
Рет қаралды 20 М.
Laravel Language Switcher
27:58
Andre Madarang
Рет қаралды 87 М.
The Story of Next.js
12:13
uidotdev
Рет қаралды 559 М.
1 Laravel Activity Log By Team Spatie - Intro and Setup
10:42
Advanced Laravel | Why and How Use Laravel Queue #15
17:30
Bitfumes
Рет қаралды 92 М.
Laravel: BelongsTo vs Polymorphic? Let's Test!
14:09
Laravel Daily
Рет қаралды 26 М.
Clown takes blame for missing candy 🍬🤣 #shorts
00:49
Yoeslan
Рет қаралды 45 МЛН