{"id":832,"date":"2023-11-05T13:03:00","date_gmt":"2023-11-05T10:03:00","guid":{"rendered":"https:\/\/mryed.com\/?p=832"},"modified":"2023-11-05T13:03:02","modified_gmt":"2023-11-05T10:03:02","slug":"powerapps-cok-dilli-uygulama","status":"publish","type":"post","link":"https:\/\/mryed.com\/en\/yazilim\/kodlama\/power-platform\/powerapps-cok-dilli-uygulama\/","title":{"rendered":"How to Make Microsoft PowerApps Multilingual Application?"},"content":{"rendered":"<p>There are many different methods for Powerapps multilingual application. But today I'm going to write about my preferred method where we have full control. <\/p>\n\n\n\n<!--more-->\n\n\n\n<h2 class=\"wp-block-heading\">PowerApps Multilingual Application<\/h2>\n\n\n\n<p>First, let's come to the editing screen of the application we opened in <em><a href=\"https:\/\/mryed.com\/en\/yazilim\/kodlama\/power-platform\/sharepoint-permissions-windows\/\">PowerApps<\/a><\/em> You will see screens and components in the tree view area. We add a new component by entering the components. I added it and named it \"MultiLanguage\". Then we come to the properties of the component we added and add a new custom property. This field is just like the parameters of a function in hard coding languages. Thanks to this field, we can select the parameters coming to the component and the data that the component will return. <\/p>\n\n\n\n<p>In the image below, I added a parameter called \"SelectLanguage\". Our component will receive a language selection from the user. It will send data according to this language selection.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"471\" src=\"https:\/\/mryed.com\/wp-content\/uploads\/2023\/11\/powerapps-coklu-dil-uygulama-1024x471.png\" alt=\"\" class=\"wp-image-837\" srcset=\"https:\/\/mryed.com\/wp-content\/uploads\/2023\/11\/powerapps-coklu-dil-uygulama-1024x471.png 1024w, https:\/\/mryed.com\/wp-content\/uploads\/2023\/11\/powerapps-coklu-dil-uygulama-300x138.png 300w, https:\/\/mryed.com\/wp-content\/uploads\/2023\/11\/powerapps-coklu-dil-uygulama-768x353.png 768w, https:\/\/mryed.com\/wp-content\/uploads\/2023\/11\/powerapps-coklu-dil-uygulama-1536x707.png 1536w, https:\/\/mryed.com\/wp-content\/uploads\/2023\/11\/powerapps-coklu-dil-uygulama-18x8.png 18w, https:\/\/mryed.com\/wp-content\/uploads\/2023\/11\/powerapps-coklu-dil-uygulama-811x372.png 811w, https:\/\/mryed.com\/wp-content\/uploads\/2023\/11\/powerapps-coklu-dil-uygulama.png 1893w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n<\/div>\n\n\n<p>Now let's set what data our component will send. We create a data called \"Datas\" that we will return.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"433\" src=\"https:\/\/mryed.com\/wp-content\/uploads\/2023\/11\/coklu-dil-app-powerapps-1024x433.png\" alt=\"\" class=\"wp-image-838\" srcset=\"https:\/\/mryed.com\/wp-content\/uploads\/2023\/11\/coklu-dil-app-powerapps-1024x433.png 1024w, https:\/\/mryed.com\/wp-content\/uploads\/2023\/11\/coklu-dil-app-powerapps-300x127.png 300w, https:\/\/mryed.com\/wp-content\/uploads\/2023\/11\/coklu-dil-app-powerapps-768x324.png 768w, https:\/\/mryed.com\/wp-content\/uploads\/2023\/11\/coklu-dil-app-powerapps-1536x649.png 1536w, https:\/\/mryed.com\/wp-content\/uploads\/2023\/11\/coklu-dil-app-powerapps-18x8.png 18w, https:\/\/mryed.com\/wp-content\/uploads\/2023\/11\/coklu-dil-app-powerapps.png 1910w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n<\/div>\n\n\n<p>Our component is almost ready. Now let's move to the coding side. We write the following code in the \"OnReset\" field of the component named \"MultiLanguage\" that we added before.<br><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Set(\n    varTranslations,\n    Table(\n        {\n            SelectLanguage: \"tr-tr\",\n            Datas: {\n                UserName: \"\u0130sim\",\n                UserLastName: \"Soyisim\",\n                Company: \"\u015eirket\"\n            }\n        },\n        {\n            SelectLanguage: \"en-us\",\n            Datas: {\n                UserName: \"Name\",\n                UserLastName: \"Surname\",\n                Company: \"Company\"\n            }\n        }\n    )\n)<\/code><\/pre>\n\n\n\n<p>This code will check whether the variable coming from the user is \"tr-tr\" or \"en-us\". I have 3 different yields, UserName, UserLastName and Company. You can increase this. Also, if you want to add a different language, you can add it in the same way.<\/p>\n\n\n\n<p>Now the component we added again will have a function called \"SelectLanguage\". We write the following code to it. This \"varLanguage\" will be the variable that our user will change.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>varLanguage<\/code><\/pre>\n\n\n\n<p>Finally, we write the following code in the \"Datas\" function of my component.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>LookUp(\n    varTranslations,\n    SelectLanguage = Self.SelectLanguage\n).Datas<\/code><\/pre>\n\n\n\n<p>Now the component part is done. We can move to the screen of our application. <\/p>\n\n\n\n<p>I added a \"toggle\" where the user can select the language. You can also do this with a button or dropdown. If the user activates the toggle, it will be \"en-tr\". If not, it will be \"en-us\".<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Set(varLanguage,\"tr-tr\")<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>Set(varLanguage,\"en-us\")<\/code><\/pre>\n\n\n\n<p>Then we add our component (MultiLanguage) that we created from the insertion field above to the page. Now we can pull our data by adding 3 text fields.<\/p>\n\n\n\n<figure class=\"wp-block-video\"><video height=\"1080\" style=\"aspect-ratio: 1920 \/ 1080;\" width=\"1920\" autoplay controls loop muted src=\"https:\/\/mryed.com\/wp-content\/uploads\/2023\/11\/powerapps-dil-secenegi-app.mp4\"><\/video><\/figure>\n\n\n\n<p>As you can see in the video, our text fields change according to the selection. I wrote the following codes in our text fields respectively.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>MultiLanguage_1.Datas.UserName<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>MultiLanguage_1.Datas.UserLastName<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>MultiLanguage_1.Datas.Company<\/code><\/pre>\n\n\n\n<p>Now our application is ready. Apart from this method, there are other methods that you can translate automatically with the API. However, since I have full control over this method, I generally prefer this method.<\/p>\n\n\n\n<p>See you in the next article...<\/p>","protected":false},"excerpt":{"rendered":"<p>There are many different methods for Powerapps multilingual application. But today I'm going to write about my preferred method where we have full control.<\/p>","protected":false},"author":1,"featured_media":846,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[23,83,11],"tags":[92],"class_list":["post-832","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-kodlama","category-power-platform","category-yazilim","tag-powerapps-dil-secenegi"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Microsoft PowerApps \u00c7ok Dilli Uygulama Nas\u0131l Yap\u0131l\u0131r? - Yunus Emre<\/title>\n<meta name=\"description\" content=\"Microsoft powerapps \u00e7ok dilli uygulama i\u00e7in kulland\u0131\u011f\u0131m bile\u015fen y\u00f6ntemini detayl\u0131 olarak bu yaz\u0131 i\u00e7eri\u011finde payla\u015ft\u0131m.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/mryed.com\/en\/yazilim\/kodlama\/power-platform\/powerapps-cok-dilli-uygulama\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Microsoft PowerApps \u00c7ok Dilli Uygulama Nas\u0131l Yap\u0131l\u0131r? - Yunus Emre\" \/>\n<meta property=\"og:description\" content=\"Microsoft powerapps \u00e7ok dilli uygulama i\u00e7in kulland\u0131\u011f\u0131m bile\u015fen y\u00f6ntemini detayl\u0131 olarak bu yaz\u0131 i\u00e7eri\u011finde payla\u015ft\u0131m.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/mryed.com\/en\/yazilim\/kodlama\/power-platform\/powerapps-cok-dilli-uygulama\/\" \/>\n<meta property=\"og:site_name\" content=\"Yunus Emre\" \/>\n<meta property=\"article:published_time\" content=\"2023-11-05T10:03:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-11-05T10:03:02+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/mryed.com\/wp-content\/uploads\/2023\/11\/powerapps-bilesen-kullanimi.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"900\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Mr.YED\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Mr.YED\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/power-platform\\\/powerapps-cok-dilli-uygulama\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/power-platform\\\/powerapps-cok-dilli-uygulama\\\/\"},\"author\":{\"name\":\"Mr.YED\",\"@id\":\"https:\\\/\\\/mryed.com\\\/#\\\/schema\\\/person\\\/4bb44b3409df8d51fc489343880ffea1\"},\"headline\":\"Microsoft PowerApps \u00c7ok Dilli Uygulama Nas\u0131l Yap\u0131l\u0131r?\",\"datePublished\":\"2023-11-05T10:03:00+00:00\",\"dateModified\":\"2023-11-05T10:03:02+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/power-platform\\\/powerapps-cok-dilli-uygulama\\\/\"},\"wordCount\":460,\"commentCount\":2,\"publisher\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/#\\\/schema\\\/person\\\/4bb44b3409df8d51fc489343880ffea1\"},\"image\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/power-platform\\\/powerapps-cok-dilli-uygulama\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/mryed.com\\\/wp-content\\\/uploads\\\/2023\\\/11\\\/powerapps-bilesen-kullanimi.jpg\",\"keywords\":[\"powerapps dil se\u00e7ene\u011fi\"],\"articleSection\":[\"Kodlama\",\"Power Platform\",\"Yaz\u0131l\u0131m\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/power-platform\\\/powerapps-cok-dilli-uygulama\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/power-platform\\\/powerapps-cok-dilli-uygulama\\\/\",\"url\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/power-platform\\\/powerapps-cok-dilli-uygulama\\\/\",\"name\":\"Microsoft PowerApps \u00c7ok Dilli Uygulama Nas\u0131l Yap\u0131l\u0131r? - Yunus Emre\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/power-platform\\\/powerapps-cok-dilli-uygulama\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/power-platform\\\/powerapps-cok-dilli-uygulama\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/mryed.com\\\/wp-content\\\/uploads\\\/2023\\\/11\\\/powerapps-bilesen-kullanimi.jpg\",\"datePublished\":\"2023-11-05T10:03:00+00:00\",\"dateModified\":\"2023-11-05T10:03:02+00:00\",\"description\":\"Microsoft powerapps \u00e7ok dilli uygulama i\u00e7in kulland\u0131\u011f\u0131m bile\u015fen y\u00f6ntemini detayl\u0131 olarak bu yaz\u0131 i\u00e7eri\u011finde payla\u015ft\u0131m.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/power-platform\\\/powerapps-cok-dilli-uygulama\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/power-platform\\\/powerapps-cok-dilli-uygulama\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/power-platform\\\/powerapps-cok-dilli-uygulama\\\/#primaryimage\",\"url\":\"https:\\\/\\\/mryed.com\\\/wp-content\\\/uploads\\\/2023\\\/11\\\/powerapps-bilesen-kullanimi.jpg\",\"contentUrl\":\"https:\\\/\\\/mryed.com\\\/wp-content\\\/uploads\\\/2023\\\/11\\\/powerapps-bilesen-kullanimi.jpg\",\"width\":1920,\"height\":900,\"caption\":\"powerapps-use-companent\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/power-platform\\\/powerapps-cok-dilli-uygulama\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Anasayfa\",\"item\":\"https:\\\/\\\/mryed.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Microsoft PowerApps \u00c7ok Dilli Uygulama Nas\u0131l Yap\u0131l\u0131r?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/mryed.com\\\/#website\",\"url\":\"https:\\\/\\\/mryed.com\\\/\",\"name\":\"Yunus Emre\",\"description\":\"Software Engineer\",\"publisher\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/#\\\/schema\\\/person\\\/4bb44b3409df8d51fc489343880ffea1\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/mryed.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/mryed.com\\\/#\\\/schema\\\/person\\\/4bb44b3409df8d51fc489343880ffea1\",\"name\":\"Mr.YED\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/mryed.com\\\/wp-content\\\/uploads\\\/2021\\\/03\\\/yunus-emre-demirel.png\",\"url\":\"https:\\\/\\\/mryed.com\\\/wp-content\\\/uploads\\\/2021\\\/03\\\/yunus-emre-demirel.png\",\"contentUrl\":\"https:\\\/\\\/mryed.com\\\/wp-content\\\/uploads\\\/2021\\\/03\\\/yunus-emre-demirel.png\",\"width\":360,\"height\":360,\"caption\":\"Mr.YED\"},\"logo\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/wp-content\\\/uploads\\\/2021\\\/03\\\/yunus-emre-demirel.png\"},\"description\":\"Mobil, web ve Microsoft tabanl\u0131 uygulamalar geli\u015ftiren bir yaz\u0131l\u0131m m\u00fchendisiyim. Kariyerim boyunca farkl\u0131 sekt\u00f6rlerde edindi\u011fim deneyimlerle \u00f6zellikle Power Platform, Power Apps, Power Automate ve kurumsal s\u00fcre\u00e7 otomasyonu konular\u0131nda uzmanla\u015ft\u0131m. Bu blogda yaz\u0131l\u0131m geli\u015ftirme, otomasyon ve Microsoft teknolojileri \u00fczerine edindi\u011fim tecr\u00fcbeleri payla\u015f\u0131yorum.\",\"sameAs\":[\"http:\\\/\\\/mryed.com\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/yunus-emre-demirel\\\/\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Microsoft PowerApps \u00c7ok Dilli Uygulama Nas\u0131l Yap\u0131l\u0131r? - Yunus Emre","description":"Microsoft powerapps \u00e7ok dilli uygulama i\u00e7in kulland\u0131\u011f\u0131m bile\u015fen y\u00f6ntemini detayl\u0131 olarak bu yaz\u0131 i\u00e7eri\u011finde payla\u015ft\u0131m.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/mryed.com\/en\/yazilim\/kodlama\/power-platform\/powerapps-cok-dilli-uygulama\/","og_locale":"en_US","og_type":"article","og_title":"Microsoft PowerApps \u00c7ok Dilli Uygulama Nas\u0131l Yap\u0131l\u0131r? - Yunus Emre","og_description":"Microsoft powerapps \u00e7ok dilli uygulama i\u00e7in kulland\u0131\u011f\u0131m bile\u015fen y\u00f6ntemini detayl\u0131 olarak bu yaz\u0131 i\u00e7eri\u011finde payla\u015ft\u0131m.","og_url":"https:\/\/mryed.com\/en\/yazilim\/kodlama\/power-platform\/powerapps-cok-dilli-uygulama\/","og_site_name":"Yunus Emre","article_published_time":"2023-11-05T10:03:00+00:00","article_modified_time":"2023-11-05T10:03:02+00:00","og_image":[{"width":1920,"height":900,"url":"https:\/\/mryed.com\/wp-content\/uploads\/2023\/11\/powerapps-bilesen-kullanimi.jpg","type":"image\/jpeg"}],"author":"Mr.YED","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Mr.YED","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/mryed.com\/yazilim\/kodlama\/power-platform\/powerapps-cok-dilli-uygulama\/#article","isPartOf":{"@id":"https:\/\/mryed.com\/yazilim\/kodlama\/power-platform\/powerapps-cok-dilli-uygulama\/"},"author":{"name":"Mr.YED","@id":"https:\/\/mryed.com\/#\/schema\/person\/4bb44b3409df8d51fc489343880ffea1"},"headline":"Microsoft PowerApps \u00c7ok Dilli Uygulama Nas\u0131l Yap\u0131l\u0131r?","datePublished":"2023-11-05T10:03:00+00:00","dateModified":"2023-11-05T10:03:02+00:00","mainEntityOfPage":{"@id":"https:\/\/mryed.com\/yazilim\/kodlama\/power-platform\/powerapps-cok-dilli-uygulama\/"},"wordCount":460,"commentCount":2,"publisher":{"@id":"https:\/\/mryed.com\/#\/schema\/person\/4bb44b3409df8d51fc489343880ffea1"},"image":{"@id":"https:\/\/mryed.com\/yazilim\/kodlama\/power-platform\/powerapps-cok-dilli-uygulama\/#primaryimage"},"thumbnailUrl":"https:\/\/mryed.com\/wp-content\/uploads\/2023\/11\/powerapps-bilesen-kullanimi.jpg","keywords":["powerapps dil se\u00e7ene\u011fi"],"articleSection":["Kodlama","Power Platform","Yaz\u0131l\u0131m"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/mryed.com\/yazilim\/kodlama\/power-platform\/powerapps-cok-dilli-uygulama\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/mryed.com\/yazilim\/kodlama\/power-platform\/powerapps-cok-dilli-uygulama\/","url":"https:\/\/mryed.com\/yazilim\/kodlama\/power-platform\/powerapps-cok-dilli-uygulama\/","name":"Microsoft PowerApps \u00c7ok Dilli Uygulama Nas\u0131l Yap\u0131l\u0131r? - Yunus Emre","isPartOf":{"@id":"https:\/\/mryed.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/mryed.com\/yazilim\/kodlama\/power-platform\/powerapps-cok-dilli-uygulama\/#primaryimage"},"image":{"@id":"https:\/\/mryed.com\/yazilim\/kodlama\/power-platform\/powerapps-cok-dilli-uygulama\/#primaryimage"},"thumbnailUrl":"https:\/\/mryed.com\/wp-content\/uploads\/2023\/11\/powerapps-bilesen-kullanimi.jpg","datePublished":"2023-11-05T10:03:00+00:00","dateModified":"2023-11-05T10:03:02+00:00","description":"Microsoft powerapps \u00e7ok dilli uygulama i\u00e7in kulland\u0131\u011f\u0131m bile\u015fen y\u00f6ntemini detayl\u0131 olarak bu yaz\u0131 i\u00e7eri\u011finde payla\u015ft\u0131m.","breadcrumb":{"@id":"https:\/\/mryed.com\/yazilim\/kodlama\/power-platform\/powerapps-cok-dilli-uygulama\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/mryed.com\/yazilim\/kodlama\/power-platform\/powerapps-cok-dilli-uygulama\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/mryed.com\/yazilim\/kodlama\/power-platform\/powerapps-cok-dilli-uygulama\/#primaryimage","url":"https:\/\/mryed.com\/wp-content\/uploads\/2023\/11\/powerapps-bilesen-kullanimi.jpg","contentUrl":"https:\/\/mryed.com\/wp-content\/uploads\/2023\/11\/powerapps-bilesen-kullanimi.jpg","width":1920,"height":900,"caption":"powerapps-use-companent"},{"@type":"BreadcrumbList","@id":"https:\/\/mryed.com\/yazilim\/kodlama\/power-platform\/powerapps-cok-dilli-uygulama\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Anasayfa","item":"https:\/\/mryed.com\/"},{"@type":"ListItem","position":2,"name":"Microsoft PowerApps \u00c7ok Dilli Uygulama Nas\u0131l Yap\u0131l\u0131r?"}]},{"@type":"WebSite","@id":"https:\/\/mryed.com\/#website","url":"https:\/\/mryed.com\/","name":"Yunus Emre","description":"Software Engineer","publisher":{"@id":"https:\/\/mryed.com\/#\/schema\/person\/4bb44b3409df8d51fc489343880ffea1"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/mryed.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/mryed.com\/#\/schema\/person\/4bb44b3409df8d51fc489343880ffea1","name":"Mr.YED","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/mryed.com\/wp-content\/uploads\/2021\/03\/yunus-emre-demirel.png","url":"https:\/\/mryed.com\/wp-content\/uploads\/2021\/03\/yunus-emre-demirel.png","contentUrl":"https:\/\/mryed.com\/wp-content\/uploads\/2021\/03\/yunus-emre-demirel.png","width":360,"height":360,"caption":"Mr.YED"},"logo":{"@id":"https:\/\/mryed.com\/wp-content\/uploads\/2021\/03\/yunus-emre-demirel.png"},"description":"I am a software engineer who develops mobile, web, and Microsoft-based applications. Throughout my career, I have gained experience in various industries and specialized in Power Platform, Power Apps, Power Automate, and enterprise process automation. In this blog, I share my experiences in software development, automation, and Microsoft technologies.","sameAs":["http:\/\/mryed.com","https:\/\/www.linkedin.com\/in\/yunus-emre-demirel\/"]}]}},"_links":{"self":[{"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/posts\/832","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/comments?post=832"}],"version-history":[{"count":6,"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/posts\/832\/revisions"}],"predecessor-version":[{"id":847,"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/posts\/832\/revisions\/847"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/media\/846"}],"wp:attachment":[{"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/media?parent=832"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/categories?post=832"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/tags?post=832"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}