Re: [libreoffice-l10n] LibreOffice build with local PO-file

2010-11-17 Thread Anousak Souphavanh
Simos,

This is an excellent how-to/instrcution, thanks for the efforts you've
put in. I will download these two files, try to follow your clear
explanation. I am sure to be back on it later.

Ciao!
Regards
Anousak

On Wed, Nov 17, 2010 at 8:49 PM, Simos Xenitellis
 wrote:
> On Wed, Nov 17, 2010 at 11:57 AM, Anousak Souphavanh  
> wrote:
>> Simos,
>>
>> Many thanks for your kind explanation.
>>
>>> Is that a 2Mbit/s line (256 Kbit/s * 8 KB/Kbit) or a 256Kbit/s line
>>> (32KB/s)?
>>>
>>> It is possible to create a ZIP file of those 2GB clones. Then, you can use
>>> your favorite download manager to download this ZIP file from a web server.
>>> Then, you uncompress it in your clone/ directory and continue with the
>>> installation.
>>
>> My Internet line is of 256Kbit/s (ADSL- download stream 256kb/s and up
>> stream is about 128KB/s per se), what they said, but actual download
>> speed is about 20-30KB/s.
>> Would you please suggest on how I can clone and zip before I download
>> them? I can do some small downloads at later stage. This might be the
>> way.
>>
>> Appreciated in advance.
>>
>
> Hi Anousak,
>
> I prepared these zip files. Here are the instructions on how to use them.
> LibreOffice currently uses 1+19 git repositories.
> There is a main repository, and inside this repository, in the
> 'clone/' subdirectory, is the actually code of LibreOffice, in 19 git
> repositories.
>
> Some important git background. Let's say that mygitrepo/ is a typical
> git repository.
> There is a mygitrepo/.git/ directory that contains everything that
> makes this a git repository. It has the full history, and all the
> source code in a compressed form. The various files you see in
> mygitrepo/*.* are simply a checked-out version of the repository.
> Therefore, if I want to send you a git repository, I only need to send
> you the mygitrepo/ with the mygitrepo/.git/ subdirectory. When you
> receive this ZIP file with mygitrepo/ (and .git/ inside), you simply
> run the commands
>
> $ cd mygitrepo/
> $ ls                                               # no files are
> found because I erased them to save space. However, .git is there.
> $ ls -d .git                                     # the .git/, that
> makes the repository is there. Has all the info we need.
> .git/
> $ git reset --hard                          # This is the magic
> command. It extracts the files from the repository.
>                                                    # This command
> undoes the erasing I did in order to save space. Now you have
>                                                    # a fully working
> git repository!
> $ git pull --rebase                        # With this command you may
> update the repository to the latest version.
>                                                    # Connects to
> git.freedesktop.org to update.
>
>
> I have two archives for you,
> 1. loroot.git.17Nov10.zip, the main repository for LibreOffice. It has
> a clone/ subdirectory which is empty.
> 2. clone.git.17Nov10.zip, the 19 repositories of LibreOffice. Put the
> dir content into loroot/clone/
> For example, the artwork will be found in loroot/clone/artwork/
>
> Download from
> a. http://simos.info/LibreOffice/loroot.git.17Nov10.zip   115MB
> b. http://simos.info/LibreOffice/clone.git.17Nov10.zip    984MB
>
> Feel free to use a download manager, such as JDownloader.
>
> Remember for each of the 20 repositories to perform the 'git reset
> --hard' command in order to restore the source files. For restore the
> main repository 'loroot', then restore each of the 19 repos.
>
> Finally, follow the instructions at
> http://wiki.documentfoundation.org/Development/How_to_build
> When you build LibO for the first time, the build script can see that
> you already downloaded those 19 repositories and will continue with
> compiling.
>
> Hope this helps,
> Simos
>
> p.s.
> Here is the list of the 19 repos, in REPOS.txt,
>
> artwork
> base
> bootstrap
> calc
> components
> extensions
> extras
> filters
> help
> impress
> libs-core
> libs-extern
> libs-extern-sys
> libs-gui
> postprocess
> sdk
> testing
> ure
> writer
>
> You can restore all of them with 'git reset --hard' easily if you run
>
> cat REPOS.txt | awk '{ printf "(cd %s ; git reset --hard)\n", $1}'
>
> And here is the output of the above command. You can copy and paste
> this in order to restore those 19 repos in one go, very easily.
>
> (cd artwork ; git reset --hard)
> (cd base ; git reset --hard)
> (cd bootstrap ; git reset --hard)
> (cd calc ; git reset --hard)
> (cd components ; git reset --hard)
> (cd extensions ; git reset --hard)
> (cd extras ; git reset --hard)
> (cd filters ; git reset --hard)
> (cd help ; git reset --hard)
> (cd impress ; git reset --hard)
> (cd libs-core ; git reset --hard)
> (cd libs-extern ; git reset --hard)
> (cd libs-extern-sys ; git reset --hard)
> (cd libs-gui ; git reset --hard)
> (cd postprocess ; git reset --hard)
> (cd sdk ; git reset --hard)
> (cd testing ; git res

Re: [libreoffice-l10n] LibreOffice build with local PO-file

2010-11-17 Thread Simos Xenitellis
On Wed, Nov 17, 2010 at 11:57 AM, Anousak Souphavanh  wrote:
> Simos,
>
> Many thanks for your kind explanation.
>
>> Is that a 2Mbit/s line (256 Kbit/s * 8 KB/Kbit) or a 256Kbit/s line
>> (32KB/s)?
>>
>> It is possible to create a ZIP file of those 2GB clones. Then, you can use
>> your favorite download manager to download this ZIP file from a web server.
>> Then, you uncompress it in your clone/ directory and continue with the
>> installation.
>
> My Internet line is of 256Kbit/s (ADSL- download stream 256kb/s and up
> stream is about 128KB/s per se), what they said, but actual download
> speed is about 20-30KB/s.
> Would you please suggest on how I can clone and zip before I download
> them? I can do some small downloads at later stage. This might be the
> way.
>
> Appreciated in advance.
>

Hi Anousak,

I prepared these zip files. Here are the instructions on how to use them.
LibreOffice currently uses 1+19 git repositories.
There is a main repository, and inside this repository, in the
'clone/' subdirectory, is the actually code of LibreOffice, in 19 git
repositories.

Some important git background. Let's say that mygitrepo/ is a typical
git repository.
There is a mygitrepo/.git/ directory that contains everything that
makes this a git repository. It has the full history, and all the
source code in a compressed form. The various files you see in
mygitrepo/*.* are simply a checked-out version of the repository.
Therefore, if I want to send you a git repository, I only need to send
you the mygitrepo/ with the mygitrepo/.git/ subdirectory. When you
receive this ZIP file with mygitrepo/ (and .git/ inside), you simply
run the commands

$ cd mygitrepo/
$ ls   # no files are
found because I erased them to save space. However, .git is there.
$ ls -d .git # the .git/, that
makes the repository is there. Has all the info we need.
.git/
$ git reset --hard  # This is the magic
command. It extracts the files from the repository.
# This command
undoes the erasing I did in order to save space. Now you have
# a fully working
git repository!
$ git pull --rebase# With this command you may
update the repository to the latest version.
# Connects to
git.freedesktop.org to update.


I have two archives for you,
1. loroot.git.17Nov10.zip, the main repository for LibreOffice. It has
a clone/ subdirectory which is empty.
2. clone.git.17Nov10.zip, the 19 repositories of LibreOffice. Put the
dir content into loroot/clone/
For example, the artwork will be found in loroot/clone/artwork/

Download from
a. http://simos.info/LibreOffice/loroot.git.17Nov10.zip   115MB
b. http://simos.info/LibreOffice/clone.git.17Nov10.zip984MB

Feel free to use a download manager, such as JDownloader.

Remember for each of the 20 repositories to perform the 'git reset
--hard' command in order to restore the source files. For restore the
main repository 'loroot', then restore each of the 19 repos.

Finally, follow the instructions at
http://wiki.documentfoundation.org/Development/How_to_build
When you build LibO for the first time, the build script can see that
you already downloaded those 19 repositories and will continue with
compiling.

Hope this helps,
Simos

p.s.
Here is the list of the 19 repos, in REPOS.txt,

artwork
base
bootstrap
calc
components
extensions
extras
filters
help
impress
libs-core
libs-extern
libs-extern-sys
libs-gui
postprocess
sdk
testing
ure
writer

You can restore all of them with 'git reset --hard' easily if you run

cat REPOS.txt | awk '{ printf "(cd %s ; git reset --hard)\n", $1}'

And here is the output of the above command. You can copy and paste
this in order to restore those 19 repos in one go, very easily.

(cd artwork ; git reset --hard)
(cd base ; git reset --hard)
(cd bootstrap ; git reset --hard)
(cd calc ; git reset --hard)
(cd components ; git reset --hard)
(cd extensions ; git reset --hard)
(cd extras ; git reset --hard)
(cd filters ; git reset --hard)
(cd help ; git reset --hard)
(cd impress ; git reset --hard)
(cd libs-core ; git reset --hard)
(cd libs-extern ; git reset --hard)
(cd libs-extern-sys ; git reset --hard)
(cd libs-gui ; git reset --hard)
(cd postprocess ; git reset --hard)
(cd sdk ; git reset --hard)
(cd testing ; git reset --hard)
(cd ure ; git reset --hard)
(cd writer ; git reset --hard)


> Anousak
>
> On Wed, Nov 17, 2010 at 4:41 PM, Simos Xenitellis
>  wrote:
>> On Wed, Nov 17, 2010 at 6:10 AM, Anousak Souphavanh wrote:
>>
>>> Hi Simos,
>>>
>>> Are saying that in order for me to setup local build I would need high
>>> speed Internet and that it requires to download files at least 8.2GB?
>>> Please clarify. Many thanks.
>>>
>>
>> It is about 8GB of total diskspace, which includes the compiled files that
>> mak

Re: [libreoffice-l10n] spanish contribution - LibreOffice 3.3

2010-11-17 Thread Alexandro Colorado
On Wed, 17 Nov 2010 04:47:16 -0600, Charles-H. Schulz  
 wrote:



Hello Alexandro,


Hi Charles,



Le Sun, 14 Nov 2010 21:54:05 -0600,
"Alexandro Colorado"  a écrit :


On Sun, 14 Nov 2010 15:21:04 -0600, Cor Nouws 
wrote:

> Hi Alexandro,
>
> Alexandro Colorado wrote (14-11-10 00:32)
>> On Sat, 13 Nov 2010 17:21:45 -0600, Cor Nouws 
>> wrote:
>
>>> I think I have some thoughts on this conversation, but first ..
>>>
>>> Alexandro Colorado wrote (13-11-10 23:55)
>>>
 There was a conversation about this on the Marketing meeting
 where we introduce the letter to TDF. Althought a more proper
 conference would be
>>>
>>> can you pls show me the letter?
>>
>> Sure althought I recomend to hear the exchange on the marketing
>> meeting recording. I think it was around 1hr in the recording.
>> http://oooes.org/carta-tdf.html
>> http://wiki.documentfoundation.org/Marketing/ConfCalls#11-Nov-2011
>
> Thanks for the link.
> Practical idea to have people working on Spanish LO, OOo and
> OOo4kids on one list.
> This will have advantages for localization. For marketing, I am not
> sure how that works.


Well, that rests one technical assumption that will end up being wrong
very quickly: that LibreOffice will keep up the same codebase and
follow OOo. I think problems will arise as soon as our 3.4.


You are right, but that is neither here or there since we are doing  
testing both products. Which means that if there are differences they  
would be easier to detect than if it's just being tested on one product.  
For example, LibO currently is based of the experimental branch as opposed  
to the unstable branch of the OOo which breaks on the jvmaccess library  
and the URE, this is the cause of the problem with the ure 3.2.1 on a  
system with a 3.3 which is many users found out when they tried to run  
LibO on a machine with OOo.   
http://www.openoffice.org/servlets/ReadMsg?list=releases&msgNo=16351



> Also, looking from LibreOffice perspective, it is rather strange
> that your Donate button leads to the paypal page which reads
> "OpenOffice.org Español" ..

Is no difference from the TDF leading (at least a the beginning) to
ooodev.org the german group. But we will be changing it to oooES
eventually, like many other groups we are building form the
infrastructure that we had in OOo and the change is not organized on
a big Checklist that we can just modify in one process. However the
way it works is similar to many organizations that were formed behind
the native-lang originally.



No, and again you're assuming two things:
1) that we work with a similar structure as OOo does


AFAIK you work very similar, both work with donations, and both work with  
paypal. Both had also "OpenOffice.org" name on their bank account and  
initially on their paypal name. Cor asked "looking from LibreOffice  
perspective, it is rather strange that your Donate button leads to the  
paypal page which reads "OpenOffice.org Español". My response is that he  
is right, it is strange and is a work in progress just like ooodev.org.



2) that OOoES is like the German Association. It's not, first because
the German association only acts as the interim structure for the
foundation and not at all as a regional group; second because you


So Cor original question didnt had to do with representing anybody, but  
simply that the Donate button lead to a paypal page with the title  
"OpenOffice.org Español" and confused users. My reference is that it  
similar to what users experienced with ooodev.org at the begining of TDF,  
which can also be read on this user:

http://www.mail-archive.com/disc...@documentfoundation.org/msg00136.html


pretend OOoES is representative of the Spanish community of
contributors, which it isn't. Hence my note on the ES TDF wiki page:
it's all right to point to OOoES, but please point to the spanish TDF
lists and do not convey the message that you're handling the work for
us: you're not representing us in any way.


Well I think that's the reason of the open letter, which by the way, I  
didn't wrote. I just sign up to it as well as other members from the  
group. Also this is something that is being looking forward to at the TDF  
list in spanish.

http://www.mail-archive.com/disc...@es.libreoffice.org/msg4.html

As far as contribution goes, mostly has come from oooES community,  
starting with the locale for PO which was submited by Santiago Bosio (also  
on the signee list).  
http://www.mail-archive.com/l10n@libreoffice.org/msg00364.html


The TDF wiki http://wiki.documentfoundation.org/Category:ES is also worked  
mainly by people on this letter. I am not sure there is a Spanish  
community of contributors yet on TDF, most people are just introducing  
themselves on the lists. You can read the archieves. Most of the emails  
are on the subject like "Presentacion" or Presentation. At the end of the  
day they want to contribute, but still need more information which is what  
I meant on my last email abo

Re: [libreoffice-l10n] spanish contribution - LibreOffice 3.3

2010-11-17 Thread Charles-H. Schulz
Hello Alexandro,

Le Sun, 14 Nov 2010 21:54:05 -0600,
"Alexandro Colorado"  a écrit :

> On Sun, 14 Nov 2010 15:21:04 -0600, Cor Nouws 
> wrote:
> 
> > Hi Alexandro,
> >
> > Alexandro Colorado wrote (14-11-10 00:32)
> >> On Sat, 13 Nov 2010 17:21:45 -0600, Cor Nouws 
> >> wrote:
> >
> >>> I think I have some thoughts on this conversation, but first ..
> >>>
> >>> Alexandro Colorado wrote (13-11-10 23:55)
> >>>
>  There was a conversation about this on the Marketing meeting
>  where we introduce the letter to TDF. Althought a more proper
>  conference would be
> >>>
> >>> can you pls show me the letter?
> >>
> >> Sure althought I recomend to hear the exchange on the marketing
> >> meeting recording. I think it was around 1hr in the recording.
> >> http://oooes.org/carta-tdf.html
> >> http://wiki.documentfoundation.org/Marketing/ConfCalls#11-Nov-2011
> >
> > Thanks for the link.
> > Practical idea to have people working on Spanish LO, OOo and
> > OOo4kids on one list.
> > This will have advantages for localization. For marketing, I am not
> > sure how that works.

Well, that rests one technical assumption that will end up being wrong
very quickly: that LibreOffice will keep up the same codebase and
follow OOo. I think problems will arise as soon as our 3.4. 

> > Also, looking from LibreOffice perspective, it is rather strange
> > that your Donate button leads to the paypal page which reads
> > "OpenOffice.org Español" ..
> 
> Is no difference from the TDF leading (at least a the beginning) to  
> ooodev.org the german group. But we will be changing it to oooES  
> eventually, like many other groups we are building form the
> infrastructure that we had in OOo and the change is not organized on
> a big Checklist that we can just modify in one process. However the
> way it works is similar to many organizations that were formed behind
> the native-lang originally.


No, and again you're assuming two things:
1) that we work with a similar structure as OOo does
2) that OOoES is like the German Association. It's not, first because
the German association only acts as the interim structure for the
foundation and not at all as a regional group; second because you
pretend OOoES is representative of the Spanish community of
contributors, which it isn't. Hence my note on the ES TDF wiki page:
it's all right to point to OOoES, but please point to the spanish TDF
lists and do not convey the message that you're handling the work for
us: you're not representing us in any way.



> 
> 
> > A thing that is not clear to me, is how to deal with the situation
> > that there are many Spanish speaking countries, where people must
> > be able to find themselves encouraged and supported. Do you have
> > any thoughts on that? I mean, I remember quite some situations
> > where you asked funding to fly from Mexico to wherever to do a
> > presentation. How many countries are already involved and what are
> > their ideas?
> 
> The group is a regional group, not a country specific group. The
> members are from different countries and very seldom do they repeat
> countries. Yes I did flying the most as the lead of the Spanish
> group. But minor flights were also funded by our budget for other
> members to do inner traveling in their countries.
> 
> Some ideas worked better for us than others, we held weekly conf
> calls and have been able to work together quite well. So we sync our
> presentations for campaigns like FLISOL which is the latin american
> installfests, syncronizing the message. There still some countries in
> the region that has no contributers specially the smaller countries
> and others that are very active. The idea is to be able to 'push' the
> efforts to this countries.
> 
> 
> > There are some examples from the past years, mostly in the
> > certification project, where I found your way of communicating not
> > supportive for sharing and growing involvement, to say it brief.
> > To me that is of great concern in every situation and especially
> > our current one, where we start to build connections and processes.
> 
> I also found my share of lack of communication from the processes
> that were stablish by the OOo team. There was a lot of unwritten and  
> undocumented process due to discovery came to work out in the end.
> The process was also slow and sometimes uncertain (we weren't sure if
> things were done, or we still miss things to do).
> 
> > So though I can see advantages for l10n and users (as Roman
> > clearly explained) I am not yet convinced that the proposed
> > situation is what we really want for a strong The Document
> > Foundation and LibreOffice. Therefore I write my concerns, so that
> > you may take the opportunity to explain or take additional action.
> 
> Well I will suggest to take this the other way around. Starting from  
> scratch usually takes time to start getting to known what to do. So
> most of the things still need to be invented, discovered. Lists are
> usually empty and slo

Re: [libreoffice-l10n] LibreOffice build with local PO-file

2010-11-17 Thread Anousak Souphavanh
Simos,

Many thanks for your kind explanation.

> Is that a 2Mbit/s line (256 Kbit/s * 8 KB/Kbit) or a 256Kbit/s line
> (32KB/s)?
>
> It is possible to create a ZIP file of those 2GB clones. Then, you can use
> your favorite download manager to download this ZIP file from a web server.
> Then, you uncompress it in your clone/ directory and continue with the
> installation.

My Internet line is of 256Kbit/s (ADSL- download stream 256kb/s and up
stream is about 128KB/s per se), what they said, but actual download
speed is about 20-30KB/s.
Would you please suggest on how I can clone and zip before I download
them? I can do some small downloads at later stage. This might be the
way.

Appreciated in advance.

Anousak

On Wed, Nov 17, 2010 at 4:41 PM, Simos Xenitellis
 wrote:
> On Wed, Nov 17, 2010 at 6:10 AM, Anousak Souphavanh wrote:
>
>> Hi Simos,
>>
>> Are saying that in order for me to setup local build I would need high
>> speed Internet and that it requires to download files at least 8.2GB?
>> Please clarify. Many thanks.
>>
>
> It is about 8GB of total diskspace, which includes the compiled files that
> make the big difference.
> The git repositories for libreoffice are about 2GB, which is reasonable for
> a project of this magnitude.
> Therefore, the build process requires to download about 2GB of data using
> the git:// protocol.
>
> Once you have those 2GB clones, subsequent updates are small and easy to do.
>
> In addition to this, there are about 100-200MB of Linux dev packages to help
> you compile LibreOffice.
>
>
>>
>> Oh my gosh...my ADSL (256KB/s) would take weeks to complete.
>>
>
> Is that a 2Mbit/s line (256 Kbit/s * 8 KB/Kbit) or a 256Kbit/s line
> (32KB/s)?
>
> It is possible to create a ZIP file of those 2GB clones. Then, you can use
> your favorite download manager to download this ZIP file from a web server.
> Then, you uncompress it in your clone/ directory and continue with the
> installation.
>
> Best,
> Simos
>
>
>> Regards,
>> Anousak
>>
>> On Tue, Nov 16, 2010 at 6:37 PM, Simos Xenitellis
>>  wrote:
>> > On Tue, Nov 16, 2010 at 11:58 AM, Takeshi Abe 
>> wrote:
>> >> Hi,
>> >>
>> >> On Mon, 15 Nov 2010 11:29:29 +0700, Anousak Souphavanh <
>> anou...@gmail.com> wrote:
>> >>> Hi,
>> >>>
>> >>> Do we have a complete LOCAL BUILD instructions, an url would be fine?
>> >>> If not, could you share yours...Thanks,
>> >> I also would like to read the instructions if any, otherwise it would be
>> >> best to have a Wiki page on how to build a localized one.
>> >> IMHO it should describe
>> >> * further required packages/dependencies such as translate-toolkit
>> >> * passing the --with-lang option to configure or autogen.sh
>> >> * updating lo-build-*.sdf by `make update-sdf`
>> >> Any suggestions?
>> >
>> > There are build instructions at the wiki, at
>> > http://wiki.documentfoundation.org/Development/How_to_build
>> > There are two phases in building LibreOffice, the part where you clone
>> > the repositories (needs fast connections) and the actual compilation
>> > (took me three hours). Subsequent building of LibreOffice should be
>> > must faster, so you would keep around the files. My build directory is
>> > 8.2GB, which is fine for the thrill to have compiled such a big
>> > program. Therefore, estimate 10GB of space for LibO building and
>> > installation.
>> >
>> > The Wiki page is currently quite good, however it can become even
>> > better if we note down even the small gotchas. So, write down if
>> > something needs to get updated on the wiki.
>> >
>> > Simos
>> >
>> >>>
>> >>> Anousak
>> >>>
>> >>> On Sun, Nov 14, 2010 at 7:17 PM, Aidsoid  wrote:
>>  Thank you, I'll try it.
>> 
>>  2010/11/14 Andras Timar 
>> 
>> > 2010/11/14 Aidsoid :
>> > > Hi all
>> > >
>> > > Tell me please, how can I make LibreOffice build from sources with
>> my .po
>> > > file for testing our translation?
>> > > I tried replace po-file from my local copy of git repository to our
>> > po-file
>> > > and build, but LibreOffice builded with old translation.
>> > >
>> > $ cd po/
>> > $ make update-sdf
>> >
>> > Then build as usual.
>> >
>> > Best regards,
>> > Andras
>> >>
>> >> --
>> >> E-mail to l10n+h...@libreoffice.org  for
>> instructions on how to unsubscribe
>> >> List archives are available at http://www.libreoffice.org/lists/l10n/
>> >> All messages you send to this list will be publicly archived and cannot
>> be deleted
>> >>
>> >>
>> >
>> >
>> >
>> > --
>> > A. Because it breaks the logical sequence of discussion
>> > Q. Why is top posting bad?
>> >
>> > --
>> > E-mail to l10n+h...@libreoffice.org  for
>> instructions on how to unsubscribe
>> > List archives are available at http://www.libreoffice.org/lists/l10n/
>> > All messages you send to this list will be publicly archived and cannot
>> be deleted
>> >
>> >
>>
>> --
>> E-mail to l10n+h...@libreoffice.org  for
>> instructions on how to unsubscribe
>> List archives are

Re: [libreoffice-l10n] LibreOffice build with local PO-file

2010-11-17 Thread Simos Xenitellis
On Wed, Nov 17, 2010 at 6:10 AM, Anousak Souphavanh wrote:

> Hi Simos,
>
> Are saying that in order for me to setup local build I would need high
> speed Internet and that it requires to download files at least 8.2GB?
> Please clarify. Many thanks.
>

It is about 8GB of total diskspace, which includes the compiled files that
make the big difference.
The git repositories for libreoffice are about 2GB, which is reasonable for
a project of this magnitude.
Therefore, the build process requires to download about 2GB of data using
the git:// protocol.

Once you have those 2GB clones, subsequent updates are small and easy to do.

In addition to this, there are about 100-200MB of Linux dev packages to help
you compile LibreOffice.


>
> Oh my gosh...my ADSL (256KB/s) would take weeks to complete.
>

Is that a 2Mbit/s line (256 Kbit/s * 8 KB/Kbit) or a 256Kbit/s line
(32KB/s)?

It is possible to create a ZIP file of those 2GB clones. Then, you can use
your favorite download manager to download this ZIP file from a web server.
Then, you uncompress it in your clone/ directory and continue with the
installation.

Best,
Simos


> Regards,
> Anousak
>
> On Tue, Nov 16, 2010 at 6:37 PM, Simos Xenitellis
>  wrote:
> > On Tue, Nov 16, 2010 at 11:58 AM, Takeshi Abe 
> wrote:
> >> Hi,
> >>
> >> On Mon, 15 Nov 2010 11:29:29 +0700, Anousak Souphavanh <
> anou...@gmail.com> wrote:
> >>> Hi,
> >>>
> >>> Do we have a complete LOCAL BUILD instructions, an url would be fine?
> >>> If not, could you share yours...Thanks,
> >> I also would like to read the instructions if any, otherwise it would be
> >> best to have a Wiki page on how to build a localized one.
> >> IMHO it should describe
> >> * further required packages/dependencies such as translate-toolkit
> >> * passing the --with-lang option to configure or autogen.sh
> >> * updating lo-build-*.sdf by `make update-sdf`
> >> Any suggestions?
> >
> > There are build instructions at the wiki, at
> > http://wiki.documentfoundation.org/Development/How_to_build
> > There are two phases in building LibreOffice, the part where you clone
> > the repositories (needs fast connections) and the actual compilation
> > (took me three hours). Subsequent building of LibreOffice should be
> > must faster, so you would keep around the files. My build directory is
> > 8.2GB, which is fine for the thrill to have compiled such a big
> > program. Therefore, estimate 10GB of space for LibO building and
> > installation.
> >
> > The Wiki page is currently quite good, however it can become even
> > better if we note down even the small gotchas. So, write down if
> > something needs to get updated on the wiki.
> >
> > Simos
> >
> >>>
> >>> Anousak
> >>>
> >>> On Sun, Nov 14, 2010 at 7:17 PM, Aidsoid  wrote:
>  Thank you, I'll try it.
> 
>  2010/11/14 Andras Timar 
> 
> > 2010/11/14 Aidsoid :
> > > Hi all
> > >
> > > Tell me please, how can I make LibreOffice build from sources with
> my .po
> > > file for testing our translation?
> > > I tried replace po-file from my local copy of git repository to our
> > po-file
> > > and build, but LibreOffice builded with old translation.
> > >
> > $ cd po/
> > $ make update-sdf
> >
> > Then build as usual.
> >
> > Best regards,
> > Andras
> >>
> >> --
> >> E-mail to l10n+h...@libreoffice.org  for
> instructions on how to unsubscribe
> >> List archives are available at http://www.libreoffice.org/lists/l10n/
> >> All messages you send to this list will be publicly archived and cannot
> be deleted
> >>
> >>
> >
> >
> >
> > --
> > A. Because it breaks the logical sequence of discussion
> > Q. Why is top posting bad?
> >
> > --
> > E-mail to l10n+h...@libreoffice.org  for
> instructions on how to unsubscribe
> > List archives are available at http://www.libreoffice.org/lists/l10n/
> > All messages you send to this list will be publicly archived and cannot
> be deleted
> >
> >
>
> --
> E-mail to l10n+h...@libreoffice.org  for
> instructions on how to unsubscribe
> List archives are available at http://www.libreoffice.org/lists/l10n/
> All messages you send to this list will be publicly archived and cannot be
> deleted
>
>


-- 
A. Because it breaks the logical sequence of discussion
Q. Why is top posting bad?

-- 
E-mail to l10n+h...@libreoffice.org for instructions on how to unsubscribe
List archives are available at http://www.libreoffice.org/lists/l10n/
All messages you send to this list will be publicly archived and cannot be 
deleted