1. Translation API for Real-Time Multilingual Support

    Python

    To add real-time multilingual support in an application, one can integrate a translation API that can translate text on-the-fly. The Google Cloud Translation API is a service that provides a simple programmatic interface for translating an arbitrary string into any supported language using state-of-the-art Neural Machine Translation.

    In the context of Pulumi and infrastructure as code, we might set up a Google Cloud project and enable the Translation API for use within that project. Below is a Pulumi program written in Python that creates a dataset for the Google Cloud Translation API, along with a glossary that can be used to customize translations for specific terminology or branding. The dataset and glossary are foundational resources needed to start using the Translation API.

    Let's walk through the steps necessary to create these resources:

    1. Set up the Google Cloud project: You'll need to specify the project where the Translation API will be used.

    2. Enable the Translation API: This can be managed within the cloud console or programmatically using Pulumi to enable the API for your project.

    3. Create a Translation API Dataset: Datasets are used by AutoML models to train translations specific to your domain. They consist of pairs of sentences in the source and target languages.

    4. Create a Translation Glossary: Glossaries are dictionaries of custom translations. You define a set of source-target pairs, and the Translation API will use this glossary whenever the source text contains those phrases.

    The following program will guide you through creating a Translation API Dataset and a Glossary:

    import pulumi import pulumi_google_native.translate as translate # Replace these variables with your project's specific values project_id = 'your-google-cloud-project-id' location = 'us-central1' # Choose the appropriate region for your purposes # Define the dataset for translations dataset = translate.v3.Dataset( "translationDataset", project=project_id, location=location, name="translation_dataset_example", display_name="My Translation Dataset", source_language_code="en", target_language_code="es" ) # Define the glossary for custom translations glossary = translate.v3beta1.Glossary( "translationGlossary", project=project_id, location=location, name="translation_glossary_example", display_name="My Translation Glossary", language_pair=translate.v3beta1.GlossaryLanguagePairArgs( source_language_code="en", target_language_code="es" ), input_config=translate.v3beta1.GlossaryInputConfigArgs( gcs_source=translate.v3beta1.GlossaryGcsSourceArgs( input_uri="gs://your-bucket-name/glossary.csv" # Replace with your GCS bucket URI ) ) ) # Export the dataset and glossary ID for use in other parts of the system pulumi.export("dataset_id", dataset.id) pulumi.export("glossary_id", glossary.id)

    In the program above:

    • We import the necessary Pulumi packages for working with the Google Cloud Platform.
    • We set up variables for the project ID and location to define where our Translation API resources will reside.
    • The dataset resource is created to enable training of domain-specific models.
    • The glossary resource with an input config pointing to a Google Cloud Storage URI where the glossary file is located.
    • We use pulumi.export to output the IDs of the created resources. These IDs can be used for monitoring, auditing, or integrating with other Pulumi-managed or external services.

    After applying this Pulumi program, you'll have the infrastructure that allows your application to start using Google Cloud's Translation API with tailored data for your specific use case. Remember to replace placeholders such as your-google-cloud-project-id and gs://your-bucket-name/glossary.csv with your actual project ID and Google Cloud Storage URI before running the program.