Do not use for questions about the OpenGL Architecture Review Board or ARB OpenGL extensions. Use only for Application Resource Bundle
Questions tagged [arb]
22 questions
0
votes
0 answers
Why isn't my executable file created by a C program using the arblib library working?
I installed the arblib library using vcpkg and trying to run a simple program from their website (https://arblib.org/setup.html):
#include "arb.h"
int main()
{
arb_t x;
arb_init(x);
arb_const_pi(x, 50 * 3.33);
arb_printn(x, 50, 0);…

Emma Anderson
- 21
- 2
0
votes
1 answer
Style .arb files in android studio
I'm starting to work with .arb files in Android Studio and I find them quite difficult to read as only plain text.
Is there any way to color or format the structures more readeable?
no style code for .arb
I tried to find some information, seems…
0
votes
2 answers
If statement in .arb files
I have a problem with my mobile application.
I developed my application with flutter and implemented Flutter Internationalization. After creating files with .arb extension I wanted to be able to choose the file by platform ( IOS or Android ) as well…

Sbocco
- 1
- 1
0
votes
1 answer
Flutter localisation method not generating correctly with plural placeholder
I'm currently localizing my flutter app using the intl package.
I have a localised text that contains two placeholders: userName and dayCount, where I have used the plural syntax for dayCount.
Here is the snippet from my .arb file:
…

Tonnanto
- 15
- 5
0
votes
1 answer
Flutter localization with dynamic strings in json files
Flutter localization: Can we directly replace some regex pattern in string to get dynamic string using json language files instead of using .arb files to avoid so many overheads of using .arb? Is there any limitation in this approach of direct…

TechHelper
- 822
- 10
- 24
0
votes
1 answer
active_admin_form_for doesn't recognise model's attributes in form
I have a form like this:
revoke.html.arb
active_admin_form_for resource, url: revoke_active_admin_payment_subscription_path(resource) do |f|
f.inputs do
f.input :suspended_at, as: :datepicker, datepicker_options: { max_date: Date.today.iso8601…

Mirror318
- 11,875
- 14
- 64
- 106
0
votes
1 answer
How to use google Application Resource Bundle for internationalize
I am developing a web application containing static pages. I want to i18n those static pages.
I would like to use google arb files to achieve this.
I tried example given in here
I am getting error saying arb is not defined. Any idea what could be…

user3153189
- 65
- 9