From 151bcc48a943aafd98321e3410e017315c944864 Mon Sep 17 00:00:00 2001 From: Pablo Garcia Date: Thu, 7 Feb 2019 14:54:18 -0200 Subject: [PATCH] Translated Flyweight page in Structural section. --- .../Structural/Flyweight/README.po | 31 ++++++++++--------- 1 file changed, 17 insertions(+), 14 deletions(-) diff --git a/locale/pt_BR/LC_MESSAGES/Structural/Flyweight/README.po b/locale/pt_BR/LC_MESSAGES/Structural/Flyweight/README.po index 2514886..914e92a 100644 --- a/locale/pt_BR/LC_MESSAGES/Structural/Flyweight/README.po +++ b/locale/pt_BR/LC_MESSAGES/Structural/Flyweight/README.po @@ -1,30 +1,29 @@ -# SOME DESCRIPTIVE TITLE. +# DesignPatternsPHP 1.0 # Copyright (C) 2015, Dominik Liebler and contributors # This file is distributed under the same license as the DesignPatternsPHP # package. -# FIRST AUTHOR , 2016. +# Pablo Juan Garcia , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: DesignPatternsPHP 1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-06-03 23:59+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" +"POT-Creation-Date: 2015-05-29 12:18+0200\n" +"PO-Revision-Date: 2019-02-07 13:52-0300\n" +"Last-Translator: Pablo Juan Garcia \n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.3.4\n" +"Language: pt_BR\n" #: ../../Structural/Flyweight/README.rst:2 msgid "`Flyweight`__" -msgstr "" +msgstr "`Flyweight (Mosca)`__" #: ../../Structural/Flyweight/README.rst:5 msgid "Purpose" -msgstr "" +msgstr "Objetivo" #: ../../Structural/Flyweight/README.rst:7 msgid "" @@ -34,20 +33,24 @@ msgid "" "external data structures and pass them to the flyweight object when " "needed." msgstr "" +"Para minimizar o uso de memória, um Flyweight compartilha memória o quanto for possível " +"com objetos similares. Ele é necessário quando um grande número de objetos são utilizados" +" de forma que não diferem muito em estado. Uma prática comum é manter o estado nas estruturas de " +"dados externos e passá-los para o objeto Flyweight quando necessário." #: ../../Structural/Flyweight/README.rst:12 msgid "UML Diagram" -msgstr "" +msgstr "Diagrama UML" #: ../../Structural/Flyweight/README.rst:19 msgid "Code" -msgstr "" +msgstr "Código" #: ../../Structural/Flyweight/README.rst:21 msgid "You can also find this code on `GitHub`_" -msgstr "" +msgstr "Você também pode encontrar este código no `GitHub`_" #: ../../Structural/Flyweight/README.rst:42 msgid "Test" -msgstr "" +msgstr "Teste"